/* =====================================================
   SANDBAR — shared styles
   Beach DTC: turquoise + sand + coral + sunshine yellow
   ===================================================== */

:root {
  --teal: #0FA3B1;
  --teal-bright: #14B8C4;
  --teal-deep: #0B7E89;
  --sand: #F7EFE2;
  --sand-deep: #EFE3CE;
  --coral: #FF6B4A;
  --coral-deep: #F2502B;
  --yellow: #FFC23C;
  --ink: #0C2233;
  --ink-soft: #3C5263;
  --white: #FFFFFF;
  --line: #E7DECC;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(12, 34, 51, 0.06);
  --shadow: 0 10px 30px rgba(12, 34, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(12, 34, 51, 0.16);

  --font-display: "Fredoka", "Baloo 2", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --header-h: 68px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.35);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 107, 74, 0.42); }

.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { background: #08161f; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.3); }

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 18px; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.announce span { transition: opacity .4s ease; }
.announce .pop { color: var(--yellow); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 239, 226, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px;
}
.brand .sun {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--yellow), var(--coral));
  box-shadow: 0 0 0 3px rgba(255,194,60,0.25);
  flex: none;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2.5px; border-radius: 2px;
  background: var(--coral);
  transition: width .2s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  background: none; border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  position: relative;
  transition: background .15s ease;
}
.icon-btn:hover { background: rgba(12,34,51,0.07); }
.icon-btn svg { width: 23px; height: 23px; }
.cart-count {
  position: absolute;
  top: 4px; right: 3px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--sand);
  transform: scale(0);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.show { transform: scale(1); }
.hamburger { display: none; }

/* ---------- mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--sand);
  z-index: 80;
  padding: 24px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-nav nav a {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfe0e7;
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.footer-about { color: #9fb6c0; font-size: 15px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col a { display: block; color: #b9cdd5; font-size: 15px; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13.5px; color: #8aa3ad;
}

/* ---------- cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(12,34,51,0.45);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 90;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--sand);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 22px; }
.drawer-ship {
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ship-msg { font-size: 13.5px; font-weight: 600; margin-bottom: 9px; }
.ship-msg .pop { color: var(--coral); }
.ship-bar { height: 8px; border-radius: 999px; background: var(--sand-deep); overflow: hidden; }
.ship-bar > div { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-bright)); border-radius: 999px; transition: width .4s ease; }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.drawer-empty .big { font-size: 46px; margin-bottom: 8px; }

.line-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line-item .li-img {
  width: 78px; height: 78px; flex: none;
  background: #fff; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.line-item .li-img img { width: 88%; height: 88%; object-fit: contain; }
.li-info { flex: 1; min-width: 0; }
.li-name { font-weight: 700; font-size: 15px; }
.li-meta { font-size: 13px; color: var(--ink-soft); margin: 2px 0 8px; }
.li-row { display: flex; align-items: center; justify-content: space-between; }
.qty-ctl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.qty-ctl button { background: none; border: none; width: 30px; height: 30px; font-size: 17px; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.qty-ctl button:hover { color: var(--coral); }
.qty-ctl span { min-width: 24px; text-align: center; font-weight: 600; font-size: 14px; }
.li-price { font-weight: 700; font-size: 15px; }
.li-remove { background: none; border: none; color: var(--ink-soft); font-size: 13px; padding: 0; text-decoration: underline; }
.li-remove:hover { color: var(--coral); }

.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: #fff; }
.drawer-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.drawer-note { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; }

/* =====================================================
   PRODUCT CARD
   ===================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid.row { grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.product-grid.row .card { scroll-snap-align: start; }

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  border: 1px solid rgba(231,222,204,0.7);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-imgwrap {
  position: relative;
  background: #fff;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.card-imgwrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .3s ease, transform .4s ease;
}
.card-imgwrap .img-back {
  position: absolute; inset: 18px;
  width: auto; height: auto;
  opacity: 0;
}
.card:hover .card-imgwrap .img-front { opacity: 0; }
.card:hover .card-imgwrap .img-back { opacity: 1; transform: scale(1.03); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.card-badge.coral { background: var(--coral); }
.card-badge.yellow { background: var(--yellow); color: var(--ink); }
.card-badge.teal { background: var(--teal); }

.quick-add {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add button {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px;
  font-weight: 700; font-size: 14px;
}
.quick-add button:hover { background: var(--coral); }

.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-coll { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 4px; }
.card-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.card-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.stars { color: var(--yellow); letter-spacing: 1px; font-size: 13px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-price { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.card-colors { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- section headers ---------- */
.section { padding: 76px 0; }
.section-sm { padding: 52px 0; }
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { color: var(--ink-soft); font-size: 17px; margin-top: 10px; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.link-arrow { color: var(--teal-deep); font-weight: 700; font-size: 15.5px; white-space: nowrap; }
.link-arrow:hover { color: var(--coral); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(255,194,60,0.55) 0%, rgba(255,194,60,0) 45%),
    radial-gradient(120% 130% at 10% 110%, rgba(255,107,74,0.35) 0%, rgba(255,107,74,0) 50%),
    linear-gradient(160deg, var(--teal-bright) 0%, var(--teal) 55%, var(--teal-deep) 100%);
  color: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 96px;
}
.hero-copy h1 {
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-copy .hl { color: var(--yellow); }
.hero-copy p { font-size: clamp(17px, 2vw, 20px); max-width: 480px; color: rgba(255,255,255,0.92); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 8%;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.hero-art img { width: 100%; height: 100%; object-fit: contain; }
.hero-art .price-tag {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  font-size: 16px;
}
.hero-art .price-tag b { font-size: 22px; }
.hero-art .blob {
  position: absolute; top: -22px; right: -16px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  width: 86px; height: 86px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1.05;
  font-size: 14px;
  box-shadow: var(--shadow);
  transform: rotate(8deg);
}

/* wavy divider */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}
.wave svg { display: block; width: 100%; height: 100%; }

/* ---------- trust strip ---------- */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex; justify-content: space-between; gap: 16px 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.trust-item .ti-ico {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: var(--sand);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
}
.trust-item .ti-ico svg { width: 19px; height: 19px; }

/* =====================================================
   SHOP BY STYLE
   ===================================================== */
.style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.style-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.style-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.style-tile .st-img {
  background: #fff;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
}
.style-tile .st-img img { width: 100%; height: 100%; object-fit: contain; }
.style-tile .st-body { padding: 4px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.style-tile h3 { font-size: 23px; margin-bottom: 6px; }
.style-tile p { font-size: 14px; color: var(--ink-soft); margin: 0 0 12px; }
.style-tile .st-link { color: var(--coral); font-weight: 700; font-size: 14.5px; margin-top: auto; }

/* =====================================================
   SPOTLIGHT
   ===================================================== */
.spotlight {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
}
.spotlight .sp-img {
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 7%;
  min-height: 440px;
}
.spotlight .sp-img img { width: 100%; max-width: 460px; object-fit: contain; }
.spotlight .sp-copy { padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.spotlight .sp-copy .eyebrow { color: var(--yellow); }
.spotlight .sp-copy h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.spotlight .sp-copy p { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 440px; }
.spotlight .sp-price { font-family: var(--font-display); font-size: 30px; font-weight: 600; margin-bottom: 24px; }

/* =====================================================
   STORY BAND
   ===================================================== */
.story {
  background: var(--ink);
  color: #e8f0f3;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
}
.story .eyebrow { color: var(--yellow); }
.story h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); max-width: 720px; margin: 0 auto 18px; }
.story p { color: #b9cdd5; font-size: 18px; max-width: 600px; margin: 0 auto 26px; }

/* =====================================================
   REVIEWS
   ===================================================== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.review-card .stars { font-size: 16px; margin-bottom: 14px; }
.review-card p { font-size: 16px; margin: 0 0 18px; }
.review-card .rv-who { display: flex; align-items: center; gap: 12px; }
.review-card .rv-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--coral));
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.review-card .rv-name { font-weight: 700; font-size: 14.5px; }
.review-card .rv-meta { font-size: 12.5px; color: var(--ink-soft); }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter {
  background:
    radial-gradient(100% 140% at 0% 0%, rgba(255,194,60,0.5), rgba(255,194,60,0) 50%),
    linear-gradient(120deg, var(--coral) 0%, var(--coral-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: #fff;
}
.newsletter h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 12px; }
.newsletter p { font-size: 17px; max-width: 440px; margin: 0 auto 28px; color: rgba(255,255,255,0.94); }
.news-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.news-form input {
  flex: 1; border: none; border-radius: var(--radius-pill);
  padding: 15px 22px; font-size: 16px; font-family: inherit;
  color: var(--ink);
}
.news-form input:focus { outline: 3px solid rgba(255,255,255,0.5); }
.news-form .btn-ink { flex: none; }

/* =====================================================
   SHOP PAGE
   ===================================================== */
.page-head {
  background:
    radial-gradient(120% 140% at 90% 0%, rgba(255,194,60,0.35), rgba(255,194,60,0) 50%),
    linear-gradient(160deg, var(--teal-bright), var(--teal-deep));
  color: #fff;
  padding: 56px 0 64px;
  text-align: center;
}
.page-head h1 { font-size: clamp(38px, 5.4vw, 60px); margin-bottom: 10px; }
.page-head p { font-size: 18px; color: rgba(255,255,255,0.92); }
.breadcrumb { font-size: 14px; color: var(--ink-soft); padding: 22px 0 0; }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

.filters {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}
.chip {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 600; font-size: 15px;
  color: var(--ink);
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.shop-count { margin-left: auto; color: var(--ink-soft); font-size: 14.5px; font-weight: 600; }

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; padding: 28px 0 0; align-items: start; }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp-main {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 7%;
  box-shadow: var(--shadow-sm);
}
.pdp-main img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumb {
  width: 84px; height: 84px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  cursor: pointer;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb.active { border-color: var(--coral); }

.pdp-coll { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 8px; }
.pdp-info h1 { font-size: clamp(32px, 4.2vw, 46px); margin-bottom: 12px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.pdp-price { font-family: var(--font-display); font-size: 32px; font-weight: 600; margin-bottom: 20px; }
.pdp-blurb { font-size: 17px; color: var(--ink-soft); margin-bottom: 26px; }

.opt-label { font-weight: 700; font-size: 14px; margin-bottom: 10px; display: flex; gap: 8px; align-items: baseline; }
.opt-label .opt-val { font-weight: 500; color: var(--ink-soft); }
.color-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.color-chip {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft);
}
.size-grid { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.size-btn {
  min-width: 52px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  font-weight: 600; font-size: 15px;
  color: var(--ink);
  transition: all .12s ease;
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdp-buy { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.pdp-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-pill); background: #fff; }
.pdp-qty button { background: none; border: none; width: 44px; height: 100%; font-size: 20px; color: var(--ink); }
.pdp-qty button:hover { color: var(--coral); }
.pdp-qty span { min-width: 30px; text-align: center; font-weight: 700; }
.size-warn { color: var(--coral-deep); font-weight: 600; font-size: 14px; margin-bottom: 14px; min-height: 0; }

.pdp-desc { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 24px; }
.pdp-desc h3 { font-size: 19px; margin-bottom: 10px; }
.pdp-desc p { font-size: 16px; color: var(--ink-soft); }
.pdp-vibes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.vibe-tag {
  background: var(--sand);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--teal-deep);
}
.pdp-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.pdp-perk { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; }
.pdp-perk svg { width: 19px; height: 19px; color: var(--teal-deep); flex: none; }

/* =====================================================
   CART PAGE
   ===================================================== */
.cart-page { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; padding: 40px 0; align-items: start; }
.cart-lines { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 8px 24px; }
.cart-empty { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); text-align: center; padding: 70px 24px; }
.cart-empty .big { font-size: 56px; margin-bottom: 12px; }
.cart-empty h2 { font-size: 26px; margin-bottom: 10px; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 24px; }

.cart-line { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-line:last-child { border-bottom: none; }
.cart-line .cl-img {
  width: 110px; height: 110px; flex: none;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; padding: 8px;
}
.cart-line .cl-img img { width: 100%; height: 100%; object-fit: contain; }
.cl-info { flex: 1; min-width: 0; }
.cl-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.cl-meta { font-size: 14px; color: var(--ink-soft); margin: 4px 0 12px; }
.cl-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cl-price { font-family: var(--font-display); font-size: 20px; font-weight: 600; }

.cart-summary { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; position: sticky; top: calc(var(--header-h) + 20px); }
.cart-summary h3 { font-size: 22px; margin-bottom: 20px; }
.sum-row { display: flex; justify-content: space-between; font-size: 15.5px; margin-bottom: 12px; color: var(--ink-soft); }
.sum-row.total { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; }
.sum-ship { margin: 18px 0 22px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero { text-align: center; max-width: 760px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 18px; }
.about-hero p { font-size: 19px; color: var(--ink-soft); }
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 64px; }
.about-block.flip .ab-text { order: 2; }
.about-block .ab-img {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center; padding: 9%;
  box-shadow: var(--shadow-sm);
}
.about-block .ab-img img { width: 100%; height: 100%; object-fit: contain; }
.about-block h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.about-block p { font-size: 17px; color: var(--ink-soft); margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; text-align: center; }
.about-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 20px; }
.about-stat .num { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--coral); line-height: 1; }
.about-stat .lbl { color: var(--ink-soft); font-weight: 600; margin-top: 8px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight, .pdp, .cart-page, .about-block { grid-template-columns: 1fr; }
  .about-block.flip .ab-text { order: 0; }
  .spotlight .sp-img { min-height: 320px; }
  .spotlight .sp-copy { padding: 40px 32px; }
  .pdp-gallery, .cart-summary { position: static; }
  /* balanced 2x2 trust strip instead of an uneven 3+1 wrap */
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; justify-content: stretch; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .hamburger { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 56px; }
  .hero-copy p { max-width: 100%; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1 1 auto; min-width: 0; }
  .hero-art { width: 100%; max-width: 320px; margin: 24px auto 0; transform: rotate(-2deg); }
  .review-grid { grid-template-columns: 1fr; }
  .trust-inner { justify-content: space-between; }
  .about-stats { grid-template-columns: 1fr; }
  .newsletter, .story { padding: 44px 26px; }
  .news-form { flex-direction: column; }
  .news-form input, .news-form .btn-ink { width: 100%; }
  .section { padding: 56px 0; }
  .spotlight .sp-copy { padding: 36px 26px; }
  .spotlight .sp-img { min-height: 280px; padding: 10%; }
  .pdp { gap: 28px; }
  .cart-page { gap: 28px; }
  .about-block { gap: 28px; }
}

/* tablet / phone gutter + hero badge containment */
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  /* keep floating hero badges from being clipped by the viewport */
  .hero { overflow: visible; }
  .hero-art .blob { top: -16px; right: -6px; width: 74px; height: 74px; font-size: 13px; }
  .hero-art .price-tag { bottom: -14px; left: -6px; padding: 10px 14px; font-size: 14px; }
  .hero-art .price-tag b { font-size: 19px; }
}

@media (max-width: 460px) {
  :root { --gutter: 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .style-grid { grid-template-columns: 1fr; }
  .trust-item { font-size: 13px; }
  .card-body { padding: 12px 13px 16px; }
  .card-name { font-size: 17px; }
  .card-price { font-size: 18px; }
  .card-coll { font-size: 11px; }
  .section-head { margin-bottom: 24px; }
  .head-row { gap: 4px 16px; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* larger tap targets for cart/drawer controls on touch screens */
@media (max-width: 760px) {
  .qty-ctl button { width: 40px; height: 40px; font-size: 19px; }
  .qty-ctl span { min-width: 28px; }
  .li-remove { padding-top: 8px; padding-bottom: 8px; }
  .footer-col a { padding: 9px 0; }
}
