/* ============================================================
   TARI DESIGNS — DEMO STYLESHEET
   Design tokens + components + mobile-first responsive
   Built by Intellium Inc. for client demo.
============================================================ */

:root {
  /* Brand */
  --c-primary: #2a2548;          /* Shweshwe indigo */
  --c-primary-dark: #1a1730;
  --c-accent: #c25d3c;           /* Burnt sienna / African ochre */
  --c-accent-dark: #9d4830;

  /* Neutrals */
  --c-cream: #fbf8f3;
  --c-cream-2: #f3eee5;
  --c-white: #ffffff;
  --c-ink: #1a1a1a;
  --c-ink-2: #4a4a4a;
  --c-muted: #6e6e6e;
  --c-border: #e8e2d6;
  --c-border-2: #d8d0c0;

  /* Status */
  --c-success: #2a7a4a;
  --c-sale: #b1392d;

  /* Type */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  /* Shadow */
  --sh-1: 0 2px 8px rgba(0,0,0,0.06);
  --sh-2: 0 8px 24px rgba(0,0,0,0.08);
  --sh-3: 0 16px 48px rgba(0,0,0,0.12);

  /* Layout */
  --container: 1280px;
  --header-h: 64px;
  --announce-h: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-4); }
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce {
  background: var(--c-primary);
  color: var(--c-cream);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 60;
}
.announce__track { display: flex; gap: var(--s-7); animation: scroll 30s linear infinite; white-space: nowrap; }
.announce__track > span { display: inline-flex; align-items: center; gap: var(--s-2); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (min-width: 768px) {
  .announce__track { animation: none; gap: var(--s-8); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}
.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
}
.header__brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-primary);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.header__brand span {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
}
.header__nav { display: none; }
@media (min-width: 980px) {
  .header__nav { display: flex; gap: var(--s-6); justify-self: center; }
  .header__nav a { font-size: 14px; font-weight: 500; padding: var(--s-2) 0; position: relative; }
  .header__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
  .header__nav a:hover::after { transform: scaleX(1); }
}
.header__icons { display: flex; align-items: center; gap: var(--s-2); height: 100%; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: background .2s;
}
.icon-btn:hover { background: var(--c-cream-2); }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.7; }
.cart-count {
  position: absolute;
  top: 6px; right: 4px;
  background: var(--c-accent);
  color: white;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.menu-btn { display: inline-flex; }
@media (min-width: 980px) { .menu-btn { display: none; } }

/* ===== MOBILE MENU DRAWER ===== */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--c-cream);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer--right .drawer__panel { left: auto; right: 0; transform: translateX(100%); width: min(420px, 95vw); }
.drawer.open.drawer--right .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-display);
  font-size: 18px;
}
.drawer__close { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.drawer__body { flex: 1; overflow-y: auto; padding: var(--s-4) var(--s-5); }
.drawer__foot { padding: var(--s-4) var(--s-5); border-top: 1px solid var(--c-border); background: var(--c-white); }
.drawer__nav a {
  display: block;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 16px;
}
.drawer__nav a:last-child { border-bottom: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all .2s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--c-primary); color: var(--c-cream); }
.btn--primary:hover { background: var(--c-primary-dark); }
.btn--accent { background: var(--c-accent); color: white; }
.btn--accent:hover { background: var(--c-accent-dark); }
.btn--outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline:hover { background: var(--c-primary); color: var(--c-cream); }
.btn--ghost { background: transparent; color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-cream-2); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(420px, 60vh, 540px);
  color: white;
  background: var(--c-primary);
}
@media (min-width: 880px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: clamp(440px, 62vh, 560px); }
}
.hero__content {
  background: var(--c-primary);
  display: flex;
  align-items: center;
  padding: var(--s-6) var(--s-5);
  position: relative;
  overflow: hidden;
  order: 2;
}
.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(194,93,60,0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
@media (min-width: 880px) {
  .hero__content {
    padding: var(--s-7) clamp(40px, 5vw, 80px);
    order: 1;
  }
}
.hero__inner {
  max-width: 520px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  order: 1;
  background: var(--c-cream-2);
}
@media (min-width: 880px) {
  .hero__media { min-height: auto; order: 2; }
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; }
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.hero-dot.active {
  background: white;
  width: 28px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin-bottom: var(--s-3);
  color: white;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  color: white;
  font-weight: 500;
  display: block;
  margin-top: 4px;
  opacity: 0.95;
}
.hero p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  margin-bottom: var(--s-5);
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  padding: var(--s-5) 0;
}
@media (min-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: var(--s-3); font-size: 13px; }
.trust-item svg { width: 24px; height: 24px; color: var(--c-accent); flex: none; }
.trust-item strong { display: block; font-weight: 600; font-size: 13px; }
.trust-item span { color: var(--c-muted); font-size: 12px; }

/* ===== SECTIONS ===== */
.section { padding: var(--s-8) 0; }
.section--tight { padding: var(--s-7) 0; }
.section--alt { background: var(--c-cream-2); }
.section__head { text-align: center; margin-bottom: var(--s-6); }
.section__head .eyebrow { display: block; margin-bottom: var(--s-2); }
.section__head p { color: var(--c-muted); max-width: 600px; margin: var(--s-3) auto 0; }
.section__cta { text-align: center; margin-top: var(--s-6); }

/* ===== CATEGORY TILES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); } }
@media (min-width: 980px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .cat-grid--5 { grid-template-columns: repeat(5, 1fr); } }
.cat-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--s-5);
  color: white;
  background-size: cover;
  background-position: center;
  transition: transform .3s;
}
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.cat-tile__label {
  position: relative; z-index: 2;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.cat-tile__label::after {
  content: "→";
  display: inline-block;
  margin-left: var(--s-2);
  transition: transform .25s;
}
.cat-tile:hover .cat-tile__label::after { transform: translateX(4px); }

/* ===== PRODUCT GRID ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 768px) { .prod-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
@media (min-width: 1100px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }

.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.prod-card__media {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--c-cream-2);
}
.prod-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.prod-card:hover .prod-card__media img { transform: scale(1.04); }
.prod-card__badges {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  display: flex; flex-direction: column; gap: var(--s-1);
}
.badge {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--c-primary);
  color: white;
}
.badge--accent { background: var(--c-accent); }
.badge--cream { background: var(--c-cream); color: var(--c-ink); }
.prod-card__quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--c-primary);
  color: var(--c-cream);
  padding: var(--s-3);
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .25s ease;
  cursor: pointer;
  border: 0;
  width: 100%;
}
.prod-card:hover .prod-card__quick { transform: translateY(0); }
.prod-card__body { padding: var(--s-3) var(--s-3) var(--s-4); }
.prod-card__title {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--s-1);
  color: var(--c-ink);
}
.prod-card__cat { font-size: 11px; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.prod-card__price { font-size: 15px; font-weight: 600; color: var(--c-primary); }
.prod-card__rating { display: flex; align-items: center; gap: 4px; margin-top: 4px; font-size: 12px; color: var(--c-muted); }
.stars { color: var(--c-accent); letter-spacing: 1px; }

/* ===== TESTIMONIALS / REVIEWS ===== */
.reviews-band {
  background: var(--c-primary);
  color: var(--c-cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  padding: var(--s-5);
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
}
.review-card .stars { font-size: 16px; margin-bottom: var(--s-3); display: block; }
.review-card p { font-style: italic; margin-bottom: var(--s-4); flex: 1; }
.review-card cite { font-style: normal; font-size: 13px; color: var(--c-accent); font-weight: 600; }
.review-card small { display: block; opacity: 0.7; font-size: 12px; margin-top: 2px; }

/* ===== STORY STRIP ===== */
.story {
  display: grid;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 900px) { .story { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
.story__media {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.story h2 { margin-bottom: var(--s-3); }
.story p { color: var(--c-ink-2); margin-bottom: var(--s-3); font-size: 16px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--c-primary);
  color: var(--c-cream);
  text-align: center;
}
.newsletter h2 { color: white; }
.newsletter p { opacity: 0.85; max-width: 500px; margin: var(--s-3) auto var(--s-5); }
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .newsletter__form { flex-direction: row; }
}
.newsletter__form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 0;
  background: rgba(255,255,255,0.95);
  color: var(--c-ink);
}
.newsletter__form input::placeholder { color: var(--c-muted); }
.newsletter__consent {
  font-size: 11px;
  margin-top: var(--s-3);
  opacity: 0.75;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-primary-dark);
  color: var(--c-cream);
  padding: var(--s-8) 0 var(--s-5);
}
.footer__grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-7);
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 {
  font-family: var(--f-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-4);
  color: white;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: var(--s-2); }
.footer a { font-size: 13.5px; color: rgba(255,255,255,0.78); transition: color .2s; }
.footer a:hover { color: var(--c-accent); }
.footer__brand {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  color: white;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.footer__brand span {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
}
.footer__about p { font-size: 13.5px; color: rgba(255,255,255,0.78); margin-bottom: var(--s-4); max-width: 360px; }
.footer__social { display: flex; gap: var(--s-3); }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.footer__social a:hover { background: var(--c-accent); color: white; }
.footer__social svg { width: 18px; height: 18px; }
.footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.pay-icon {
  width: 38px;
  height: auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: white;
  display: block;
}
.footer__bot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ===== SHOP PAGE ===== */
.shop-head {
  padding: var(--s-7) 0 var(--s-5);
  text-align: center;
  background: var(--c-cream-2);
}
.shop-head h1 { margin-bottom: var(--s-2); }
.shop-head p { color: var(--c-muted); max-width: 580px; margin: 0 auto; }

.shop-bar {
  position: sticky;
  top: var(--header-h);
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-border);
  z-index: 30;
  padding: var(--s-3) 0;
}
.shop-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.chip-group { display: flex; flex-wrap: wrap; gap: var(--s-2); overflow-x: auto; padding: 4px 0; }
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--c-border-2);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s;
}
.chip:hover { border-color: var(--c-primary); }
.chip.active { background: var(--c-primary); color: var(--c-cream); border-color: var(--c-primary); }
.shop-bar__sort { display: flex; align-items: center; gap: var(--s-2); font-size: 13px; }
.shop-bar__sort select { padding: 8px 12px; border-radius: var(--r-sm); border: 1px solid var(--c-border-2); background: white; }

/* ===== PRODUCT PAGE ===== */
.pdp { padding: var(--s-5) 0 var(--s-7); }
.pdp__grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pdp__grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-7); }
}
.pdp__gallery { display: flex; flex-direction: column; gap: var(--s-3); }
.pdp__main-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-cream-2);
}
.pdp__main-img img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
.pdp__thumbs button {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--c-cream-2);
  padding: 0;
  cursor: pointer;
}
.pdp__thumbs button.active { border-color: var(--c-primary); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { padding: var(--s-2); }
.pdp__breadcrumb { font-size: 12px; color: var(--c-muted); margin-bottom: var(--s-3); }
.pdp__breadcrumb a:hover { color: var(--c-accent); }
.pdp__title { margin-bottom: var(--s-2); }
.pdp__rating { display: flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-3); font-size: 13px; color: var(--c-muted); }
.pdp__price { font-size: 1.6rem; font-weight: 600; color: var(--c-primary); margin-bottom: var(--s-3); }
.pdp__shortdesc { color: var(--c-ink-2); margin-bottom: var(--s-5); font-size: 15px; }

.pdp__variant { margin-bottom: var(--s-4); }
.pdp__variant-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--s-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pdp__variant-label a { color: var(--c-accent); font-weight: 600; cursor: pointer; }
.size-grid { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.size-btn {
  min-width: 56px;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border-2);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  background: white;
  cursor: pointer;
  transition: all .2s;
}
.size-btn:hover { border-color: var(--c-primary); }
.size-btn.active { background: var(--c-primary); color: var(--c-cream); border-color: var(--c-primary); }
.size-btn.disabled { color: var(--c-muted); opacity: 0.5; text-decoration: line-through; cursor: not-allowed; }

.pdp__buy { display: flex; gap: var(--s-2); margin: var(--s-5) 0 var(--s-4); }
.qty-stepper {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--c-border-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-stepper button { padding: 0 14px; font-size: 18px; }
.qty-stepper input { width: 44px; text-align: center; border: 0; border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); }

.pdp__shipnote {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  color: var(--c-success);
  font-weight: 500;
  margin-bottom: var(--s-5);
}
.pdp__shipnote svg { width: 16px; height: 16px; }

/* Accordion */
.acc { border-top: 1px solid var(--c-border); }
.acc__item { border-bottom: 1px solid var(--c-border); }
.acc__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--s-4) 0;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.acc__icon {
  width: 16px; height: 16px;
  position: relative;
  flex: none;
}
.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; background: var(--c-ink);
  transition: transform .2s;
}
.acc__icon::after { transform: rotate(90deg); }
.acc__item.open .acc__icon::after { transform: rotate(0); }
.acc__body { display: none; padding: 0 0 var(--s-5); color: var(--c-ink-2); font-size: 14px; }
.acc__item.open .acc__body { display: block; }
.acc__body p { margin-bottom: var(--s-3); }
.acc__body ul { padding-left: var(--s-4); }
.acc__body li { margin-bottom: 4px; }

/* Sticky mobile add to cart */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--c-border);
  padding: var(--s-3) var(--s-4);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  z-index: 40;
  align-items: center;
  gap: var(--s-3);
}
.mobile-cta__price { font-weight: 700; }
.mobile-cta .btn { flex: 1; }
@media (max-width: 899px) {
  .pdp.show-mobile-cta + .mobile-cta { display: flex; }
  body.pdp-page { padding-bottom: 80px; }
}

/* ===== CART DRAWER ===== */
.cart-drawer .drawer__body { padding: 0; }
.cart-progress {
  background: var(--c-cream-2);
  padding: var(--s-3) var(--s-5);
  font-size: 12.5px;
}
.cart-progress strong { color: var(--c-success); }
.cart-progress__bar {
  height: 4px;
  background: var(--c-border);
  border-radius: 2px;
  margin-top: var(--s-2);
  overflow: hidden;
}
.cart-progress__fill { height: 100%; background: var(--c-success); width: 70%; transition: width .4s; }
.cart-items { padding: var(--s-4) var(--s-5); }
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-border);
}
.cart-item__img {
  aspect-ratio: 1;
  background: var(--c-cream-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.cart-item__name { font-size: 14px; font-weight: 500; }
.cart-item__variant { font-size: 12px; color: var(--c-muted); }
.cart-item__qty { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; font-size: 12px; }
.cart-item__qty button { padding: 2px 8px; border: 1px solid var(--c-border-2); border-radius: 4px; }
.cart-item__price { font-weight: 600; align-self: start; }
.cart-totals { padding: var(--s-4) var(--s-5); border-top: 1px solid var(--c-border); }
.cart-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.cart-row--total { font-size: 17px; font-weight: 700; padding-top: var(--s-2); border-top: 1px solid var(--c-border); margin-top: var(--s-2); }
.cart-cross-sell { padding: var(--s-4) var(--s-5); border-top: 1px solid var(--c-border); background: var(--c-cream-2); }
.cart-cross-sell h4 { font-family: var(--f-body); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--s-3); }
.cart-cross-sell__row { display: flex; gap: var(--s-3); align-items: center; }
.cart-cross-sell__row img { width: 56px; height: 56px; border-radius: var(--r-sm); object-fit: cover; }
.cart-cross-sell__info { flex: 1; }
.cart-cross-sell__info strong { display: block; font-size: 13px; }
.cart-cross-sell__info span { font-size: 12px; color: var(--c-muted); }
.cart-cross-sell__add {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  text-transform: uppercase;
  border: 1.5px solid var(--c-primary);
  padding: 6px 10px;
  border-radius: var(--r-sm);
}

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
  padding: var(--s-4);
}
.modal.open { display: flex; }
.modal__box {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-5);
  border-bottom: 1px solid var(--c-border);
}
.modal__head h3 { font-family: var(--f-display); }
.modal__body { padding: var(--s-5); }
.size-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.size-table th, .size-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--c-border); }
.size-table th { background: var(--c-cream-2); font-weight: 600; }

/* ===== INFO PAGES ===== */
.page-head {
  background: var(--c-cream-2);
  padding: var(--s-7) 0;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.page-head h1 { margin-bottom: var(--s-2); }
.page-head p { color: var(--c-muted); }
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-7) 0;
  font-size: 16px;
}
.prose h2 { margin-top: var(--s-6); margin-bottom: var(--s-3); color: var(--c-primary); font-size: 1.6rem; }
.prose h3 { margin-top: var(--s-5); margin-bottom: var(--s-2); font-size: 1.2rem; font-family: var(--f-body); font-weight: 600; }
.prose p { margin-bottom: var(--s-4); color: var(--c-ink-2); }
.prose ul, .prose ol { padding-left: var(--s-5); margin-bottom: var(--s-4); color: var(--c-ink-2); }
.prose li { margin-bottom: var(--s-2); }
.prose strong { color: var(--c-ink); }

.info-card {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
}
.info-card h3 { margin-bottom: var(--s-2); color: var(--c-primary); }

.faq-q {
  border-bottom: 1px solid var(--c-border);
  padding: var(--s-4) 0;
}
.faq-q summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: var(--s-2);
}
.faq-q summary::after {
  content: "+";
  font-size: 22px;
  color: var(--c-accent);
}
.faq-q[open] summary::after { content: "−"; }
.faq-q p { margin-top: var(--s-3); color: var(--c-ink-2); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  min-height: 480px;
  background:
    linear-gradient(120deg, rgba(42,37,72,0.82) 0%, rgba(42,37,72,0.45) 70%, rgba(42,37,72,0.25) 100%),
    url('products/ladies-tops-2.jpg') center 20%/cover;
  color: white;
  display: flex;
  align-items: center;
}
.about-hero h1 { color: white; max-width: 600px; }
.about-hero p { max-width: 560px; opacity: 0.92; margin-top: var(--s-3); }

/* ===== UTILITIES ===== */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } .hide-desktop { display: none; } }

.lock-scroll { overflow: hidden; }

/* SVG */
.svg-i { width: 18px; height: 18px; flex: none; }
