/* ================================================================
   ONCOST Storefront · Unified Premium Stylesheet
   Inherits the maroon × gold × cream luxury palette.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --burgundy:       #7a1f35;
  --burgundy-dark:  #5c1527;
  --burgundy-soft:  #b15f72;
  --gold:           #d4af37;
  --gold-light:     #f2dd92;
  --gold-soft:      #faf2d8;
  --cream:          #fbf7ef;
  --paper:          #fffdf9;
  --ink:            #2f2728;
  --ink-soft:       #4a4042;
  --muted:          #7a6e6f;
  --line:           #eadfd4;
  --line-soft:      #f4ecdf;
  --success:        #2E7D32;
  --error:          #C62828;
  --whatsapp:       #25D366;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, system-ui, sans-serif;

  --radius:         8px;
  --radius-lg:      14px;

  --shadow-sm:      0 1px 2px rgba(76,24,37,.04);
  --shadow:         0 4px 16px rgba(76,24,37,.08);
  --shadow-lg:      0 20px 50px rgba(76,24,37,.14);
  --shadow-gold:    0 14px 32px rgba(212,175,55,.28);

  --transition:     all .25s cubic-bezier(.25,1,.5,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--burgundy); color: var(--gold-light); }

h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--burgundy); letter-spacing: -0.01em; margin: 0; font-weight: 700; }

/* ---------- Sale Banner (live, top of every page) ---------- */
.sale-banner {
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--burgundy-dark) 50%, var(--burgundy) 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  display: none;
  border-bottom: 1px solid var(--gold);
  position: relative;
  z-index: 30;
}
.sale-banner.show { display: block; }
.sale-banner .pill {
  display: inline-block;
  background: var(--gold);
  color: var(--burgundy-dark);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 8px;
  font-weight: 800;
}

/* ---------- Topbar (USPs) ---------- */
.topbar {
  background: var(--burgundy);
  color: #FFF;
  padding: 8px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar i { color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 25;
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header .logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 1.95rem);
  font-weight: 800;
  color: var(--burgundy);
  letter-spacing: 2px;
}
.site-header .logo:hover { color: var(--burgundy-dark); }
.desktop-nav {
  display: flex; gap: clamp(20px, 2.5vw, 36px);
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.desktop-nav a {
  position: relative; padding: 6px 0;
  color: var(--ink-soft);
}
.desktop-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: var(--transition);
}
.desktop-nav a:hover { color: var(--burgundy); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #FFF;
  color: var(--burgundy);
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}
.icon-btn:hover {
  background: var(--burgundy); color: #FFF;
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122,31,53,.22);
}
.icon-btn .badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--burgundy-dark);
  border-radius: 999px;
  font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px; letter-spacing: .3px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn.primary { background: var(--burgundy); color: #FFF; box-shadow: 0 8px 18px rgba(122,31,53,.22); }
.btn.primary:hover:not(:disabled) { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(122,31,53,.32); }
.btn.secondary { background: var(--gold); color: var(--burgundy-dark); box-shadow: var(--shadow-gold); }
.btn.secondary:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.05); }
.btn.outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn.outline:hover:not(:disabled) { background: var(--burgundy); color: #FFF; }
.btn.ghost { background: transparent; color: var(--burgundy); padding: 10px 16px; }
.btn.ghost:hover { background: var(--cream); }
.btn.sm { padding: 8px 16px; min-height: 36px; font-size: 12px; }
.btn.lg { padding: 16px 32px; min-height: 56px; font-size: 15px; }
.btn.block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(32px,6vw,72px);
  padding: clamp(60px,9vw,120px) clamp(20px,7vw,100px);
  background: linear-gradient(140deg, var(--cream) 0%, var(--gold-soft) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212,175,55,.18) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(122,31,53,.10) 0%, transparent 40%);
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  color: var(--burgundy);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(212,175,55,.18); border: 1px solid rgba(212,175,55,.4);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 12ch;
}
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative; min-height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--burgundy-soft) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
/* ---------- Hero slideshow (auto-crossfade) ---------- */
.hero-slides {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease-out;
  mix-blend-mode: normal;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
  z-index: 1;
}
.hero-kpi {
  position: absolute;
  right: -16px; top: 36px;
  padding: 14px 18px;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.4);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  text-align: center;
  z-index: 2;
}
.hero-kpi .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.hero-kpi .text { color: var(--burgundy); font-size: 12px; font-weight: 700; margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 9vw, 100px) clamp(20px, 7vw, 100px); }
.section.muted { background: var(--cream); }
.section.dark  { background: var(--burgundy); color: var(--cream); }
.section.dark h2 { color: var(--gold-light); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); }

/* ---------- Collection Grid ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.collection-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.collection-card .visual {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.collection-card:hover .visual { transform: scale(1.05); }
.collection-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(122,31,53,.85) 0%, rgba(122,31,53,.15) 50%, transparent 100%);
}
.collection-card .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px;
  color: #FFF;
  z-index: 1;
}
.collection-card .label h3 { color: #FFF; font-size: 1.4rem; margin: 0 0 4px; }
.collection-card .label span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
/* Decorative fallback gradients when no image */
.bg-maroon  { background: linear-gradient(135deg, #7a1f35, #e6a5b6); }
.bg-gold    { background: linear-gradient(135deg, #d4af37, #fff1b8); }
.bg-rose    { background: linear-gradient(135deg, #f8dce4, #7a1f35); }
.bg-sage    { background: linear-gradient(135deg, #a8b7a0, #f7f2ec); }
.bg-silver  { background: linear-gradient(135deg, #e8e9ea, #8e9499); }
.bg-cream   { background: linear-gradient(135deg, #fff7e4, #d4af37); }

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .img-wrap .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--burgundy); opacity: .25;
  font-size: 40px;
  background: linear-gradient(135deg, var(--cream), var(--gold-soft));
}
.product-card .badge-pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--burgundy); color: #FFF;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  z-index: 2;
}
.product-card .badge-pill.gold { background: var(--gold); color: var(--burgundy-dark); }
.product-card .stock-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(198,40,40,.95); color: #FFF;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .5px;
  z-index: 2;
}
.product-card .wish-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  color: var(--burgundy);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  transition: var(--transition);
}
.product-card .wish-btn:hover { transform: scale(1.08); border-color: var(--burgundy); }
.product-card .wish-btn.on { background: var(--burgundy); color: var(--gold-light); border-color: var(--burgundy); }
.pd-thumb {
  width: 64px; height: 64px;
  border-radius: 6px; overflow: hidden;
  border: 2px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { border-color: var(--gold); }
.pd-thumb.active { border-color: var(--burgundy); box-shadow: 0 0 0 2px rgba(122,31,53,.18); }
.product-card .info { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card .info .cat { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.product-card .info h3 { color: var(--ink); font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 10px; line-height: 1.3; }
.product-card .info .price-row { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.product-card .info .price { color: var(--burgundy); font-weight: 700; font-size: 1.1rem; }
.product-card .info .price-old { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.product-card .info .save { color: var(--success); font-size: 11px; font-weight: 700; background: #E8F5E9; padding: 2px 7px; border-radius: 4px; }

/* ---------- Reviews Marquee ---------- */
.reviews-strip {
  background: var(--burgundy);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.marquee {
  display: flex; gap: 48px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}
.review-item::before { content: '★★★★★'; color: var(--gold); font-style: normal; letter-spacing: 2px; font-size: 14px; }
.review-item .author { color: var(--gold-light); font-style: normal; font-size: 13px; margin-left: 6px; }
.review-cta {
  display: flex; justify-content: center; margin-bottom: 18px;
}

/* ---------- Bulk Banner ---------- */
.bulk-panel {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.bulk-panel h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.bulk-panel p { color: var(--burgundy-dark); margin-bottom: 22px; max-width: 50ch; }
.bulk-visual {
  background: rgba(255,253,249,.62);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(122,31,53,.18);
  color: var(--burgundy);
  font-weight: 700;
}
.bulk-visual i { font-size: 48px; color: var(--burgundy); margin-bottom: 12px; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy);
  color: rgba(255,255,255,.85);
  padding: 70px clamp(20px,7vw,100px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 { color: var(--gold); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer-col p { color: rgba(255,255,255,.7); font-size: 13.5px; line-height: 1.75; }
.footer-col .brand { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold-light); letter-spacing: 3px; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.75); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-grid; place-items: center;
  color: var(--gold-light);
  transition: var(--transition);
}
.social-row a:hover { background: var(--gold); color: var(--burgundy); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.55);
  letter-spacing: .5px;
}
.footer-bottom .admin-link {
  color: var(--gold-light); font-weight: 600; display: none;
}
.footer-bottom .admin-link.show { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Mobile bottom nav ---------- */
.mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  background: rgba(255,253,249,.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(76,24,37,.10);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.mobile-nav .row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.mobile-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px;
  color: var(--burgundy);
  font-size: 10.5px; font-weight: 700;
  border-radius: 6px;
}
.mobile-nav a i { font-size: 16px; }
.mobile-nav a.active, .mobile-nav a:hover { background: var(--cream); }

/* ---------- WhatsApp floating button ---------- */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  color: #FFF;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.08); }

/* ---------- Page Hero (sub pages) ---------- */
.page-hero {
  padding: clamp(40px, 6vw, 70px) clamp(20px, 7vw, 100px);
  background: linear-gradient(135deg, var(--cream), var(--gold-soft));
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0; }
.page-hero p { color: var(--muted); max-width: 56ch; }

/* ---------- Toolbar (filters) ---------- */
.toolbar {
  display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; align-items: center;
}
.field, .select {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFF;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: var(--transition);
}
.field:focus, .select:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(122,31,53,.12); }
.toolbar .field { flex: 1; min-width: 240px; }
.toolbar .select { min-width: 180px; }

/* ---------- Phone Input Group & Smart Select ---------- */
.phone-input-group {
  display: flex; align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFF;
  overflow: hidden;
  transition: var(--transition);
}
.phone-input-group:focus-within {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122,31,53,.12);
}
.prefix-wrapper {
  position: relative;
  display: flex; align-items: center;
  background: var(--cream);
  border-right: 1px solid var(--line);
}
.prefix-display {
  padding: 0 16px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
}
select.prefix-select {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}
.phone-input-group input.field, .phone-input-group input.input {
  border: none;
  border-radius: 0;
  flex: 1;
  margin-top: 0 !important;
  box-shadow: none !important;
}
.phone-input-group input:focus {
  outline: none; box-shadow: none;
}


/* ---------- Product Detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.pd-gallery {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
  border: 1px solid var(--line);
}
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery .placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--burgundy); opacity: .35; font-size: 80px; }
.pd-info .cat { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(2rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.pd-info .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.pd-info .price { color: var(--burgundy); font-size: 1.9rem; font-weight: 700; }
.pd-info .price-old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.pd-info .save-tag { background: #E8F5E9; color: var(--success); padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.pd-info .desc { color: var(--muted); margin-bottom: 28px; }
.pd-info .qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 38px; height: 38px; background: none; border: none; color: var(--burgundy); font-size: 16px; }
.qty-stepper button:hover { background: var(--cream); }
.qty-stepper input { width: 50px; text-align: center; border: none; background: none; font-weight: 600; font-size: 15px; }
.pd-info .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-perks { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 22px; border-top: 1px solid var(--line); }
.pd-perks .perk { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.pd-perks .perk i { color: var(--gold); font-size: 18px; margin-top: 2px; }

/* ---------- Cart ---------- */
.cart-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.cart-list { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 0; }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-row:last-child { border-bottom: none; }
.cart-row .thumb { width: 80px; height: 80px; border-radius: 6px; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.cart-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .meta h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.cart-row .meta .c { color: var(--muted); font-size: 12px; }
.cart-row .line-total { font-weight: 700; color: var(--burgundy); }
.cart-row .remove { background: none; border: none; color: var(--muted); font-size: 16px; padding: 8px; }
.cart-row .remove:hover { color: var(--error); }

.cart-summary { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 90px; }
.cart-summary h3 { font-size: 1.3rem; margin-bottom: 18px; }
.cart-summary .line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.cart-summary .line.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px; font-weight: 700; font-size: 17px; color: var(--burgundy); }
.cart-summary .coupon { display: flex; gap: 6px; margin: 16px 0; }
.cart-summary .coupon input { flex: 1; }
.cart-summary .coupon-msg { font-size: 12px; margin-top: 4px; min-height: 16px; }
.cart-summary .coupon-msg.ok { color: var(--success); }
.cart-summary .coupon-msg.err { color: var(--error); }

/* ---------- Account ---------- */
.account-grid { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.account-side { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; position: sticky; top: 90px; }
.account-side button {
  width: 100%; text-align: left; padding: 10px 12px;
  background: none; border: none; border-radius: 5px;
  color: var(--ink-soft); font-weight: 500; font-size: 14px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
  transition: var(--transition);
}
.account-side button:hover { background: var(--cream); }
.account-side button.active { background: var(--burgundy); color: #FFF; }
.account-pane { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.account-pane h2 { font-size: 1.5rem; margin-bottom: 16px; }
.empty-state {
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
}
.empty-state i { font-size: 38px; color: var(--burgundy); opacity: .4; margin-bottom: 12px; }
.empty-state h3 { color: var(--ink); margin-bottom: 6px; }

/* ---------- Toasts ---------- */
.toast {
  position: fixed; top: 20px; right: 20px;
  padding: 12px 18px; border-radius: 8px;
  background: var(--ink); color: #FFF;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  animation: slideIn .25s ease;
  max-width: 320px;
}
.toast.ok { background: var(--success); }
.toast.err { background: var(--error); }
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hero, .bulk-panel, .product-detail, .cart-grid, .account-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; margin-top: 16px; }
  .hero-kpi { right: 16px; top: 24px; transform: rotate(3deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .account-side { position: static; }
  .cart-summary { position: static; }
}
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .mobile-nav { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding-top: 40px; }
  .cart-row { grid-template-columns: 64px 1fr; gap: 12px; }
  .cart-row .qty-stepper, .cart-row .line-total, .cart-row .remove { grid-column: 2; justify-self: start; }
  .fab-whatsapp { bottom: 90px; }
}
@media (max-width: 480px) {
  .hide-mobile { display: none !important; }
  .topbar span:nth-child(n+3) { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card .info { padding: 12px; }
  .btn { padding: 11px 18px; font-size: 13px; }
  .hero-visual { min-height: 280px; }
  .hero-kpi { transform: scale(0.85) rotate(3deg); transform-origin: top right; right: 8px; top: 16px; }
}
