/* ── PIMPS.COM — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-deep:   #1a0835;
  --purple-mid:    #2a0f52;
  --purple-vivid:  #3d1a6e;
  --purple-light:  #5c2b9e;
  --gold-bright:   #f0c040;
  --gold-mid:      #c9971a;
  --gold-dark:     #8b6914;
  --gold-pale:     #f5dfa0;
  --cream:         #fdf6e3;
  --text-primary:  rgba(255,255,255,0.95);
  --text-secondary:rgba(255,255,255,0.60);
  --text-muted:    rgba(255,255,255,0.35);
  --border:        rgba(201,151,26,0.2);
  --card-bg:       rgba(255,255,255,0.04);
  --card-bg-hover: rgba(255,255,255,0.07);
}

/* ── LIGHT MODE OVERRIDES ── */
/* NOTE: Full overrides are injected by theme.js with !important. */
/* Only base CSS variables here — theme.js handles all component overrides. */
html[data-theme="light"] {
  --purple-deep:    #F5F0FF;
  --purple-mid:     #EBE0FF;
  --purple-vivid:   #6D28D9;
  --purple-light:   #7C3AED;
  --gold-bright:    #D97706;
  --gold-mid:       #B45309;
  --gold-dark:      #92400E;
  --gold-pale:      #FDE68A;
  --text-primary:   rgba(12, 6, 28, 0.93);
  --text-secondary: rgba(12, 6, 28, 0.60);
  --text-muted:     rgba(12, 6, 28, 0.38);
  --border:         rgba(109, 40, 217, 0.14);
  --card-bg:        #FFFFFF;
  --card-bg-hover:  #FBFAFF;
}

/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
  width: 40px; height: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
  transition: transform 0.3s, background 0.3s;
}
html[data-theme="light"] .theme-toggle {
  background: rgba(90,40,140,0.12);
}
html[data-theme="light"] .theme-toggle::after {
  transform: translateX(18px);
  background: var(--purple-vivid);
}
.theme-toggle-wrap {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  margin-right: 4px;
}
.theme-toggle-icon { font-size: 14px; }

html { scroll-behavior: smooth; }
body {
  background: var(--purple-deep);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--purple-vivid); border-radius: 3px; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26,8,53,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: calc(48px * 1.1);
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,151,26,0.35));
  mix-blend-mode: normal;
}
.nav-brand-purpose {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 220px;
}
.nav-brand-purpose span {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  line-height: 1.35;
}
html[data-theme="light"] .nav-brand-purpose span {
  color: var(--gold-dark);
}

.nav-search {
  flex: 1;
  max-width: 460px;
  position: relative;
}
.nav-search input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 44px 10px 16px;
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search input:focus { border-color: rgba(201,151,26,0.5); }
.nav-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--gold-bright); background: rgba(201,151,26,0.08); }
.nav-link.active { color: var(--gold-bright); }

.nav-btn {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(201,151,26,0.5);
  color: var(--gold-bright);
}
.nav-btn-outline:hover { background: rgba(201,151,26,0.1); border-color: var(--gold-bright); }
.nav-btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  color: var(--purple-deep);
}
.nav-btn-gold:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,151,26,0.4); }

/* ── FOOTER ── */
.footer {
  background: var(--purple-deep);
  border-top: 1px solid var(--border);
  padding: 64px 80px 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(120px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo img {
  height: calc(56px * 2.5);
  width: auto;
  margin-bottom: 12px;
  mix-blend-mode: normal;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  text-align: center;
  align-self: center;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ── GOLD DIVIDER ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}
.gold-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,151,26,0.6), transparent);
}
.gold-rule .diamond {
  width: 8px; height: 8px;
  background: var(--gold-mid);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(240,192,64,0.25);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  color: var(--purple-deep);
  box-shadow: 0 4px 20px rgba(201,151,26,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,151,26,0.55); }
.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid rgba(201,151,26,0.5);
}
.btn-outline:hover { background: rgba(201,151,26,0.1); border-color: var(--gold-bright); transform: translateY(-1px); }
.btn-purple {
  background: var(--purple-vivid);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-purple:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(201,151,26,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
/* Card as wrapper: image + body link to product, shop name links to seller storefront */
.product-card.is-split {
  cursor: default;
  display: flex;
  flex-direction: column;
}
.product-card.is-split:hover {
  transform: translateY(-4px);
}
.product-card.is-split .product-card-media {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card.is-split .product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card.is-split a.product-card-shop,
.product-card.is-split span.product-card-shop {
  font-size: 11px;
  color: var(--gold-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-decoration: none;
  align-self: flex-start;
}
.product-card.is-split a.product-card-shop:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}
.product-card.is-split a.product-card-buy {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.product-card.is-split a.product-card-buy:hover .product-card-title {
  color: var(--gold-bright);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--purple-vivid);
  position: relative;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-vivid), var(--purple-mid));
  font-size: 48px;
}
.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold-bright);
  color: var(--purple-deep);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px; height: 32px;
  background: rgba(26,8,53,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.product-card-fav:hover { background: rgba(26,8,53,0.95); }
.product-card-body { padding: 16px; }
.product-card-shop {
  font-size: 11px;
  color: var(--gold-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
}
.product-card-price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.stars { color: var(--gold-mid); font-size: 12px; margin-top: 6px; }

/* ── CATEGORY CHIP ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 3px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.chip:hover, .chip.active {
  background: rgba(201,151,26,0.12);
  border-color: var(--gold-mid);
  color: var(--gold-bright);
}

/* ── MARQUEE ── */
.marquee-wrap {
  height: 44px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid), var(--gold-bright), var(--gold-mid), var(--gold-dark));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-deep);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 28px;
}
.marquee-item::after { content: '◆'; margin-left: 28px; opacity: 0.4; font-size: 7px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,151,26,0.6);
  background: rgba(255,255,255,0.07);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

/* ── PAGE WRAPPER ── */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── UTILITIES ── */
.text-gold { color: var(--gold-bright); }
.text-muted { color: var(--text-secondary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ── LIGHT MODE COMPATIBILITY FIXES (aligns with theme.js vivid purple palette) ── */
html[data-theme="light"] .hero-h1 .small,
html[data-theme="light"] .hero-sub,
html[data-theme="light"] .sell-cta-p,
html[data-theme="light"] .stat-lbl {
  color: rgba(12,6,28,0.72);
  text-shadow: none;
}
html[data-theme="light"] .hero-image::after {
  background: linear-gradient(to right, rgba(245,240,255,0.95) 0%, rgba(245,240,255,0.18) 36%, transparent 100%);
}
html[data-theme="light"] .search-bar input,
html[data-theme="light"] .price-range input,
html[data-theme="light"] .summary-coupon input,
html[data-theme="light"] .qty-val,
html[data-theme="light"] .form-input,
html[data-theme="light"] .form-select,
html[data-theme="light"] .form-textarea {
  background: rgba(109,40,217,0.05);
  border-color: rgba(109,40,217,0.16);
  color: rgba(12,6,28,0.9);
}
html[data-theme="light"] .search-bar input::placeholder,
html[data-theme="light"] .price-range input::placeholder,
html[data-theme="light"] .summary-coupon input::placeholder,
html[data-theme="light"] .form-input::placeholder,
html[data-theme="light"] .form-textarea::placeholder {
  color: rgba(12,6,28,0.42);
}
html[data-theme="light"] .price-block,
html[data-theme="light"] .secure-badge {
  background: rgba(109,40,217,0.06);
  border-color: rgba(109,40,217,0.16);
}
html[data-theme="light"] .delivery-row,
html[data-theme="light"] .summary-item,
html[data-theme="light"] td {
  border-bottom-color: rgba(109,40,217,0.12);
}
html[data-theme="light"] .product-card-fav {
  background: rgba(255,255,255,0.95);
}

/* ── RESPONSIVE FIXES ── */
@media (max-width: 1200px) {
  .nav { padding: 0 28px; gap: 20px; }
  .page-wrap { padding: 0 28px; }
  .footer { padding: 56px 28px 32px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .footer-logo { grid-column: 1 / -1; }
  .browse-hero, .shop-banner, .sell-hero, .checkout-header { padding-left: 28px !important; padding-right: 28px !important; }
  .browse-body, .shop-body, .checkout-layout, .product-layout, .product-extra, .related-section, .plans-section, .how-section, .testimonials { padding-left: 28px !important; padding-right: 28px !important; }
  .checkout-steps { padding-left: 28px !important; padding-right: 28px !important; }
  .hero-content { width: 58% !important; padding: 52px 40px 72px 40px !important; }
  .hero-image { width: 56% !important; }
  .products-grid, .products-grid-shop, .products-grid-4, .related-grid, .plans-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .categories-grid, .highlights, .how-grid, .quick-row, .stats-row { grid-template-columns: repeat(2, 1fr) !important; }
  .spotlight-grid, .testimonials, .products-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-image { min-height: 320px; }
}

@media (max-width: 992px) {
  .nav {
    height: auto;
    min-height: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .nav-search { order: 3; width: 100%; max-width: 100%; }
  .nav-links { width: 100%; justify-content: flex-start; margin-left: 0; flex-wrap: wrap; }
  .nav-btn { padding: 9px 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero { min-height: auto !important; }
  .hero-content { width: 100% !important; padding: 48px 28px 56px !important; }
  .hero-image {
    position: relative !important;
    right: auto !important;
    width: 100% !important;
    height: 360px !important;
    order: 2;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  .hero { display: flex !important; flex-direction: column-reverse; }
  .hero-sub { max-width: 100% !important; }
  .sell-cta { padding: 40px 28px !important; flex-direction: column; align-items: flex-start; }
  .sell-cta-btns { width: 100%; }
  .sell-cta-btns .btn { width: 100%; justify-content: center; }
  .browse-body, .checkout-layout, .product-layout, .product-extra, .dash-layout, .chart-section, .rating-summary { grid-template-columns: 1fr !important; }
  .order-summary { position: static !important; top: auto !important; }
  .form-row, .form-row-2, .form-row-3 { grid-template-columns: 1fr !important; }
  .shop-head { flex-direction: column; align-items: flex-start !important; gap: 16px !important; }
  .shop-stats { flex-wrap: wrap; }
  .shop-stat { width: 50%; border-right: none !important; border-bottom: 1px solid var(--border); }
  .shop-chat-drawer { width: min(100%, 400px) !important; }
  .shop-chat-launch { right: 18px !important; bottom: 18px !important; }
  .table-card { overflow-x: auto; }
  table { min-width: 640px; }
  .hero-stats { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .hero-stat { border-right: none !important; padding-right: 0 !important; }
}

@media (max-width: 768px) {
  .page-wrap { padding: 0 18px; }
  .browse-hero, .shop-banner, .sell-hero, .checkout-header,
  .browse-body, .shop-body, .checkout-layout, .product-layout, .product-extra, .related-section, .plans-section, .how-section, .testimonials {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .checkout-steps { padding-left: 18px !important; padding-right: 18px !important; overflow-x: auto; justify-content: flex-start !important; }
  .ck-step { white-space: nowrap; }
  .categories-grid, .products-grid, .products-grid-shop, .products-grid-4, .products-grid-3, .related-grid, .plans-grid, .how-grid, .spotlight-grid, .testimonials, .highlights, .quick-row, .stats-row {
    grid-template-columns: 1fr !important;
  }
  .highlight { border-right: none !important; border-bottom: 1px solid var(--border); }
  .highlight:last-child { border-bottom: none; }
  .hero-content { padding: 38px 18px 40px !important; }
  .hero-h1 .big { font-size: clamp(36px, 10vw, 52px) !important; }
  .hero-h1 .small { font-size: clamp(16px, 4vw, 22px) !important; }
  .hero-stat { border-right: none !important; padding: 0 !important; margin-bottom: 14px; width: 100%; }
  .hero-stat:last-child { padding-left: 0 !important; }
  .footer { padding-left: 18px; padding-right: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .signup-card { padding: 24px !important; }
  .dash-main { padding: 24px 18px !important; }
  .product-main-image { min-height: 280px !important; }
  .price-row { flex-wrap: wrap; gap: 10px; }
  .price-old { margin-left: 0 !important; }
  .tabs { overflow-x: auto; scrollbar-width: thin; }
  .tabs .tab, .shop-tab, .dash-tab { white-space: nowrap; }
  .checkout-steps::-webkit-scrollbar, .tabs::-webkit-scrollbar { height: 5px; }
}

@media (max-width: 520px) {
  .nav-brand-purpose { display: none; }
  .nav-link { padding: 6px 10px; font-size: 10px; }
  .nav-btn { font-size: 10px; letter-spacing: 0.08em; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .nav-logo img { height: calc(42px * 1.1); }
  .nav-search input { padding-right: 40px; }
  .shop-stat { width: 100%; }
  .shop-chat-drawer { width: 100% !important; border-left: none !important; }
  .summary-coupon { flex-direction: column; }
  .summary-coupon button { width: 100%; }
  .section-eyebrow { letter-spacing: 0.24em; }
  .section-sub { font-size: 14px; }
}

/* Browse page hero — light mode: photo + overlay (image ships with theme) */
html[data-theme="light"] .browse-hero {
  background:
    linear-gradient(to bottom, rgba(30, 10, 60, 0.45) 0%, rgba(30, 10, 60, 0.62) 100%),
    url('../images/banner-browse.png') center center / cover no-repeat !important;
  border-bottom-color: rgba(109, 40, 217, 0.12) !important;
}
