/* ================================================================
   CAMEL  ·  Sand · Amber · Desert Black
   ================================================================ */

:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* full-bleed sections (100vw) must not introduce horizontal scroll */
html { overflow-x: hidden; }

/* ambient yellow dust particles, behind all content */
#bc-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ── Hero · desert scene (full-bleed) ─────────────────────────── */
.bc-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(5rem, 11vw, 8.5rem) 0 0;
  margin-bottom: 1.5rem;
  /* isolation gives the negative-z scene layers (sky/sun/dunes) their own
     stacking context so they render. The sun no longer has a box-shadow, so
     its glow fades to transparent before the edges -> overflow:hidden keeps
     the full-bleed clean without ever cutting a hard line across the sun. */
  overflow: hidden;
  isolation: isolate;
}

/* keep hero content aligned to the page grid (max-w-7xl + app padding) */
.bc-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .bc-hero-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .bc-hero-inner { padding: 0 2rem; }
}

/* warm sky wash */
.bc-hero-sky {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 78% 14%, rgba(200, 154, 46, 0.13), transparent 58%),
    linear-gradient(180deg, transparent 40%, rgba(160, 120, 32, 0.05) 100%);
}

/* the sun */
.bc-sun {
  position: absolute;
  top: clamp(3rem, 7vw, 5.5rem);
  right: clamp(1.5rem, 11vw, 8rem);
  width: clamp(120px, 17vw, 230px);
  height: clamp(120px, 17vw, 230px);
  border-radius: 50%;
  z-index: -2;
  background: radial-gradient(circle at 50% 44%,
    #FCEFC2 0%,
    #F6DB8C 18%,
    #E7B658 40%,
    #C7922F 58%,
    #9A741F 67%,
    rgba(154, 116, 31, 0) 70%);
  animation: bcSun 9s var(--ease-out-quart) infinite alternate;
}

/* radiating sun rays */
.bc-sun::before {
  content: '';
  position: absolute;
  inset: -42%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(231, 182, 88, 0.1) 0deg 3deg,
    transparent 3deg 13deg
  );
  -webkit-mask: radial-gradient(circle, #000 26%, transparent 68%);
          mask: radial-gradient(circle, #000 26%, transparent 68%);
  animation: bcRays 90s linear infinite;
}

/* soft corona */
.bc-sun::after {
  content: '';
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 154, 46, 0.22), transparent 60%);
  animation: bcSunGlow 9s ease-in-out infinite alternate;
}

@keyframes bcSun {
  from { transform: translateY(7px)  scale(0.97); }
  to   { transform: translateY(-6px) scale(1.03); }
}

@keyframes bcSunGlow {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

@keyframes bcRays {
  to { transform: rotate(360deg); }
}

/* layered dunes */
.bc-dunes {
  --dune-h: clamp(130px, 18vw, 210px);
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  width: 112%;
  z-index: -1;
  pointer-events: none;
  line-height: 0;
}

/* the ground stretches full width; objects keep their aspect ratio */
.bc-dunes-bg {
  width: 100%;
  height: var(--dune-h);
  display: block;
}

.bc-dune-back  { animation: bcDriftA 26s ease-in-out infinite alternate; }
.bc-dune-front { animation: bcDriftB 19s ease-in-out infinite alternate; }

/* scene objects, pinned to the dune crests via --dune-h */
.bc-camel,
.bc-cactus {
  position: absolute;
  height: auto;
  transform: translateX(-50%);
}

.bc-camel {
  left: 69%;
  bottom: calc(var(--dune-h) * 0.41);
  width: clamp(58px, 6.8vw, 98px);
}

.bc-cactus-far {
  left: 25%;
  bottom: calc(var(--dune-h) * 0.42);
  width: clamp(15px, 1.8vw, 25px);
}

.bc-cactus-l {
  left: 10%;
  bottom: calc(var(--dune-h) * 0.15);
  width: clamp(22px, 2.6vw, 36px);
}

.bc-cactus-r {
  left: 87%;
  bottom: calc(var(--dune-h) * 0.15);
  width: clamp(18px, 2.1vw, 28px);
}

@keyframes bcDriftA {
  from { transform: translateX(-1.6%); }
  to   { transform: translateX(1.6%); }
}

@keyframes bcDriftB {
  from { transform: translateX(1.2%); }
  to   { transform: translateX(-1.2%); }
}

/* content sits above the dunes, left-aligned */
.bc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-bottom: clamp(6rem, 13vw, 10rem);
}

/* Badge pill */
.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 154, 46, 0.3);
  background: rgba(200, 154, 46, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 1.75rem;
  animation: bcFadeDown 0.5s ease both;
}

.bc-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D4A843;
  box-shadow: 0 0 6px rgba(212, 168, 67, 0.7);
  animation: bcPulse 2.5s ease-in-out infinite;
}

/* Green "Undetected" status variant */
.bc-badge--undetected {
  border-color: rgba(74, 222, 128, 0.32);
  background: rgba(74, 222, 128, 0.08);
  color: #6EE7A0;
}

.bc-badge--undetected .bc-badge-dot {
  background: #4ADE80;
  box-shadow: 0 0 7px rgba(74, 222, 128, 0.8);
}

.bc-badge-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.bc-badge-date {
  color: rgba(244, 233, 207, 0.55);
  font-variant-numeric: tabular-nums;
}

@keyframes bcPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 6px rgba(212, 168, 67, 0.7); }
  50%       { opacity: 0.4; box-shadow: 0 0 2px rgba(212, 168, 67, 0.2); }
}

/* Main title */
.bc-title {
  font-size: clamp(1.9rem, 10.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #EBC76C;
  margin: 0 0 1.25rem;
  white-space: nowrap;
  animation: bcReveal 0.9s 0.15s var(--ease-out-expo) both;
}

@keyframes bcReveal {
  from { opacity: 0; transform: translateY(0.32em); clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; transform: translateY(0);      clip-path: inset(0 0 -12% 0); }
}

/* Subtitle */
.bc-subtitle {
  font-size: 1.0625rem;
  color: rgba(244, 233, 207, 0.74);
  max-width: 440px;
  margin: 0 0 2.5rem;
  line-height: 1.65;
  animation: bcFadeUp 0.65s 0.35s ease both;
}

/* CTA row */
.bc-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: bcFadeUp 0.65s 0.45s ease both;
}

.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease, opacity 0.18s ease;
}

.bc-btn-primary {
  background: linear-gradient(135deg, #A07820 0%, #C89A2E 100%);
  color: #0D0B08 !important;
}

.bc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 154, 46, 0.42);
  background: linear-gradient(135deg, #B08A28 0%, #D4A843 100%);
  color: #0D0B08 !important;
}

.bc-btn-ghost {
  background: rgba(240, 228, 200, 0.04);
  border: 1px solid rgba(240, 228, 200, 0.08);
  color: rgba(240, 228, 200, 0.5) !important;
}

.bc-btn-ghost:hover {
  background: rgba(240, 228, 200, 0.07);
  border-color: rgba(240, 228, 200, 0.14);
  color: rgba(240, 228, 200, 0.85) !important;
}

/* Discord CTA (Blurple) */
.bc-btn-discord {
  background: #5865F2;
  color: #fff !important;
}

.bc-btn-discord:hover {
  transform: translateY(-2px);
  background: #4752C4;
  box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45);
  color: #fff !important;
}

/* ── Why Camel · number-led band ───────────────────────────────── */
.bc-why {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.bc-why-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200, 154, 46, 0.7);
  margin: 0 0 2.25rem;
}

.bc-why-kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 154, 46, 0.22), transparent);
}

.bc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
}

@media (min-width: 640px) {
  .bc-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bc-why-grid { grid-template-columns: repeat(4, 1fr); }
}

.bc-why-item {
  padding: 0;
  border: none;
}

.bc-why-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(216, 169, 60, 0.45);
  margin-bottom: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.bc-why-name {
  font-size: 1rem;
  font-weight: 600;
  color: #F4E9CF;
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
}

.bc-why-undetected {
  color: #6EE7A0;
  font-weight: 700;
}

.bc-why-desc {
  font-size: 0.85rem;
  color: rgba(244, 233, 207, 0.64);
  line-height: 1.6;
  margin: 0;
  max-width: 26ch;
}

.bc-why-link {
  color: #D4A843;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 67, 0.35);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.bc-why-link:hover {
  color: #E6C465;
  border-bottom-color: #D4A843;
}

/* ── Scroll reveal utility ─────────────────────────────────────── */
.bc-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease-out-quint),
    transform 0.7s var(--ease-out-quint);
}

.bc-reveal.bc-in {
  opacity: 1;
  transform: none;
}

/* ── Products separator ─────────────────────────────────────────  */
.bc-products-sep {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.bc-products-sep::before,
.bc-products-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200, 154, 46, 0.08);
}

.bc-products-sep span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 154, 46, 0.25);
  white-space: nowrap;
}

/* ── Header ─────────────────────────────────────────────────────  */
header .bg-card {
  background: rgba(13, 11, 8, 0.88) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* ── Accent overrides (amber tones) ────────────────────────────  */
.bg-accent-500\/10,
a.bg-accent-500\/10,
button.bg-accent-500\/10 {
  background: rgba(200, 154, 46, 0.10) !important;
}

.text-accent-500 {
  color: #E8C56A !important;
}

.bg-accent-500 {
  background-color: #C89A2E !important;
}

.border-accent-500 {
  border-color: #C89A2E !important;
}

.border-l-accent-500 {
  border-left-color: #A07820 !important;
}

/* ── Product cards ───────────────────────────────────────────────  */
a.block.h-full.bg-card {
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease !important;
}

a.block.h-full.bg-card:hover {
  border-color: rgba(200, 154, 46, 0.32) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65) !important;
}

/* ── Product page ────────────────────────────────────────────────  */
#product-page [x-data="productForm"] > div {
  border-top: 1px solid rgba(200, 154, 46, 0.2) !important;
}

/* ── Scrollbar ───────────────────────────────────────────────────  */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0D0B08;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #A07820, #C89A2E);
  border-radius: 3px;
}

/* ── Featured single product ─────────────────────────────────────  */
.bc-featured-wrap {
  padding: 1.75rem 0 0;
}

.bc-featured-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 154, 46, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  background: #221A0B;
  text-decoration: none !important;
  color: inherit !important;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

@media (min-width: 768px) {
  .bc-featured-card {
    flex-direction: row;
    min-height: 360px;
  }
}

.bc-featured-card:hover {
  border-color: rgba(200, 154, 46, 0.45);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(200, 154, 46, 0.12);
}

.bc-featured-img {
  flex: 0 0 55%;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

@media (min-width: 768px) {
  .bc-featured-img { min-height: unset; }
}

.bc-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bc-featured-card:hover .bc-featured-img img {
  transform: scale(1.03);
}

.bc-featured-info {
  flex: 1;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

@media (max-width: 767px) {
  .bc-featured-info { padding: 1.75rem; }
}

.bc-featured-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bc-featured-status--in  { color: #4ade80; }
.bc-featured-status--out { color: #f87171; }

.bc-featured-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
  animation: bcPulse 2.5s ease-in-out infinite;
}

.bc-featured-name {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #F0E4C8;
  margin: 0;
  line-height: 1.1;
}

.bc-featured-price {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #E8C56A;
  line-height: 1;
}

.bc-featured-price-sep {
  color: rgba(240, 228, 200, 0.3);
  font-weight: 300;
  margin: 0 0.25rem;
}

.bc-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  background: linear-gradient(135deg, #A07820, #C89A2E);
  color: #0D0B08;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin-top: 0.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-featured-card:hover .bc-featured-cta {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(200, 154, 46, 0.42);
}

/* ── Products page header ─────────────────────────────────────────  */
.bc-page-header {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bc-page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse 50% 60% at 50% 20%, rgba(200, 154, 46, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.bc-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 154, 46, 0.35), transparent);
}

.bc-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #F0E4C8;
  margin: 0;
  animation: bcFadeUp 0.6s ease both;
}

/* ── Discord nav button ─────────────────────────────────────────  */
.bc-dc-btn {
  border-color: rgba(88, 101, 242, 0.45) !important;
  background: rgba(88, 101, 242, 0.14);
  color: #C7CCF7 !important;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.bc-dc-btn:hover {
  background: #5865F2 !important;
  border-color: #5865F2 !important;
  color: #fff !important;
}

/* ── Footer ─────────────────────────────────────────────────────  */
.bc-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(200, 154, 46, 0.08);
  background: linear-gradient(180deg, transparent 0%, rgba(200, 154, 46, 0.03) 100%);
}

.bc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-ft-copy {
  font-size: 0.8125rem;
  color: rgba(240, 228, 200, 0.2);
  margin: 0;
  white-space: nowrap;
}

/* ── Product page ────────────────────────────────────────────────  */

.bc-pp-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 154, 46, 0.08);
}

.bc-pp-title-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bc-pp-name {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #F0E4C8;
  margin: 0;
  line-height: 1.1;
}

.bc-pp-category {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  background: rgba(200, 154, 46, 0.1);
  border: 1px solid rgba(200, 154, 46, 0.25);
  color: #D4A843;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.bc-pp-status {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.bc-pp-status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--status-color);
}

.bc-pp-status-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--status-color);
  opacity: 0.3;
  animation: bcPulse 2s ease-in-out infinite;
}

.bc-pp-left-card {
  border: 1px solid rgba(200, 154, 46, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  background: #221A0B;
}

.bc-pp-image-wrap {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-pp-no-image {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 154, 46, 0.1);
  background: #0D0B08;
}

.bc-pp-no-image-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 25% 75%, rgba(160, 120, 32, 0.1), transparent 60%),
    radial-gradient(ellipse 55% 65% at 75% 25%, rgba(200, 154, 46, 0.12), transparent 60%);
  pointer-events: none;
}

.bc-pp-no-image-icon {
  position: relative;
  width: 64px;
  height: 64px;
  color: rgba(240, 228, 200, 0.1);
}

.bc-pp-no-image-label {
  position: relative;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgba(240, 228, 200, 0.12);
  margin: 0;
  text-align: center;
  padding: 0 2rem;
}

.bc-pp-desc-wrap {
  padding: 1.5rem 1.75rem;
}

.bc-pp-desc-wrap .editor {
  color: rgba(244, 233, 207, 0.8);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.bc-pp-right-card {
  border: 1px solid rgba(200, 154, 46, 0.22);
  border-radius: 1rem;
  overflow: hidden;
  background: #221A0B;
  position: relative;
}

.bc-pp-right-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #A07820, #C89A2E);
  z-index: 1;
}

.bc-pp-price-header {
  padding: 1.5rem 1.75rem;
  background: rgba(13, 11, 8, 0.6);
  border-bottom: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-pp-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.bc-pp-price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #E8C56A;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.bc-pp-price-each {
  font-size: 0.8125rem;
  color: rgba(244, 233, 207, 0.5);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bc-pp-price-each-label {
  color: rgba(244, 233, 207, 0.38);
}

.bc-pp-stock-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bc-pp-stock--in  { color: #4ade80; }
.bc-pp-stock--out { color: #f87171; }

.bc-pp-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
  animation: bcPulse 2.5s ease-in-out infinite;
}

.bc-pp-right-card form > div {
  background: transparent !important;
}

.bc-pp-right-card .border-t.border-white\/5,
.bc-pp-right-card .border-b.border-y-white\/5 {
  border-color: rgba(200, 154, 46, 0.06) !important;
}

.bc-variant-btn {
  border-radius: 0.625rem !important;
  padding: 0.875rem 1rem !important;
  border: 1px solid rgba(240, 228, 200, 0.07) !important;
  background: rgba(240, 228, 200, 0.025) !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
}

.bc-variant-btn:hover:not([disabled]) {
  border-color: rgba(200, 154, 46, 0.32) !important;
  background: rgba(200, 154, 46, 0.06) !important;
}

.bc-pp-right-card button.bg-white\/5 {
  background: rgba(240, 228, 200, 0.04) !important;
  border-radius: 0 !important;
  transition: background 0.15s ease !important;
}

.bc-pp-right-card button.bg-white\/5:hover:not([disabled]) {
  background: rgba(200, 154, 46, 0.2) !important;
}

.bc-add-cart-btn {
  background: linear-gradient(135deg, #A07820 0%, #C89A2E 100%) !important;
  border: none !important;
  border-radius: 0.625rem !important;
  color: #0D0B08 !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
}

.bc-add-cart-btn:hover:not([disabled]) {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200, 154, 46, 0.38) !important;
}

.bc-buy-now-btn {
  border: 1px solid rgba(200, 154, 46, 0.35) !important;
  color: #D4A843 !important;
  border-radius: 0.625rem !important;
  font-weight: 700 !important;
  background: transparent !important;
  transition: background 0.18s ease, border-color 0.18s ease !important;
}

.bc-buy-now-btn:hover:not([disabled]) {
  background: rgba(200, 154, 46, 0.08) !important;
  border-color: rgba(200, 154, 46, 0.55) !important;
}

.bc-pp-live-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-top: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-pp-live-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(244, 233, 207, 0.55);
}

.bc-pp-live-icon {
  width: 14px;
  height: 14px;
  color: #E8C56A;
  flex-shrink: 0;
}

.bc-pp-live-stat strong { color: rgba(244, 233, 207, 0.88); }

.bc-pp-right-card button.bg-accent-500.border-accent-500:not(.bc-add-cart-btn) {
  border-radius: 0.5rem !important;
}

/* ── Cart page ───────────────────────────────────────────────────  */

.bc-cart-loading {
  padding: 2.5rem;
  border: 1px solid rgba(200, 154, 46, 0.06);
  border-radius: 0.875rem;
  background: #221A0B;
  text-align: center;
}

.bc-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 2rem;
  border: 1px solid rgba(200, 154, 46, 0.06);
  border-radius: 1rem;
  background: #221A0B;
  text-align: center;
}

.bc-cart-empty-icon {
  width: 52px;
  height: 52px;
  color: rgba(240, 228, 200, 0.08);
}

.bc-cart-empty-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(240, 228, 200, 0.3);
  margin: 0;
}

.bc-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem;
  border: 1px solid rgba(200, 154, 46, 0.07);
  border-radius: 0.875rem;
  background: #221A0B;
  transition: border-color 0.2s ease;
}

.bc-cart-item:hover {
  border-color: rgba(200, 154, 46, 0.22);
}

.bc-cart-item-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 1;
  min-width: 0;
}

.bc-cart-item-img {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: rgba(200, 154, 46, 0.04);
}

.bc-cart-item-info {
  flex: 1;
  min-width: 0;
}

.bc-cart-item-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #F0E4C8;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.bc-cart-item-name:hover { color: #D4A843; }

.bc-cart-item-variant {
  font-size: 0.8125rem;
  color: rgba(240, 228, 200, 0.38);
  margin: 0.2rem 0 0;
}

.bc-cart-item-discount {
  font-size: 0.75rem;
  color: rgba(200, 154, 46, 0.65);
  margin: 0.25rem 0 0;
}

.bc-cart-item-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.bc-cart-qty {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 46, 0.1);
}

.bc-cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(200, 154, 46, 0.04);
  color: rgba(240, 228, 200, 0.55);
  transition: background 0.15s ease, color 0.15s ease;
}

.bc-cart-qty-btn:hover:not([disabled]) {
  background: rgba(200, 154, 46, 0.2);
  color: #F0E4C8;
}

.bc-cart-qty-btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

.bc-cart-qty-input {
  width: 40px;
  background: rgba(200, 154, 46, 0.025);
  color: #F0E4C8;
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.25rem 0;
  border: none;
  outline: none;
  -moz-appearance: textfield;
}

.bc-cart-qty-input::-webkit-outer-spin-button,
.bc-cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.bc-cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: #F0E4C8;
  min-width: 4rem;
  text-align: right;
}

.bc-cart-remove {
  color: rgba(240, 228, 200, 0.2);
  transition: color 0.15s ease;
  padding: 0.25rem;
  line-height: 0;
}

.bc-cart-remove:hover { color: #f87171; }

.bc-cart-summary {
  border: 1px solid rgba(200, 154, 46, 0.22);
  border-radius: 1rem;
  overflow: hidden;
  background: #221A0B;
  position: relative;
}

.bc-cart-summary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #A07820, #C89A2E);
  z-index: 1;
}

.bc-cart-summary-header {
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 228, 200, 0.28);
  border-bottom: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-cart-summary-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bc-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bc-cart-row-label {
  font-size: 0.8125rem;
  color: rgba(240, 228, 200, 0.38);
  font-weight: 500;
}

.bc-cart-total-row {
  padding-top: 0.875rem;
  border-top: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-cart-total-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8C56A;
}

.bc-cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #A07820 0%, #C89A2E 100%);
  border: none;
  border-radius: 0.625rem;
  color: #0D0B08;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.bc-cart-checkout-btn:hover:not([disabled]) {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200, 154, 46, 0.38);
}

.bc-cart-checkout-btn[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
}

/* Support strip */
.bc-cart-tg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-cart-tg-label {
  font-size: 0.75rem;
  color: rgba(240, 228, 200, 0.22);
}

/* Payments strip */
.bc-cart-payments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 154, 46, 0.06);
}

.bc-cart-payments-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 228, 200, 0.18);
}

.bc-cart-payment-icons {
  display: flex;
  gap: 0.625rem;
}

.bc-cart-payment-icons i {
  font-size: 1.125rem;
  color: rgba(240, 228, 200, 0.3);
  transition: color 0.15s ease;
}

.bc-cart-payment-icons i:hover { color: rgba(240, 228, 200, 0.7); }

@media (max-width: 640px) {
  .bc-cart-item { flex-direction: column; align-items: flex-start; }
  .bc-cart-item-right {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(200, 154, 46, 0.06);
    padding-top: 0.75rem;
  }
}

/* ── Promo bar (sitewide CAMEL5) ───────────────────────────────── */
.bc-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(216, 169, 60, 0.28);
  background: linear-gradient(90deg, rgba(216, 169, 60, 0.12), rgba(216, 169, 60, 0.04) 60%, transparent);
  font-size: 0.82rem;
  color: #F4E9CF;
  text-align: center;
  animation: bcFadeDown 0.5s ease both;
}

.bc-promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8C56A;
  box-shadow: 0 0 8px rgba(232, 197, 106, 0.8);
  animation: bcPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.bc-promo strong { color: #EBC76C; font-weight: 700; }

.bc-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px dashed rgba(232, 197, 106, 0.5);
  background: rgba(216, 169, 60, 0.1);
  color: #EBC76C;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.bc-promo-code:hover {
  background: rgba(216, 169, 60, 0.18);
  border-color: #E8C56A;
}

.bc-promo-code:active { transform: scale(0.96); }
.bc-promo-code svg { width: 13px; height: 13px; opacity: 0.85; }

.bc-promo-code.bc-copied {
  border-style: solid;
  border-color: #4ade80;
  color: #86efac;
}

/* ── Product page · discount hint ──────────────────────────────── */
.bc-pp-promo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(216, 169, 60, 0.08);
  border: 1px dashed rgba(232, 197, 106, 0.35);
  font-size: 0.8rem;
  color: rgba(244, 233, 207, 0.85);
}

.bc-pp-promo strong { color: #EBC76C; letter-spacing: 0.04em; }
.bc-pp-promo svg { width: 15px; height: 15px; color: #E8C56A; flex-shrink: 0; }

/* ── Product page · entrance + feedback ────────────────────────── */
.bc-pp-col {
  opacity: 0;
  transform: translateY(16px);
  animation: bcFadeUp 0.55s var(--ease-out-quint) forwards;
}

.bc-pp-col-1 { animation-delay: 0.05s; }
.bc-pp-col-2 { animation-delay: 0.14s; }

.bc-add-cart-btn:active:not([disabled]),
.bc-buy-now-btn:active:not([disabled]),
.bc-cart-checkout-btn:active:not([disabled]),
.bc-btn-primary:active,
.bc-btn-discord:active {
  transform: scale(0.985);
}

/* ── Keyframes ───────────────────────────────────────────────────  */
@keyframes bcFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bcFadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .bc-sun,
  .bc-sun::before,
  .bc-sun::after,
  .bc-dune-back,
  .bc-dune-front,
  .bc-badge-dot,
  .bc-featured-status-dot,
  .bc-pp-status-pulse,
  .bc-pp-stock-dot {
    animation: none !important;
  }
  .bc-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .bc-title,
  .bc-badge,
  .bc-subtitle,
  .bc-actions,
  .bc-promo {
    animation: none !important;
  }
  .bc-pp-col {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
