/* ══════════════════════════════════════════════════════
   bornberry — UNIFIED DESIGN SYSTEM
   Faithfully extracted from original design source.
   All 10 screens share this single stylesheet.
══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Jost:wght@300;400;500;600;700&family=Bebas+Neue:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0D0D0D;
  --charcoal: #1C1C1C;
  --carbon: #2A2A2A;
  --ash: #3D3D3D;
  --smoke: #888;
  --mist: #BBB;
  --pearl: #F5F0EA;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --saffron: #E8A430;
  --saffron-deep: #C8851A;
  --saffron-light: #F5C878;
  --blush: #C4756A;
  --blush-light: #E8B4AC;
  --blush-deep: #9A4D43;
  --sage: #5A7A5C;
  --sage-light: #8AAD8C;
  --teal: #3A6B6E;
  --success: #4A8A5A;
  --warning: #D4820A;
  --error: #B44040;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Jost', sans-serif;
  background: #111;
  color: var(--white);
  line-height: 1;
}

/* ── FIGMA CANVAS ── */
.canvas {
  padding: 48px 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.canvas-title {
  text-align: center;
  margin-bottom: 64px;
}
.canvas-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 12px;
}
.canvas-title h1 span { color: var(--saffron); font-style: italic; }
.canvas-title p {
  font-size: 14px;
  color: var(--smoke);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Frame wrapper */
.frame {
  margin-bottom: 80px;
}
.frame-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.frame-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.frame-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
}
.frame-dim {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.08em;
  margin-left: auto;
}
.frame-line { flex: 1; height: 1px; background: #2A2A2A; }

.screen {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}

/* ══════════════════════════════════════════
   SHARED NAV COMPONENT
══════════════════════════════════════════ */
.vnav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 55px;
  gap: 0;
  position: relative;
  z-index: 10;
}
.vnav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-right: 56px;
  flex-shrink: 0;
}
.vnav-logo span { color: var(--saffron); }
.vnav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.vnav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
}
.vnav-link.active { color: var(--ink); border-bottom: 2px solid var(--saffron); padding-bottom: 2px; }
.vnav-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.vnav-icon { font-size: 18px; cursor: pointer; color: var(--ash); }
.vnav-cart-badge { position: relative; }
.badge-dot {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: var(--blush);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.vnav-btn {
  background: var(--ink);
  color: var(--saffron-light);
  border: none;
  padding: 10px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.announce {
  background: var(--ink);
  color: var(--saffron-light);
  text-align: center;
  padding: 9px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   SCREEN 1 — HOMEPAGE
══════════════════════════════════════════ */
.hp { background: var(--cream); color: var(--ink); }

.hp-hero-left {
  background: var(--ink);
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hp-hero-left::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,48,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hp-hero-left::after {
  content: 'BornBerry';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(255,255,255,0.01);
  bottom: -20px;
  left: -10px;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.hp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,164,48,0.12);
  border: 1px solid rgba(232,164,48,0.3);
  color: var(--saffron);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  width: fit-content;
}
.hp-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
}
.hp-h1 em { font-style: italic; color: var(--saffron); }
.hp-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #888;
  max-width: 380px;
  margin-bottom: 48px;
}
.hp-ctas { display: flex; gap: 14px; }
.btn-saffron {
  background: var(--saffron);
  color: var(--ink);
  border: none;
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.btn-outline-w {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.hp-trust {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--saffron);
}
.trust-lbl { font-size: 11px; color: #666; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.hp-hero-right {
  position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0E8D8 0%, #E8D8C0 50%, #D8C4A8 100%);
    justify-content: center;
    height: 100%;
}
.hero-circles-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hcircle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,164,48,0.2);
}
.hc1 { width: 200px; height: 200px; }
.hc2 { width: 340px; height: 340px; }
.hc3 { width: 480px; height: 480px; }
.hero-product-float {
  z-index: 2;
  text-align: center;
}
.hero-product-float .floated {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-product-float img {
   
}
.hero-prod-emoji { font-size: 100px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.hero-prod-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}
.hpc-dot { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hpc-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.hpc-meta { font-size: 11px; color: var(--smoke); margin-top: 2px; }
.hero-badge-float {
  position: absolute;
  top: 32px;
  right: 55px;
  background: var(--blush);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.hp-cats {
  background: var(--white);
  padding: 40px 56px;
   position: relative;
    overflow: visible; /* 👈 IMPORTANT */
  /* display: flex; */
  /* gap: 16px; */
}
.cat-slider {
    overflow: hidden; /* keep this */
}
.cat-pill {
  /* flex: 1; */
  background: var(--pearl);
  /* border: 1.5px solid transparent; */
  border-radius: 10px;
  /* padding: 24px 0; */
  text-align: center;
  cursor: pointer;
  min-width: 0;
  padding-bottom: 20px;
}
.cat-pill.active { background: var(--ink); border-color: var(--ink); }
.cat-pill.active .cp-name { color: var(--cream); }
.cat-pill.active .cp-count { color: #888; }
.cp-icon { font-size: 28px; margin-bottom: 10px; }
.cp-name { font-size: 15px; font-weight: 600; color: var(--ink);margin-top:5px; }
.cp-count { font-size: 11px; color: var(--smoke); margin-top: 3px; }



.cat-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease-out;
}

.cat-item {
    flex: 0 0 calc(100% / 6); /* 👈 6 items visible */
    max-width: calc(100% / 6);
}
.hp-products {
  padding: 60px 56px;
  background: var(--cream);
}
.sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.sec-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blush); margin-bottom: 8px; }
.sec-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 400; color: var(--ink); }
.sec-title em { font-style: italic; }
.see-all-link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); text-decoration: underline; cursor: pointer; }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pc {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}
.pc-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}
.pc-img-a { background: linear-gradient(135deg, #FFF3DC, #FFE0A0); }
.pc-img-b { background: linear-gradient(135deg, #F0E8FF, #DDD0FF); }
.pc-img-c { background: linear-gradient(135deg, #DCF0E8, #B0DFC8); }
.pc-img-d { background: linear-gradient(135deg, #FFE8E4, #FFCCC4); }
.pc-badge-wrap {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.pb {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
}
.pb-blush { background: var(--blush); color: white; }
.pb-saffron { background: var(--saffron); color: var(--ink); }
.pb-sage { background: var(--sage); color: white; }
.pb-aff { background: var(--ink); color: var(--saffron-light); }
.pc-body { padding: 18px; }
.pc-rank { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blush); margin-bottom: 5px; }
.pc-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.pc-desc { font-size: 12px; color: var(--smoke); margin-bottom: 12px; }
.pc-stars { color: var(--saffron); font-size: 11px; margin-bottom: 3px; }
.pc-reviews { font-size: 10px; color: var(--smoke); margin-bottom: 12px; }
.pc-foot { display: flex; justify-content: space-between; align-items: center; }
.pc-price { font-size: 18px; font-weight: 700; color: var(--ink); }
.pc-old { font-size: 12px; color: var(--smoke); text-decoration: line-through; margin-left: 6px; vertical-align: middle; }
.add-to-cart {
  background: var(--ink);
  color: var(--saffron-light);
  border: none;
  padding: 9px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

.hp-banner {
  margin: 0 56px 60px;
  background: var(--ink);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hp-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,48,0.1) 0%, transparent 70%);
  right: 200px; top: -100px;
}
.hp-banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.hp-banner-text h3 em { font-style: italic; color: var(--saffron); }
.hp-banner-text p { font-size: 14px; color: #888; line-height: 1.6; }
.hp-banner-stat {
  text-align: center;
  position: relative; z-index: 1;
}
.hbs-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--saffron); line-height: 1; }
.hbs-pct { font-size: 28px; }
.hbs-label { font-size: 12px; color: #888; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

.hp-footer {
  background: var(--ink);
  padding: 40px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--cream); }
.footer-logo span { color: var(--saffron); }
.footer-links { display: flex; gap: 28px; }
.footer-link { font-size: 12px; color: #666; letter-spacing: 0.06em; cursor: pointer; }
.footer-copy { font-size: 11px; color: #555; }

/* ══════════════════════════════════════════
   SCREEN 2 — PRODUCT DETAIL
══════════════════════════════════════════ */
.pdp { background: var(--cream); color: var(--ink); }

.pdp-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 700px;
}
.pdp-gallery {
  background: linear-gradient(135deg, rgba(13,13,13,0.04), rgba(13,13,13,0.02));
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.pdp-main-img {
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}
.pdp-badges {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.pdp-thumbs { display: flex; gap: 12px; }
.pdp-thumb {
  width: 72px; height: 72px;
  border-radius: 8px;
  background: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  border: 2px solid transparent;
  cursor: pointer;
}
.pdp-thumb.active { border-color: var(--saffron); }
.pdp-zoom-hint { font-size: 11px; color: #999; letter-spacing: 0.06em; text-align: center; margin-top: 4px; }

.pdp-info {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.pdp-brand { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke); margin-bottom: 10px; }
.pdp-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pdp-tagline { font-size: 14px; color: var(--smoke); margin-bottom: 20px; line-height: 1.5; }
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #F0EBE3;
}
.pdp-stars { color: var(--saffron); font-size: 16px; }
.pdp-rating-num { font-size: 15px; font-weight: 700; color: var(--ink); }
.pdp-review-count { font-size: 13px; color: var(--smoke); }
.pdp-badge-row { display: flex; gap: 8px; }
.pdp-mini-badge { background: rgba(74,138,90,0.1); color: var(--success); border: 1px solid rgba(74,138,90,0.2); padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; }

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.pdp-price { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--ink); }
.pdp-mrp { font-size: 18px; color: var(--smoke); text-decoration: line-through; }
.pdp-off { background: var(--saffron); color: var(--ink); padding: 4px 12px; border-radius: 4px; font-size: 13px; font-weight: 700; }

.pdp-variants { margin-bottom: 24px; }
.pdp-var-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.pdp-var-row { display: flex; gap: 10px; }
.pdp-var {
  padding: 10px 20px;
  border: 1.5px solid #E0DAD0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ash);
  cursor: pointer;
}
.pdp-var.active { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.pdp-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.qty-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.qty-ctrl { display: flex; align-items: center; gap: 0; border: 1.5px solid #E0DAD0; border-radius: 4px; overflow: hidden; }
.qty-btn { width: 36px; height: 36px; border: none; background: #F5F0EA; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ash); }
.qty-val { width: 44px; text-align: center; font-size: 15px; font-weight: 600; color: var(--ink); }

.pdp-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.btn-atc {
  flex: 1;
  background: var(--ink);
  color: var(--saffron-light);
  border: none;
  padding: 16px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.btn-buy {
  flex: 1;
  background: var(--saffron);
  color: var(--ink);
  border: none;
  padding: 16px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.btn-wish { width: 52px; height: 52px; border: 1.5px solid #E0DAD0; background: white; border-radius: 2px; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

.pdp-delivery {
  background: #F5F0EA;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp-del-icon { font-size: 22px; }
.pdp-del-text { font-size: 13px; color: var(--ash); }
.pdp-del-text strong { color: var(--ink); }

.pdp-aff-box {
  background: linear-gradient(135deg, rgba(13,13,13,0.04), rgba(13,13,13,0.02));
  border: 1.5px dashed rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdp-aff-text { font-size: 13px; color: var(--ash); }
.pdp-aff-text strong { color: var(--ink); font-weight: 700; }
.pdp-aff-earn { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--saffron); }

.pdp-tabs { background: var(--white); border-top: 1px solid #F0EBE3; }
.pdp-tab-row { display: flex; padding: 0 56px; border-bottom: 1px solid #F0EBE3; }
.pdp-tab {
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--smoke);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.pdp-tab.active { color: var(--ink); border-bottom-color: var(--saffron); }
.pdp-tab-body { padding: 36px 56px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.pdp-ing-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pearl);
  border-radius: 10px;
  padding: 16px;
}
.ing-icon { font-size: 28px; }
.ing-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.ing-benefit { font-size: 11px; color: var(--smoke); }

/* ══════════════════════════════════════════
   SCREEN 3 — CHECKOUT
══════════════════════════════════════════ */
.checkout { background: var(--cream); color: var(--ink); }

.checkout-steps {
  background: var(--white);
  padding: 20px 56px;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid #F0EBE3;
}
.ck-step { display: flex; align-items: center; gap: 10px; }
.ck-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.ck-step.done .ck-step-num { background: var(--success); color: white; }
.ck-step.active .ck-step-num { background: var(--ink); color: var(--saffron-light); }
.ck-step:not(.done):not(.active) .ck-step-num { background: #F0EBE3; color: var(--smoke); }
.ck-step-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.ck-step:not(.done):not(.active) .ck-step-name { color: var(--smoke); }
.ck-divider { flex: 1; height: 1px; background: #E0DAD0; margin: 0 20px; }

.checkout-body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  padding: 48px 56px;
  align-items: start;
}
.ck-form-section { background: var(--white); border-radius: 12px; padding: 36px; border: 1px solid #F0EBE3; margin-bottom: 24px; }
.ck-section-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.ck-section-icon { font-size: 20px; }
.ck-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ck-form-full { grid-column: 1/-1; }
.ck-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash); margin-bottom: 8px; display: block; }
.ck-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0DAD0;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: white;
}
.ck-input:focus { border-color: var(--ink); outline: none; }
.ck-input.active { border-color: var(--ink); }
.ck-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0DAD0;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: white;
  appearance: none;
}
.pay-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.pay-method {
  border: 1.5px solid #E0DAD0;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--ash);
}
.pay-method.active { border-color: var(--ink); background: #F5F0EA; color: var(--ink); }
.pay-method-icon { font-size: 24px; display: block; margin-bottom: 6px; }
.card-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }

/* Order Summary */
.ck-summary {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #F0EBE3;
  position: sticky;
  top: 20px;
}
.ck-sum-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 24px; }
.ck-item { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.ck-item-img { width: 64px; height: 64px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.ck-item-img-a { background: linear-gradient(135deg, #FFF3DC, #FFE0A0); }
.ck-item-img-b { background: linear-gradient(135deg, #DCF0E8, #B0DFC8); }
.ck-item-img-c { background: linear-gradient(135deg, #FFE8E4, #FFCCC4); }
.ck-item-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.ck-item-meta { font-size: 11px; color: var(--smoke); }
.ck-item-price { margin-left: auto; font-size: 15px; font-weight: 700; color: var(--ink); white-space: nowrap; }

.ck-divider-line { border: none; border-top: 1px solid #F0EBE3; margin: 20px 0; }
.ck-sum-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 14px; }
.ck-sum-row.total { font-weight: 700; font-size: 17px; margin-top: 16px; }
.ck-sum-row .label { color: var(--ash); }
.ck-sum-row .value { color: var(--ink); }
.ck-sum-row .save { color: var(--success); }
.ck-coupon-row { display: flex; gap: 10px; margin-bottom: 20px; }
.ck-coupon-input { flex: 1; padding: 12px 16px; border: 1.5px dashed #E0DAD0; border-radius: 6px; font-family:'Jost',sans-serif; font-size: 13px; color: var(--ink); background: #FAFAF8; }
.ck-apply-btn { padding: 12px 20px; background: var(--ink); color: var(--saffron-light); border: none; font-family:'Jost',sans-serif; font-size: 12px; font-weight: 700; letter-spacing:0.08em; text-transform:uppercase; cursor:pointer; border-radius:4px; }
.ck-place-btn {
  width: 100%;
  padding: 18px;
  background: var(--saffron);
  color: var(--ink);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 20px;
}
.ck-secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; color: var(--smoke); margin-top: 12px; }
.ck-aff-discount {
  background: rgba(232,164,48,0.08);
  border: 1px solid rgba(232,164,48,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ck-aff-disc-text { font-size: 12px; color: var(--saffron-deep); }
.ck-aff-disc-text strong { font-weight: 700; }

/* ══════════════════════════════════════════
   SCREEN 4 — USER LOGIN
══════════════════════════════════════════ */
.user-login {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.auth-left {
  background: var(--ink);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,48,0.07) 0%, transparent 70%);
  bottom: -200px; right: -200px;
}
.auth-left-logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--cream); margin-bottom: 48px; }
.auth-left-logo span { color: var(--saffron); }
.auth-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.auth-left h2 em { font-style: italic; color: var(--saffron); }
.auth-left p { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 40px; }
.auth-perks { display: flex; flex-direction: column; gap: 18px; }
.auth-perk { display: flex; align-items: center; gap: 14px; font-size: 13px; color: #AAA; }
.auth-perk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }

.auth-right {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.auth-right h3 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.auth-right .auth-sub { font-size: 14px; color: var(--smoke); margin-bottom: 36px; }
.auth-social { display: flex; gap: 12px; margin-bottom: 28px; }
.social-btn {
  flex: 1;
  padding: 12px;
  border: 1.5px solid #E0DAD0;
  border-radius: 6px;
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ash);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.auth-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.auth-divider-line { flex: 1; height: 1px; background: #E8E2D8; }
.auth-divider-text { font-size: 12px; color: var(--smoke); letter-spacing: 0.06em; text-transform: uppercase; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 8px; }
.auth-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash); }
.auth-input {
  padding: 14px 16px;
  border: 1.5px solid #E0DAD0;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: white;
}
.auth-input.filled { border-color: var(--ink); }
.auth-forgot { font-size: 12px; color: var(--smoke); text-align: right; cursor: pointer; text-decoration: underline; }
.auth-submit {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: var(--saffron-light);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 8px;
}
.auth-switch { font-size: 13px; color: var(--smoke); text-align: center; margin-top: 20px; }
.auth-switch a { color: var(--ink); font-weight: 700; text-decoration: underline; cursor: pointer; }

/* ══════════════════════════════════════════
   SCREEN 5 — USER REGISTER
══════════════════════════════════════════ */
.user-reg {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.reg-left {
  background: linear-gradient(160deg, #F5EDD8, #E8DDCC);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.reg-left-top {}
.reg-left-logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 40px; }
.reg-left-logo span { color: var(--saffron-deep); }
.reg-left h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 16px; }
.reg-left h2 em { font-style: italic; color: var(--saffron-deep); }
.reg-left p { font-size: 14px; color: var(--smoke); line-height: 1.7; }
.reg-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.reg-benefit { display: flex; align-items: flex-start; gap: 14px; }
.rb-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.rb-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.rb-desc { font-size: 11px; color: var(--smoke); line-height: 1.4; }

.reg-right {
  background: var(--white);
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reg-right h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.reg-right .reg-sub { font-size: 13px; color: var(--smoke); margin-bottom: 28px; }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.reg-full { grid-column: 1/-1; }
.reg-check-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.reg-check { width: 16px; height: 16px; border: 1.5px solid #E0DAD0; border-radius: 3px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.reg-check.checked { background: var(--ink); border-color: var(--ink); color: white; font-size: 10px; }
.reg-check-text { font-size: 12px; color: var(--smoke); line-height: 1.5; }
.reg-check-text a { color: var(--ink); font-weight: 600; }
.reg-submit {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: var(--saffron);
  color: var(--ink);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}
.reg-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.reg-prog-step { flex: 1; height: 4px; border-radius: 100px; }
.reg-prog-step.done { background: var(--saffron); }
.reg-prog-step.active { background: var(--saffron-light); }
.reg-prog-step.pending { background: #E8E2D8; }

/* ══════════════════════════════════════════
   SCREEN 6 — USER DASHBOARD
══════════════════════════════════════════ */
.user-dash {
  background: #F2EDE6;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 800px;
}
.udash-sidebar {
  background: var(--ink);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
}
.udash-logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px; }
.udash-logo-text { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); }
.udash-logo-text span { color: var(--saffron); }
.udash-user { padding: 16px 24px 24px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px; }
.udash-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--blush)); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: white; flex-shrink: 0; }
.udash-uname { font-size: 13px; font-weight: 600; color: var(--cream); }
.udash-email { font-size: 11px; color: #666; margin-top: 2px; }
.udash-nav-grp { padding: 8px 24px 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #444; margin-top: 8px; }
.udash-nav-item { display: flex; align-items: center; gap: 12px; padding: 11px 24px; font-size: 13px; font-weight: 500; color: #888; cursor: pointer; }
.udash-nav-item.active { background: rgba(232,164,48,0.08); color: var(--saffron-light); border-right: 3px solid var(--saffron); }
.udash-nav-item .ni-icon { font-size: 15px; }
.udash-nav-item .ni-badge { margin-left: auto; background: var(--blush); color: white; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 100px; }

.udash-main { padding: 36px 40px; overflow: hidden; }
.udash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.udash-greet { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--ink); }
.udash-greet em { font-style: italic; color: var(--saffron-deep); }
.udash-quick-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.uqstat {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.uqstat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.uqstat.s1::before { background: var(--saffron); }
.uqstat.s2::before { background: var(--blush); }
.uqstat.s3::before { background: var(--sage); }
.uqstat.s4::before { background: var(--teal); }
.uqstat-icon { font-size: 22px; margin-bottom: 10px; }
.uqstat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); margin-bottom: 6px; }
.uqstat-val { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--ink); }

.udash-mid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; margin-bottom: 20px; }
.udash-card { background: var(--white); border-radius: 10px; padding: 24px; border: 1px solid rgba(0,0,0,0.04); }
.udash-card-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.order-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid #F5F0EA; }
.order-item:last-child { border-bottom: none; }
.oi-img { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.oi-img-a { background: linear-gradient(135deg, #FFF3DC, #FFE0A0); }
.oi-img-b { background: linear-gradient(135deg, #DCF0E8, #B0DFC8); }
.oi-img-c { background: linear-gradient(135deg, #FFE8E4, #FFCCC4); }
.oi-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.oi-meta { font-size: 11px; color: var(--smoke); margin-top: 2px; }
.oi-price { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--ink); }
.oi-status { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.oi-status.shipped { background: rgba(74,138,90,0.1); color: var(--success); }
.oi-status.processing { background: rgba(232,164,48,0.1); color: var(--saffron-deep); }
.oi-status.delivered { background: rgba(90,122,92,0.1); color: var(--sage); }

.wishlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wl-item { background: var(--pearl); border-radius: 8px; padding: 12px; display: flex; align-items: center; gap: 10px; }
.wl-img { width: 44px; height: 44px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.wl-img-a { background: linear-gradient(135deg, #FFF3DC, #FFE0A0); }
.wl-img-b { background: linear-gradient(135deg, #F0E8FF, #DDD0FF); }
.wl-img-c { background: linear-gradient(135deg, #DCF0E8, #B0DFC8); }
.wl-img-d { background: linear-gradient(135deg, #FFE8E4, #FFCCC4); }
.wl-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.wl-price { font-size: 13px; font-weight: 700; color: var(--saffron-deep); }

.udash-aff-promo {
  background: var(--ink);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.udash-aff-promo::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,48,0.1) 0%, transparent 70%);
  right: -50px; bottom: -100px;
}
.udash-aff-text h4 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--cream); margin-bottom: 6px; }
.udash-aff-text h4 em { color: var(--saffron); font-style: italic; }
.udash-aff-text p { font-size: 12px; color: #888; }
.udash-aff-btn { background: var(--saffron); color: var(--ink); border: none; padding: 12px 24px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 4px; white-space: nowrap; position: relative; z-index: 1; }

.udash-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.addr-card { background: var(--pearl); border-radius: 8px; padding: 16px; border: 1px dashed #D8D0C4; }
.addr-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); margin-bottom: 8px; }
.addr-text { font-size: 13px; color: var(--ash); line-height: 1.6; }

/* ══════════════════════════════════════════
   SCREEN 7 — AFFILIATE PROGRAMME PAGE
══════════════════════════════════════════ */
.aff-prog { background: var(--ink); color: var(--cream); }

.aff-prog-hero {
  padding: 80px 64px 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #222;
}
.aff-prog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,164,48,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.aff-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,164,48,0.1); border: 1px solid rgba(232,164,48,0.25); color: var(--saffron); padding: 7px 18px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px; }
.aff-prog-h1 { font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 400; line-height: 1.0; margin-bottom: 24px; }
.aff-prog-h1 em { font-style: italic; color: var(--saffron); }
.aff-prog-desc { font-size: 15px; color: #888; line-height: 1.75; max-width: 440px; margin-bottom: 44px; }
.aff-prog-ctas { display: flex; gap: 14px; }
.btn-aff-primary { background: var(--saffron); color: var(--ink); border: none; padding: 16px 40px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 2px; }
.btn-aff-ghost { background: transparent; color: #AAA; border: 1px solid rgba(255,255,255,0.15); padding: 16px 32px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; }

.aff-prog-stats { display: flex; gap: 48px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); }
.ap-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--saffron); }
.ap-stat-lbl { font-size: 11px; color: #666; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.aff-earn-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.aec-top { text-align: center; margin-bottom: 8px; }
.aec-pct { font-family: 'Bebas Neue', sans-serif; font-size: 96px; color: var(--saffron); line-height: 1; }
.aec-sub { font-size: 14px; color: #888; }
.aec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.aec-item { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 16px; text-align: center; }
.aec-item-icon { font-size: 24px; margin-bottom: 8px; }
.aec-item-val { font-size: 16px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.aec-item-lbl { font-size: 11px; color: #666; }

.aff-how {
  padding: 72px 64px;
  background: #161616;
  border-bottom: 1px solid #222;
}
.aff-sec-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); text-align: center; margin-bottom: 12px; }
.aff-sec-title { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 400; color: var(--cream); text-align: center; margin-bottom: 56px; }
.aff-sec-title em { font-style: italic; }
.how-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,164,48,0.4), transparent);
}
.how-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.hs-circle { width: 72px; height: 72px; border-radius: 50%; background: #1C1C1C; border: 2px solid var(--saffron); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; }
.hs-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--saffron); letter-spacing: 0.06em; margin-bottom: 6px; }
.hs-title { font-size: 13px; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.hs-desc { font-size: 11px; color: #666; line-height: 1.5; }

.aff-tiers {
  padding: 72px 64px;
  background: var(--ink);
}
.aff-tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.aff-tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.aff-tier.featured {
  background: rgba(232,164,48,0.06);
  border-color: rgba(232,164,48,0.3);
}
.aff-tier.featured::after { content: 'POPULAR'; position: absolute; top: 16px; right: 16px; background: var(--saffron); color: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 2px; }
.at-tier-name { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--saffron); margin-bottom: 6px; }
.at-range { font-size: 12px; color: #666; margin-bottom: 24px; }
.at-pct { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--cream); line-height: 1; }
.at-pct-suf { font-size: 32px; }
.at-pct-lbl { font-size: 12px; color: #666; margin-bottom: 28px; }
.at-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.at-perk { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #888; }
.at-perk::before { content: '✓'; color: var(--saffron); font-weight: 700; flex-shrink: 0; }
.at-btn { width: 100%; padding: 14px; border-radius: 4px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.at-btn-outline { background: transparent; border: 1px solid rgba(232,164,48,0.3); color: var(--saffron-light); }
.at-btn-filled { background: var(--saffron); border: none; color: var(--ink); }

/* ══════════════════════════════════════════
   SCREEN 8 — AFFILIATE LOGIN
══════════════════════════════════════════ */
.aff-login {
  background: #0F0F0F;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.aff-auth-left {
  background: linear-gradient(160deg, #1A1A1A 0%, #111 100%);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #222;
}
.aff-auth-left::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,164,48,0.05) 0%, transparent 70%);
  top: -150px; right: -150px;
}
.aff-auth-left::after {
  content: '15%';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 240px;
  color: rgba(232,164,48,0.03);
  bottom: -20px;
  right: -20px;
}
.aff-auth-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--cream); margin-bottom: 48px; }
.aff-auth-logo span { color: var(--saffron); }
.aff-auth-logo sub { font-size: 13px; color: #555; font-family: 'Jost', sans-serif; font-weight: 400; display: block; margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
.aff-auth-left h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 20px; }
.aff-auth-left h2 em { font-style: italic; color: var(--saffron); }
.aff-auth-left p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 36px; }
.aff-stats-mini { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.asm-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 16px; text-align: center; }
.asm-val { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--saffron); }
.asm-lbl { font-size: 10px; color: #555; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

.aff-auth-right {
  background: #141414;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aff-auth-right h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.aff-auth-right .aff-auth-sub { font-size: 13px; color: #666; margin-bottom: 36px; }
.aff-form { display: flex; flex-direction: column; gap: 16px; }
.aff-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #777; margin-bottom: 8px; display: block; }
.aff-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #2A2A2A;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--cream);
  background: #1C1C1C;
}
.aff-input.filled { border-color: var(--saffron); }
.aff-input-row { display: flex; gap: 12px; }
.aff-submit {
  width: 100%;
  padding: 16px;
  background: var(--saffron);
  color: var(--ink);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 4px;
}
.aff-forgot { font-size: 12px; color: #555; text-align: right; cursor: pointer; text-decoration: underline; }
.aff-switch { font-size: 13px; color: #666; text-align: center; margin-top: 20px; }
.aff-switch a { color: var(--saffron-light); font-weight: 700; cursor: pointer; }

/* ══════════════════════════════════════════
   SCREEN 9 — AFFILIATE REGISTER
══════════════════════════════════════════ */
.auth-wrap { flex: 1; display: flex; align-items: center; justify-content: center;}
.aff-reg {
  background: #0F0F0F;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.aff-reg-left {
  background: var(--saffron);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.aff-reg-left::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  bottom: -150px; right: -150px;
}
.aff-reg-left::after {
  content: 'EARN';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(0,0,0,0.07);
  bottom: 30px; right: -10px;
}
.arl-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--ink); }
.arl-badge { background: var(--ink); color: var(--saffron); padding: 4px 12px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; display: inline-block; margin-top: 6px; }
.arl-h2 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--ink); line-height: 1.05; margin-bottom: 20px; }
.arl-desc { font-size: 15px; color: rgba(0,0,0,0.6); line-height: 1.7; }
.arl-features { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.arf { display: flex; align-items: center; gap: 14px; }
.arf-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.arf-text { font-size: 14px; font-weight: 600; color: var(--ink); }

.aff-reg-right {
  background: #141414;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aff-reg-right h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.aff-reg-sub { font-size: 13px; color: #666; margin-bottom: 28px; }
.aff-reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.aff-reg-full { grid-column: 1/-1; }
.aff-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #2A2A2A;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--cream);
  background: #1C1C1C;
  appearance: none;
}
.aff-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #2A2A2A;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--cream);
  background: #1C1C1C;
  resize: none;
  height: 80px;
  line-height: 1.5;
}
.aff-reg-submit { width: 100%; padding: 16px; background: var(--saffron); color: var(--ink); border: none; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 4px; margin-top: 16px; }
.aff-reg-note { font-size: 11px; color: #555; text-align: center; margin-top: 12px; line-height: 1.5; }
.aff-reg-note a { color: #888; }

/* ══════════════════════════════════════════
   SCREEN 10 — AFFILIATE DASHBOARD
══════════════════════════════════════════ */
.aff-dash {
  background: #131313;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 900px;
}
.adash-sidebar {
  background: #0D0D0D;
  border-right: 1px solid #1E1E1E;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
}
.adash-logo { padding: 0 24px 24px; border-bottom: 1px solid #1E1E1E; margin-bottom: 16px; }
.adash-logo-text { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); }
.adash-logo-text span { color: var(--saffron); }
.adash-logo-sub { font-size: 9px; color: #444; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 3px; }
.adash-user { padding: 16px 24px 20px; border-bottom: 1px solid #1E1E1E; margin-bottom: 12px; }
.adash-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.adash-uname { font-size: 14px; font-weight: 600; color: var(--cream); }
.adash-tier { display: inline-flex; align-items: center; gap: 5px; background: rgba(232,164,48,0.1); border: 1px solid rgba(232,164,48,0.25); color: var(--saffron); padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; margin-top: 6px; }
.adash-nav-grp { padding: 8px 24px 4px; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #333; margin-top: 8px; }
.adash-nav-item { display: flex; align-items: center; gap: 12px; padding: 12px 24px; font-size: 13px; font-weight: 500; color: #555; cursor: pointer; border-left: 3px solid transparent; }
.adash-nav-item.active { background: rgba(232,164,48,0.06); color: var(--saffron-light); border-left-color: var(--saffron); }
.adash-nav-item .adn-icon { font-size: 15px; }
.adash-nav-item .adn-badge { margin-left: auto; background: var(--blush); color: white; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 100px; }

.adash-tier-box { margin: 16px 16px 0; background: rgba(232,164,48,0.06); border: 1px solid rgba(232,164,48,0.15); border-radius: 10px; padding: 16px; }
.atb-label { font-size: 11px; font-weight: 700; color: var(--saffron); margin-bottom: 6px; }
.atb-desc { font-size: 11px; color: #666; margin-bottom: 10px; line-height: 1.4; }
.atb-bar-bg { background: #222; border-radius: 100px; height: 5px; overflow: hidden; }
.atb-bar-fill { background: var(--saffron); height: 100%; border-radius: 100px; }

.adash-main { padding: 36px 40px; overflow: hidden; }
.adash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.adash-greet { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: var(--cream); }
.adash-greet em { font-style: italic; color: var(--saffron); }
.adash-greet-sub { font-size: 12px; color: #555; margin-top: 4px; }
.adash-actions { display: flex; gap: 10px; }
.adash-btn { padding: 10px 20px; border-radius: 4px; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: none; }
.adash-btn.primary { background: var(--saffron); color: var(--ink); }
.adash-btn.secondary { background: #1E1E1E; color: #AAA; border: 1px solid #2A2A2A; }

.adash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.adash-stat { background: #1A1A1A; border-radius: 10px; padding: 24px 20px; border: 1px solid #222; position: relative; overflow: hidden; }
.adash-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.adash-stat.g1::before { background: var(--saffron); }
.adash-stat.g2::before { background: var(--blush); }
.adash-stat.g3::before { background: var(--sage-light); }
.adash-stat.g4::before { background: var(--teal); }
.adash-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #555; margin-bottom: 10px; }
.adash-stat-val { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.adash-stat-val .currency { font-size: 20px; }
.adash-stat-change { font-size: 12px; display: flex; align-items: center; gap: 4px; }
.adash-stat-change.up { color: #5ABB7A; }
.adash-stat-icon { position: absolute; top: 20px; right: 20px; font-size: 20px; opacity: 0.07; }

.adash-mid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 20px; }
.adash-card { background: #1A1A1A; border-radius: 10px; padding: 24px; border: 1px solid #222; }
.adash-card-title { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.adash-chart-tabs { display: flex; gap: 6px; }
.adash-chart-tab { padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; cursor: pointer; border: none; }
.adash-chart-tab.active { background: var(--saffron); color: var(--ink); }
.adash-chart-tab:not(.active) { background: #2A2A2A; color: #666; }

.adash-bars { display: flex; align-items: flex-end; gap: 10px; height: 160px; padding: 0 4px; }
.adash-bar-g { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.adash-bar-set { display: flex; gap: 3px; align-items: flex-end; width: 100%; }
.adash-bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 6px; }
.adash-bar.earn { background: var(--saffron); }
.adash-bar.click { background: #2A2A2A; }
.adash-bar-lbl { font-size: 9px; color: #555; }
.adash-legend { display: flex; gap: 16px; margin-top: 12px; }
.adash-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #666; }
.adash-legend-dot { width: 8px; height: 8px; border-radius: 2px; }
.adash-legend-dot.earn { background: var(--saffron); }
.adash-legend-dot.click { background: #2A2A2A; border: 1px solid #333; }

.aff-link-box {
  background: #111;
  border: 1.5px dashed rgba(232,164,48,0.3);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}
.alb-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #555; margin-bottom: 6px; }
.alb-url { font-size: 11px; color: #555; font-family: monospace; margin-bottom: 8px; word-break: break-all; }
.alb-code { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--saffron); letter-spacing: 0.04em; }
.alb-copy { display: block; width: 100%; margin-top: 12px; padding: 10px; background: var(--saffron); color: var(--ink); border: none; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 4px; text-align: center; }
.alb-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.alb-mini-stat { background: #161616; border-radius: 6px; padding: 12px; }
.alb-ms-val { font-size: 20px; font-weight: 700; color: var(--cream); }
.alb-ms-lbl { font-size: 10px; color: #555; }

.adash-table-card { background: #1A1A1A; border-radius: 10px; padding: 24px; border: 1px solid #222; margin-bottom: 20px; }
.adash-table { width: 100%; border-collapse: collapse; }
.adash-table th { text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #555; padding: 0 12px 14px; border-bottom: 1px solid #222; }
.adash-table td { padding: 14px 12px; font-size: 13px; border-bottom: 1px solid #1E1E1E; color: #AAA; }
.adash-table tr:last-child td { border-bottom: none; }
.adash-table .earn-amt { font-weight: 700; color: #5ABB7A; }
.adash-table .prod-icon { width: 36px; height: 36px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; margin-right: 10px; vertical-align: middle; }
.adash-table .prod-icon-a { background: rgba(255,243,220,0.1); }
.adash-table .prod-icon-b { background: rgba(220,240,232,0.1); }
.adash-table .prod-icon-c { background: rgba(255,232,228,0.1); }
.adash-table .prod-icon-d { background: rgba(240,232,255,0.1); }
.adash-table .prod-icon-e { background: rgba(220,240,232,0.1); }

.adash-status { padding: 4px 12px; border-radius: 100px; font-size: 10px; font-weight: 700; }
.adash-status.paid { background: rgba(90,187,122,0.1); color: #5ABB7A; }
.adash-status.pending { background: rgba(232,164,48,0.1); color: var(--saffron); }
.adash-status.processing { background: rgba(196,117,106,0.1); color: var(--blush-light); }

.adash-perf { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.adash-perf-card { background: #1A1A1A; border-radius: 10px; padding: 20px; border: 1px solid #222; }
.adash-perf-title { font-size: 12px; font-weight: 600; color: #888; margin-bottom: 16px; }
.adash-prog-row { display: flex; justify-content: space-between; font-size: 11px; color: #888; margin-bottom: 6px; }
.adash-prog-bg { background: #222; border-radius: 100px; height: 6px; margin-bottom: 14px; overflow: hidden; }
.adash-prog-fill { height: 100%; border-radius: 100px; }
.adash-prog-fill.saffron { background: var(--saffron); }
.adash-prog-fill.blush { background: var(--blush-light); }
.adash-prog-fill.sage { background: var(--sage-light); }
.adash-prog-fill.teal { background: var(--teal); }


/* ══════════════════════════════════════════════════════
   bornberry — HOVER EFFECTS LAYER
   Appended to the unified design system stylesheet.
   Covers all 10 screens. Uses only existing CSS vars.
══════════════════════════════════════════════════════ */

/* ── Global transition foundation ────────────────────── */
a, button, [class*="btn"], [class*="-link"], [class*="nav-item"],
[class*="nav-link"], [class*="cat-pill"], [class*="pay-method"],
[class*="pdp-var"], [class*="pdp-tab"], [class*="pdp-thumb"],
[class*="tier"], [class*="adash-chart-tab"], [class*="social-btn"],
[class*="order-item"], [class*="wl-item"], [class*="pc"],
[class*="faq"], [class*="how-step"], [class*="aff-tier"],
[class*="asm-item"], [class*="aec-item"], [class*="adash-stat"],
[class*="uqstat"], [class*="ck-item"], .alb-copy, .alb-mini-stat {
  transition: all 0.2s ease;
}

/* ══════════════════════════════════════════
   SHARED NAV
══════════════════════════════════════════ */
.vnav-link:hover {
  color: var(--ink);
}
.vnav-link:not(.active):hover {
  color: var(--ash);
  border-bottom: 2px solid rgba(232,164,48,0.4);
  padding-bottom: 2px;
}
.vnav-icon:hover {
  color: var(--ink);
  transform: scale(1.12);
}
.vnav-btn:hover {
  background: var(--ash);
  color: var(--saffron);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.vnav-btn:active { transform: translateY(0); box-shadow: none; }

/* ══════════════════════════════════════════
   SCREEN 1 — HOMEPAGE
══════════════════════════════════════════ */

/* Primary saffron button */
.btn-saffron:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,164,48,0.3);
}
.btn-saffron:active { transform: translateY(0); box-shadow: none; }

/* Ghost white outline button */
.btn-outline-w:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-w:active { transform: translateY(0); }

/* Category pills */
.cat-pill:not(.active):hover {
  background: var(--ink);
  /*border-color: rgba(232,164,48,0.35);*/
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.cat-pill:not(.active):hover .cp-name { color: var(--white); }
.cat-pill.active:hover {
  background: var(--ash);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.cat-pill .img-fluid {
    margin-bottom: 10px;
    height: 300px;
    width: 100%;
    object-fit: cover;
        border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Product cards */
.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(232,164,48,0.2);
}
.pc:hover .pc-name { color: var(--saffron-deep); }

/* Add to cart button */
.add-to-cart:hover {
  background: var(--ash);
  color: var(--saffron-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.add-to-cart:active { transform: translateY(0); box-shadow: none; }

/* Footer links */
.footer-link:hover {
  color: var(--saffron-light);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════
   SCREEN 2 — PRODUCT DETAIL
══════════════════════════════════════════ */
.pdp-thumb:not(.active):hover {
  border-color: rgba(232,164,48,0.5);
  background: rgba(255,255,255,0.85);
  transform: scale(1.06);
}
.pdp-var:not(.active):hover {
  border-color: var(--ash);
  color: var(--ink);
  background: var(--pearl);
}
.pdp-tab:not(.active):hover {
  color: var(--ash);
  border-bottom-color: rgba(232,164,48,0.3);
}
.btn-atc:hover {
  background: var(--ash);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.btn-atc:active { transform: translateY(0); box-shadow: none; }
.btn-buy:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,164,48,0.3);
}
.btn-buy:active { transform: translateY(0); box-shadow: none; }
.btn-wish:hover {
  border-color: var(--blush);
  color: var(--blush);
  transform: scale(1.08);
}
.pdp-ing-chip:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ══════════════════════════════════════════
   SCREEN 3 — CHECKOUT
══════════════════════════════════════════ */
.pay-method:not(.active):hover {
  border-color: var(--ash);
  background: var(--pearl);
  color: var(--ink);
  transform: translateY(-2px);
}
.ck-apply-btn:hover {
  background: var(--ash);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ck-apply-btn:active { transform: translateY(0); box-shadow: none; }
.ck-place-btn:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,164,48,0.3);
}
.ck-place-btn:active { transform: translateY(0); box-shadow: none; }
.ck-item:hover {
  background: var(--pearl);
  border-radius: 8px;
  padding-left: 8px;
}

/* ══════════════════════════════════════════
   SCREEN 4 — USER LOGIN
══════════════════════════════════════════ */
.social-btn:hover {
  border-color: var(--ash);
  background: var(--pearl);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.auth-submit:hover {
  background: var(--ash);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.auth-submit:active { transform: translateY(0); box-shadow: none; }
.auth-forgot:hover { color: var(--ink); }
.auth-switch a:hover { color: var(--saffron-deep); }
.auth-perk:hover { color: var(--cream); }
.auth-perk:hover .auth-perk-dot { transform: scale(1.3); }

/* ══════════════════════════════════════════
   SCREEN 5 — USER REGISTER
══════════════════════════════════════════ */
.reg-submit:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,164,48,0.3);
}
.reg-submit:active { transform: translateY(0); box-shadow: none; }
.reg-benefit:hover .rb-icon {
  background: rgba(232,164,48,0.12);
  transform: scale(1.08);
}
.reg-check-text a:hover { color: var(--saffron-deep); }

/* ══════════════════════════════════════════
   SCREEN 6 — USER DASHBOARD
══════════════════════════════════════════ */
.udash-nav-item:not(.active):hover {
  background: rgba(255,255,255,0.04);
  color: var(--mist);
  padding-left: 28px;
}
.uqstat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.order-item:hover {
  background: var(--pearl);
  border-radius: 8px;
  padding-left: 8px;
}
.order-item:hover .oi-name { color: var(--saffron-deep); }
.wl-item:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
}
.wl-item:hover .wl-name { color: var(--saffron-deep); }
.udash-aff-btn:hover {
  background: var(--saffron-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,164,48,0.3);
}
.udash-aff-btn:active { transform: translateY(0); box-shadow: none; }
.addr-card:hover {
  border-color: rgba(232,164,48,0.3);
  background: var(--white);
}

/* ══════════════════════════════════════════
   SCREEN 7 — AFFILIATE PROGRAMME PAGE
══════════════════════════════════════════ */
.btn-aff-primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,164,48,0.35);
}
.btn-aff-primary:active { transform: translateY(0); box-shadow: none; }
.btn-aff-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--cream);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.btn-aff-ghost:active { transform: translateY(0); }
.how-step:hover .hs-circle {
  background: rgba(232,164,48,0.1);
  box-shadow: 0 0 0 6px rgba(232,164,48,0.08);
  transform: scale(1.06);
}
.how-step:hover .hs-title { color: var(--saffron-light); }
.aff-tier:not(.featured):hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.aff-tier.featured:hover {
  border-color: rgba(232,164,48,0.5);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232,164,48,0.12);
}
.at-btn-outline:hover {
  background: rgba(232,164,48,0.1);
  border-color: rgba(232,164,48,0.5);
  color: var(--saffron);
  transform: translateY(-1px);
}
.at-btn-filled:hover {
  background: var(--saffron-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,164,48,0.3);
}
.at-btn-filled:active,
.at-btn-outline:active { transform: translateY(0); box-shadow: none; }
.aec-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SCREEN 8 — AFFILIATE LOGIN
══════════════════════════════════════════ */
.aff-submit:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,164,48,0.3);
}
.aff-submit:active { transform: translateY(0); box-shadow: none; }
.aff-forgot:hover { color: var(--saffron-light); }
.aff-switch a:hover { color: var(--saffron); }
.asm-item:hover {
  border-color: rgba(232,164,48,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.asm-item:hover .asm-val { color: var(--saffron-light); }

/* ══════════════════════════════════════════
   SCREEN 9 — AFFILIATE REGISTER
══════════════════════════════════════════ */
.aff-reg-submit:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,164,48,0.3);
}
.aff-reg-submit:active { transform: translateY(0); box-shadow: none; }
.arf:hover .arf-dot {
  transform: scale(1.4);
  background: var(--saffron-deep);
}
.arf:hover .arf-text { color: var(--saffron-deep); }
.aff-reg-note a:hover { color: var(--saffron-deep); }

/* ══════════════════════════════════════════
   SCREEN 10 — AFFILIATE DASHBOARD
══════════════════════════════════════════ */
.adash-nav-item:not(.active):hover {
  background: rgba(255,255,255,0.03);
  color: #888;
  border-left-color: rgba(232,164,48,0.3);
  padding-left: 28px;
}
.adash-btn.primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,164,48,0.25);
}
.adash-btn.secondary:hover {
  background: #2A2A2A;
  color: var(--mist);
  border-color: #444;
  transform: translateY(-1px);
}
.adash-btn:active { transform: translateY(0); box-shadow: none; }
.adash-stat:hover {
  border-color: #2A2A2A;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.adash-stat:hover .adash-stat-val { color: var(--saffron-light); }
.adash-chart-tab:not(.active):hover {
  background: #333;
  color: #AAA;
}
.adash-chart-tab.active:hover {
  background: var(--saffron-deep);
}
.adash-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
  color: var(--mist);
}
.adash-table tbody tr:hover td:first-child { color: var(--cream); }
.adash-perf-card:hover {
  border-color: #2A2A2A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.aff-link-box:hover {
  border-color: rgba(232,164,48,0.5);
  background: #161616;
}
.alb-copy:hover {
  background: var(--saffron-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,164,48,0.25);
}
.alb-copy:active { transform: translateY(0); box-shadow: none; }
.alb-mini-stat:hover {
  background: #1C1C1C;
  transform: translateY(-1px);
}
.alb-mini-stat:hover .alb-ms-val { color: var(--saffron-light); }
.adash-card:hover {
  border-color: #2A2A2A;
}
.adash-tier-box:hover {
  border-color: rgba(232,164,48,0.3);
  background: rgba(232,164,48,0.08);
}