/* =====================================================================
   Ben's Golf — Direction B · Street / Character
   Bold, fun, youthful streetwear-meets-golf. Kakao Friends front & center.
   Self-contained design system. No frameworks.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --yellow:   #FFD23F;   /* sunny yellow */
  --green:    #2FAE5A;   /* grass green  */
  --green-dk: #178A44;
  --cobalt:   #2D5BFF;   /* cobalt pop   */
  --navy:     #10152E;   /* deep navy    */
  --ink:      #14110F;   /* near-black   */
  --cream:    #FFF7E6;   /* warm cream   */
  --cream-2:  #FBEFD3;
  --peach:    #FF9EBB;   /* Apeach pink  */
  --white:    #FFFFFF;

  --radius:   22px;
  --radius-lg: 34px;
  --shadow:   6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-lift: 10px 12px 0 var(--ink);

  --border: 3px solid var(--ink);

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --maxw: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ---------- Real-photo crop helper ----------
   Product screenshots have faint baked-in gallery chrome at the edges
   (a "상품 이미지" label, ‹ › arrows, a "1/6" counter, a small red badge).
   Wrap each photo in a .photo container (overflow:hidden) and let the img
   fill + slightly overscale so those extreme edges are cropped away. */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);      /* eat the baked-in edge chrome */
  transition: transform .3s ease;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* ---------- Direction badge ---------- */
.dir-badge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

/* =====================================================================
   Announcement ticker / marquee
   ===================================================================== */
.ticker {
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: var(--border);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  padding: 9px 0;
  animation: scroll-x 26s linear infinite;
  will-change: transform;
}
.ticker span { padding: 0 22px; }
.ticker .dot { color: var(--peach); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo .mark {
  width: 34px; height: 34px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-sm);
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 11px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s, color .15s, transform .15s;
}
.main-nav a:hover { background: var(--ink); color: var(--yellow); transform: translateY(-1px); }
.main-nav a.hot { color: var(--cobalt); }
.main-nav a.active { background: var(--yellow); }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 42px; height: 42px;
  border: var(--border);
  background: var(--white);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .12s;
  position: relative;
}
.icon-btn:hover { transform: translate(-1px,-1px); }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--cobalt);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  padding: 0 3px;
}
.nav-toggle { display: none; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border: var(--border);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--green { background: var(--green); color: var(--white); }
.btn--cobalt { background: var(--cobalt); color: var(--white); }
.btn--ink { background: var(--ink); color: var(--yellow); }
.btn--ghost { background: var(--white); }
.btn--sm { padding: 10px 18px; font-size: 13px; box-shadow: var(--shadow-sm); }
.btn--block { width: 100%; justify-content: center; }

/* =====================================================================
   Stickers / badges
   ===================================================================== */
.sticker {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: inline-block;
}
.sticker--new  { background: var(--cobalt); color: var(--white); }
.sticker--sale { background: var(--peach); color: var(--ink); }
.sticker--hot  { background: var(--yellow); color: var(--ink); }
.sticker--best { background: var(--green); color: var(--white); }

.tape {
  display: inline-block;
  background: rgba(255,210,63,0.85);
  border: 1px dashed rgba(20,17,15,.4);
  padding: 4px 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

/* Checkerboard motif */
.checker {
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(-45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--ink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--ink) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
}
.checker-strip {
  height: 16px;
  background:
    repeating-conic-gradient(var(--ink) 0% 25%, transparent 0% 50%) 50% / 20px 20px;
  background-color: var(--white);
  border-top: var(--border);
  border-bottom: var(--border);
}

/* =====================================================================
   Section headers
   ===================================================================== */
.section { padding: 68px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(30px, 5vw, 52px); }
.section-head .kicker {
  font-family: var(--font-display);
  color: var(--green-dk);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.link-arrow {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
}
.link-arrow:hover { border-color: var(--cobalt); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  background: var(--yellow);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 56px 24px 64px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(44px, 8vw, 104px);
  color: var(--ink);
}
.hero h1 .stroke {
  color: var(--yellow);
  -webkit-text-stroke: 3px var(--ink);
  text-stroke: 3px var(--ink);
}
.hero h1 .green { color: var(--green-dk); }
.hero p.lead {
  font-size: 18px;
  font-weight: 600;
  max-width: 460px;
  margin: 22px 0 28px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero__stats div strong {
  font-family: var(--font-display);
  font-size: 28px;
  display: block;
}
.hero__stats div span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* Hero character placeholder */
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  background: var(--cream);
  overflow: hidden;
}
.hero__art .checker { position: absolute; inset: 0; opacity: .06; }
/* Hero holding a real photo */
.hero__art .photo { position: absolute; inset: 0; border-radius: inherit; }
.hero__art .photo img { transform: scale(1.08); }
.char-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}
.char-ryan {
  width: 62%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 42%, #FFE27A 0 58%, var(--yellow) 58% 100%);
  border: var(--border);
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow);
}
.char-ryan::before { /* ears */
  content: "";
  position: absolute;
  top: -12%; left: 50%;
  width: 44%; height: 26%;
  transform: translateX(-50%);
  background: #C9822F;
  border: var(--border);
  border-radius: 50% 50% 40% 40%;
  z-index: -1;
}
.char-ryan .face { position: absolute; inset: 0; }
.char-ryan .eye {
  position: absolute; top: 42%;
  width: 9%; aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
}
.char-ryan .eye.l { left: 32%; }
.char-ryan .eye.r { right: 32%; }
.char-ryan .nose {
  position: absolute; top: 52%; left: 50%;
  transform: translateX(-50%);
  width: 12%; height: 8%;
  background: #7A4B1E;
  border-radius: 50%;
}
.hero__art .art-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 3;
}
.hero__art .art-tag2 {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  transform: rotate(6deg);
}

/* =====================================================================
   Product cards
   ===================================================================== */
.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translate(-3px,-4px); box-shadow: var(--shadow-lift); }
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 18px;
  border-bottom: var(--border);
}
.card__media .tags {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
  z-index: 2;
}
.card__media .fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: var(--white);
  border: var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
/* colored product blobs */
.blob {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 26px;
  border: var(--border);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  line-height: 1.1;
  padding: 10px;
  transition: transform .2s;
}
.card:hover .blob { transform: rotate(-3deg) scale(1.03); }
.blob--yellow { background: var(--yellow); }
.blob--green  { background: var(--green); color: var(--white); }
.blob--cobalt { background: var(--cobalt); color: var(--white); }
.blob--navy   { background: var(--navy); color: var(--yellow); }
.blob--peach  { background: var(--peach); }
.blob--cream  { background: var(--cream-2); }
.blob--checker { background: var(--white); position: relative; overflow: hidden; }
.blob--checker .checker { position:absolute; inset:0; opacity:.9; }
.blob--checker span { position: relative; z-index: 1; background: var(--white); padding: 6px 8px; border: 2px solid var(--ink); border-radius: 8px; }

/* Card media holding a real product photo (fills the whole square) */
.card__media--photo { padding: 0; overflow: hidden; }
.card__media--photo .photo { position: absolute; inset: 0; }
.card__media--photo .photo img { transform: scale(1.12); }
.card:hover .card__media--photo .photo img { transform: scale(1.18); }

.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--green-dk); }
.card__title { font-weight: 700; font-size: 15px; line-height: 1.25; color: var(--ink); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.card__price { font-family: var(--font-display); font-size: 20px; }
.card__add {
  border: var(--border);
  background: var(--ink);
  color: var(--yellow);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: transform .12s;
}
.card__add:hover { transform: translate(-1px,-1px); background: var(--cobalt); color: var(--white); }

/* =====================================================================
   Category tiles
   ===================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-tile {
  position: relative;
  border: var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.cat-tile:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.cat-tile h3 { font-size: 26px; }
.cat-tile .count { font-weight: 700; font-size: 13px; opacity: .8; }
.cat-tile .go { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; align-self: flex-start; }
.cat-tile--y { background: var(--yellow); }
.cat-tile--g { background: var(--green); color: var(--white); }
.cat-tile--c { background: var(--cobalt); color: var(--white); }
.cat-tile--p { background: var(--peach); }
.cat-tile .emoji { font-size: 40px; position: absolute; right: 16px; top: 14px; transform: rotate(8deg); z-index: 2; }
/* Category tile with a real product photo behind the label */
.cat-tile .photo { position: absolute; inset: 0; border-radius: inherit; z-index: 0; }
.cat-tile .photo img { transform: scale(1.12); }
.cat-tile .photo::after { content: ""; position: absolute; inset: 0; }
.cat-tile > * { position: relative; z-index: 1; }
.cat-tile .emoji, .cat-tile h3, .cat-tile .count, .cat-tile .go { text-shadow: 0 1px 0 rgba(255,255,255,.35); }
.cat-tile--y .photo::after { background: linear-gradient(180deg, rgba(255,210,63,.15) 0%, rgba(255,210,63,.72) 100%); }
.cat-tile--g .photo::after { background: linear-gradient(180deg, rgba(23,138,68,.25) 0%, rgba(23,138,68,.78) 100%); }
.cat-tile--c .photo::after { background: linear-gradient(180deg, rgba(16,21,46,.25) 0%, rgba(45,91,255,.78) 100%); }
.cat-tile--p .photo::after { background: linear-gradient(180deg, rgba(255,158,187,.15) 0%, rgba(255,158,187,.75) 100%); }

/* =====================================================================
   Kakao Friends feature band
   ===================================================================== */
.friends-band {
  background: var(--navy);
  color: var(--white);
  border-top: var(--border);
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.friends-band .checker { position: absolute; inset: 0; opacity: .05; }
.friends-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.friends-inner h2 { font-size: clamp(30px, 5vw, 56px); color: var(--white); }
.friends-inner h2 em { font-style: normal; color: var(--yellow); }
.friends-inner p { color: rgba(255,255,255,.82); font-weight: 500; margin: 18px 0 26px; max-width: 440px; }
.friends-chars {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.friend-chip {
  flex: 1;
  aspect-ratio: 3/4;
  border: var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow);
}
.friend-chip span { font-family: var(--font-display); text-transform: uppercase; font-size: 13px; background: var(--ink); color: var(--white); padding: 5px 10px; border-radius: 999px; position: relative; z-index: 2; }
/* Friend chip holding a real product photo */
.friend-chip { overflow: hidden; }
.friend-chip .photo { position: absolute; inset: 0; border-radius: inherit; z-index: 0; }
.friend-chip .photo img { transform: scale(1.1); }
.friend-chip .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,21,46,0) 45%, rgba(16,21,46,.55) 100%); }
.friend-chip .blobface {
  width: 66%; aspect-ratio: 1; border-radius: 50%; border: var(--border);
  position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
}
.friend-ryan  { background: var(--yellow); }
.friend-ryan  .blobface { background: #E6A23C; }
.friend-choon { background: var(--green); }
.friend-choon .blobface { background: #F2F2F2; }
.friend-apeach{ background: var(--peach); }
.friend-apeach .blobface { background: #FF77A0; }

/* =====================================================================
   Brand story teaser
   ===================================================================== */
.story-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.story-teaser .art {
  border: var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--green);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.story-teaser .art .checker { position: absolute; inset:0; opacity:.08;}
.story-teaser .art .photo { position: absolute; inset: 0; border-radius: inherit; z-index: 0; }
.story-teaser .art .photo img { transform: scale(1.08); }
.story-teaser .art .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(23,138,68,.55) 0%, rgba(16,21,46,.35) 100%); }
.story-teaser .art .quote {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--white); font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(24px,3.4vw,44px); text-align: center; padding: 24px; line-height: 1;
  z-index: 1; text-shadow: 3px 3px 0 rgba(20,17,15,.5);
}
.story-teaser h2 { font-size: clamp(30px, 4.4vw, 50px); }
.story-teaser p { font-weight: 500; margin: 18px 0 24px; }

/* =====================================================================
   Newsletter
   ===================================================================== */
.newsletter {
  background: var(--cobalt);
  color: var(--white);
  border-top: var(--border);
  border-bottom: var(--border);
}
.newsletter-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}
.newsletter h2 { font-size: clamp(28px, 4.6vw, 50px); color: var(--white); }
.newsletter p { font-weight: 600; margin: 14px 0 26px; color: rgba(255,255,255,.9); }
.news-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  border: var(--border);
  border-radius: 999px;
  padding: 15px 20px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.news-form input:focus { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand p { margin-top: 14px; color: rgba(255,247,230,.7); font-weight: 500; max-width: 260px; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; color: var(--yellow); margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,247,230,.8); font-weight: 500; font-size: 14px; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 2px solid rgba(255,247,230,.15);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,247,230,.6);
  font-weight: 500;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border: 2px solid rgba(255,247,230,.3);
  border-radius: 50%; display: grid; place-items: center; color: var(--cream);
}
.footer-social a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* =====================================================================
   Breadcrumb
   ===================================================================== */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.breadcrumb a { color: var(--green-dk); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .5; }

/* =====================================================================
   Collection page
   ===================================================================== */
.collection-hero {
  background: var(--green);
  color: var(--white);
  border-bottom: var(--border);
  padding: 30px 0 40px;
  position: relative;
  overflow: hidden;
}
.collection-hero .checker { position:absolute; inset:0; opacity:.07; }
.collection-hero .wrap { position: relative; }
.collection-hero h1 { font-size: clamp(38px, 7vw, 82px); color: var(--white); margin-top: 10px; }
.collection-hero h1 .stroke { color: var(--green); -webkit-text-stroke: 3px var(--white); }
.collection-hero p { font-weight: 600; margin-top: 12px; max-width: 520px; }

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-bottom: var(--border);
  margin-bottom: 30px;
}
.chip {
  border: var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  transition: transform .12s;
}
.chip:hover { transform: translate(-1px,-1px); }
.chip--active { background: var(--yellow); }
.toolbar .count { margin-left: auto; font-weight: 700; font-size: 13px; }
.toolbar select {
  border: var(--border);
  border-radius: 999px;
  padding: 9px 15px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 70px;
}

/* =====================================================================
   PDP
   ===================================================================== */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 28px 0 60px;
  align-items: start;
}
.gallery__main {
  position: relative;
  border: var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  background: var(--yellow);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery__main .checker { position:absolute; inset:0; opacity:.06; }
.gallery__main .tags { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; z-index: 3; }
.gallery__main .big-blob {
  width: 66%; aspect-ratio: 1; border-radius: 50%; border: var(--border);
  background: #E6A23C; position: relative; box-shadow: var(--shadow); z-index: 1;
}
.gallery__main .big-blob .eye { position:absolute; top:42%; width:9%; aspect-ratio:1; background:var(--ink); border-radius:50%; }
.gallery__main .big-blob .eye.l { left:32%; } .gallery__main .big-blob .eye.r { right:32%; }
.gallery__main .big-blob .nose { position:absolute; top:53%; left:50%; transform:translateX(-50%); width:13%; height:8%; background:#7A4B1E; border-radius:50%; }
/* PDP main holding a real photo */
.gallery__main .photo { position: absolute; inset: 0; border-radius: inherit; z-index: 1; background: var(--cream); }
.gallery__main .photo img { transform: scale(1.08); }
.gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.thumb {
  flex: 1;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 11px;
  transition: transform .12s;
  overflow: hidden;
  padding: 0;
  background: var(--cream-2);
  position: relative;
}
/* thumb holding a real photo */
.thumb .photo { position: absolute; inset: 0; }
.thumb .photo img { transform: scale(1.12); }
.thumb:hover { transform: translateY(-2px); }
.thumb--active { outline: 3px solid var(--cobalt); outline-offset: 2px; }

.pdp__info { position: sticky; top: 90px; }
.pdp__cat { font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; color: var(--green-dk); }
.pdp__title { font-size: clamp(30px, 4.5vw, 48px); margin: 8px 0 12px; }
.pdp__pricerow { display: flex; align-items: baseline; gap: 14px; margin-bottom: 4px; }
.pdp__price { font-family: var(--font-display); font-size: 36px; }
.pdp__was { font-size: 18px; text-decoration: line-through; opacity: .5; font-weight: 700; }
.pdp__rating { font-weight: 700; font-size: 14px; margin-bottom: 18px; }
.pdp__rating .stars { color: var(--green-dk); letter-spacing: 2px; }
.pdp__desc { font-weight: 500; font-size: 16px; margin-bottom: 24px; max-width: 480px; }

.opt-block { margin-bottom: 22px; }
.opt-block .opt-label { font-family: var(--font-display); text-transform: uppercase; font-size: 13px; margin-bottom: 10px; display: block; }
.swatches { display: flex; gap: 10px; }
.swatch {
  width: 46px; height: 46px; border: var(--border); border-radius: 12px;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .12s;
}
.swatch:hover { transform: translateY(-2px); }
.swatch--active { outline: 3px solid var(--ink); outline-offset: 3px; }
.sw-yellow{background:var(--yellow);} .sw-navy{background:var(--navy);} .sw-green{background:var(--green);} .sw-peach{background:var(--peach);}

.qty {
  display: inline-flex;
  align-items: center;
  border: var(--border);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.qty button { width: 44px; height: 44px; background: var(--white); border: none; font-family: var(--font-display); font-size: 20px; }
.qty button:hover { background: var(--yellow); }
.qty input { width: 46px; text-align: center; border: none; font-family: var(--font-display); font-size: 18px; background: transparent; }
.qty input:focus { outline: none; }

.pdp__actions { display: flex; gap: 12px; margin: 22px 0; flex-wrap: wrap; align-items: center; }
.pdp__perks { display: grid; gap: 8px; margin-top: 6px; }
.pdp__perks li { font-weight: 600; font-size: 14px; display: flex; gap: 10px; align-items: center; }
.pdp__perks li .ic { width: 26px; height: 26px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 8px; display: grid; place-items: center; font-size: 13px; }

/* Details section */
.details {
  border-top: var(--border);
  padding: 54px 0;
}
.details h2 { font-size: clamp(26px,4vw,42px); margin-bottom: 8px; }
.details .sub { font-weight: 600; margin-bottom: 26px; color: var(--green-dk); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-bottom: 34px;
}
.spec {
  border: var(--border); border-radius: var(--radius); padding: 20px;
  background: var(--white); box-shadow: var(--shadow-sm);
}
.spec strong { font-family: var(--font-display); text-transform: uppercase; font-size: 12px; display: block; color: var(--green-dk); margin-bottom: 6px; }
.spec span { font-weight: 700; font-size: 17px; }
.details__img {
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 900px;
  overflow-y: auto;
}
.details__img img { width: 100%; }
.details__imgcap {
  text-align: center; font-weight: 700; font-size: 13px; padding: 12px;
  background: var(--cream-2); border-top: var(--border); text-transform: uppercase; letter-spacing: .06em;
}

/* =====================================================================
   About page
   ===================================================================== */
.about-hero {
  background: var(--yellow);
  border-bottom: var(--border);
  padding: 60px 0 68px;
  position: relative;
  overflow: hidden;
}
.about-hero .checker { position:absolute; inset:0; opacity:.06; }
.about-hero .wrap { position: relative; max-width: 900px; }
.about-hero .tape { margin-bottom: 20px; }
.about-hero h1 { font-size: clamp(40px, 8vw, 96px); }
.about-hero h1 .green { color: var(--green-dk); }
.about-hero p { font-size: 19px; font-weight: 600; margin-top: 22px; max-width: 620px; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.about-story .art {
  border: var(--border); border-radius: var(--radius-lg); aspect-ratio: 1/1;
  background: var(--cobalt); position: relative; overflow: hidden; box-shadow: var(--shadow-lift);
}
.about-story .art .checker { position:absolute; inset:0; opacity:.08; }
.about-story .art .photo { position:absolute; inset:0; border-radius: inherit; z-index:0; }
.about-story .art .photo img { transform: scale(1.08); }
.about-story .art .photo::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(45,91,255,.5) 0%, rgba(16,21,46,.4) 100%); }
.about-story .art .cap { position:absolute; inset:0; display:grid; place-items:center; color:var(--white); font-family:var(--font-display); text-transform:uppercase; font-size:clamp(22px,3vw,40px); text-align:center; padding:24px; line-height:1; z-index:1; text-shadow: 3px 3px 0 rgba(20,17,15,.5);}
.about-story h2 { font-size: clamp(28px,4vw,44px); margin-bottom: 16px; }
.about-story p { font-weight: 500; margin-bottom: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.value {
  border: var(--border); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.value--y { background: var(--yellow); }
.value--g { background: var(--green); color: var(--white); }
.value--c { background: var(--cobalt); color: var(--white); }
.value .num { font-family: var(--font-display); font-size: 40px; opacity: .35; }
.value h3 { font-size: 22px; margin: 4px 0 10px; }
.value p { font-weight: 500; font-size: 15px; }

.partnership {
  background: var(--navy); color: var(--white);
  border-top: var(--border); border-bottom: var(--border);
  position: relative; overflow: hidden;
}
.partnership .checker { position:absolute; inset:0; opacity:.05; }
.partnership .wrap { position: relative; text-align: center; max-width: 780px; padding: 64px 24px; }
.partnership h2 { font-size: clamp(28px,4.4vw,50px); color: var(--white); }
.partnership h2 em { font-style: normal; color: var(--yellow); }
.partnership p { color: rgba(255,255,255,.82); font-weight: 500; margin: 18px auto 30px; max-width: 560px; }
.partnership .friends-chars { max-width: 560px; margin: 0 auto; }

.cta-band {
  background: var(--peach);
  border-bottom: var(--border);
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { font-size: clamp(30px,5vw,60px); }
.cta-band p { font-weight: 600; margin: 14px 0 26px; font-size: 17px; }

/* =====================================================================
   You may also like reused product-row spacing
   ===================================================================== */
.also-like { border-top: var(--border); padding: 56px 0 72px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .product-row, .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: var(--border);
    padding: 12px 16px 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 12px 14px; border-radius: 12px; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 42px; height: 42px; border: var(--border);
    background: var(--yellow); border-radius: 12px; box-shadow: var(--shadow-sm);
    font-size: 20px;
  }
  .header-inner { position: relative; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; }
  .friends-inner, .story-teaser, .pdp, .about-story { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .friends-inner .friends-chars { margin-top: 8px; }
}
@media (max-width: 640px) {
  .product-row, .collection-grid, .cat-grid, .values-grid, .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .product-row, .collection-grid, .cat-grid { grid-template-columns: 1fr; }
  .wrap, .header-inner, .hero__grid { padding-left: 16px; padding-right: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .logo { font-size: 22px; }
  .hero__stats { gap: 18px; }
}
