/* SuperMegaCute site styles — layered on assets/brand/tokens/brand.css */
@import url("brand/tokens/brand.css");

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--smc-cream);
  color: var(--smc-charcoal);
  font: 400 16px/1.6 var(--smc-font-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--smc-font-display); line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(34px, 5.5vw, 56px); }
h2 { font-size: clamp(24px, 3.2vw, 34px); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

.accent { color: var(--smc-pink-dark); }
.section-title { text-align: center; }
.section-kicker {
  display: inline-block;
  font: 600 12px/1 var(--smc-font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--smc-pink-dark);
  margin-bottom: 10px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--smc-taupe);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 22px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.header-nav a {
  text-decoration: none;
  font: 500 14px/1 var(--smc-font-body);
  padding: 10px 14px;
  border-radius: var(--smc-radius-pill);
}
.header-nav a:hover { background: var(--smc-blush); }
.header-nav a.active { background: white; box-shadow: var(--smc-shadow-soft); }
.header-cta { text-decoration: none; white-space: nowrap; }

/* buttons get hover/cursor on top of brand.css */
.smc-button-primary, .smc-button-secondary { cursor: pointer; text-decoration: none; display: inline-block; transition: transform .12s ease, box-shadow .12s ease; }
.smc-button-primary:hover, .smc-button-secondary:hover { transform: translateY(-1px); box-shadow: var(--smc-shadow-card); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 84px;
  text-align: center;
  background:
    linear-gradient(rgba(255,246,236,.75), var(--smc-cream) 85%),
    url("brand/patterns/confetti-dots.svg");
  background-size: auto, 420px;
}
.hero p.lede { max-width: 620px; margin: 0 auto 28px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-deco { position: absolute; width: 74px; opacity: .9; pointer-events: none; }
.hero-deco.bow { left: 8%; top: 26%; transform: rotate(-14deg); }
.hero-deco.daisy { right: 9%; top: 20%; }
.hero-deco.cloud { right: 16%; bottom: 12%; width: 92px; }

/* ---------- pillar tiles ---------- */
.pillar-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: -46px auto 0;
  position: relative; z-index: 2;
}
.pillar-tile {
  background: white;
  border: 1px solid var(--smc-taupe);
  border-radius: var(--smc-radius-lg);
  box-shadow: var(--smc-shadow-soft);
  padding: 20px 14px;
  text-align: center;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.pillar-tile:hover { transform: translateY(-3px); box-shadow: var(--smc-shadow-card); }
.pillar-tile img { width: 54px; height: 54px; }
.pillar-tile strong { display: block; font: 600 14px/1.3 var(--smc-font-body); margin-top: 10px; }

/* ---------- sections ---------- */
.section { padding: 56px 0; }
.section-alt {
  background:
    linear-gradient(rgba(255,246,236,.9), rgba(255,246,236,.9)),
    url("brand/patterns/tiny-hearts.svg");
  background-size: auto, 300px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }

/* ---------- product grid + cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-art {
  display: flex; align-items: center; justify-content: center;
  height: 150px; font-size: 64px; overflow: hidden;
}
.product-art img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.product-brand {
  margin: 0; font: 600 11px/1 var(--smc-font-body);
  letter-spacing: .12em; text-transform: uppercase; color: var(--smc-pink-dark);
}
.product-name { font-size: 19px; margin: 6px 0 6px; }
.product-blurb { margin: 0 0 12px; font-size: 13.5px; color: #5a5a5a; flex: 1; }
.product-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font: 700 17px/1 var(--smc-font-body); }
.product-cta { font-size: 12.5px !important; padding: 10px 16px !important; }

/* ---------- chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 12px/1 var(--smc-font-body);
  padding: 7px 12px;
  border-radius: var(--smc-radius-pill);
  border: 1px solid var(--smc-taupe);
  background: white;
}
.chip-soft { background: var(--smc-cream); border-color: transparent; }
.chip-gold { background: #FBEECD; border-color: transparent; color: #7a5c14; }
.chip-filter { cursor: pointer; transition: all .1s ease; }
.chip-filter:hover { border-color: var(--smc-pink-dark); }
.chip-filter.on {
  background: var(--smc-charcoal); color: white; border-color: var(--smc-charcoal);
}
.colour-dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); }

/* ---------- collections ---------- */
.collection-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.collection-card { display: flex; flex-direction: column; text-decoration: none; overflow: hidden; transition: transform .12s ease; }
.collection-card:hover { transform: translateY(-3px); }
.collection-art { height: 96px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.collection-body { padding: 14px 16px 16px; }
.collection-body h3 { font-size: 19px; margin-bottom: 4px; }
.collection-body p { margin: 0 0 10px; font-size: 13px; color: #5a5a5a; }
.collection-count { font: 600 13px/1 var(--smc-font-body); color: var(--smc-pink-dark); }

/* ---------- explore ---------- */
.explore-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; padding: 40px 0 64px; }
.explore-sidebar {
  background: white; border: 1px solid var(--smc-taupe);
  border-radius: var(--smc-radius-lg); padding: 20px;
  position: sticky; top: 86px;
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.filter-group h4 { margin: 18px 0 8px; font: 600 12px/1 var(--smc-font-body); letter-spacing: .12em; text-transform: uppercase; color: #8a8a8a; }
.filter-group:first-child h4 { margin-top: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.explore-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.explore-search {
  flex: 1; min-width: 200px;
  border: 1px solid var(--smc-taupe); border-radius: var(--smc-radius-pill);
  padding: 12px 18px; font: 400 14px/1 var(--smc-font-body);
  background: white;
}
.explore-search:focus { outline: 2px solid var(--smc-blush); border-color: var(--smc-pink-dark); }
.explore-count { font: 600 13px/1 var(--smc-font-body); color: #8a8a8a; white-space: nowrap; }
#explore-collections { margin-top: 44px; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 48px 0; color: #8a8a8a; }

/* ---------- pillar page hero ---------- */
.pillar-hero { padding: 52px 0 40px; text-align: center; }
.pillar-hero img.pillar-icon { width: 76px; height: 76px; margin-bottom: 12px; }
.pillar-hero p { max-width: 560px; margin: 0 auto; }

/* ---------- releases ---------- */
.release-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.release-row { display: flex; gap: 18px; padding: 18px 20px; align-items: flex-start; }
.release-date {
  flex: 0 0 64px; text-align: center;
  background: var(--smc-lilac); border-radius: var(--smc-radius-md);
  padding: 10px 6px; font-family: var(--smc-font-body);
}
.release-date span { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.release-date strong { font-size: 24px; }
.release-info h3 { font-size: 19px; margin-bottom: 4px; }
.release-info p { margin: 0 0 10px; font-size: 13.5px; color: #5a5a5a; }

/* ---------- guide article ---------- */
.guide { max-width: 720px; margin: 0 auto; padding: 48px 20px 72px; }
.guide-hero { text-align: center; margin-bottom: 36px; }
.guide h2 { margin-top: 40px; }
.guide .guide-products { margin: 24px 0; }
.guide .product-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

/* ---------- footer ---------- */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--smc-taupe);
  background:
    linear-gradient(rgba(255,246,236,.94), rgba(255,246,236,.94)),
    url("brand/patterns/pink-waves.svg");
  background-size: auto, 360px;
}
.footer-inner { max-width: 760px; margin: 0 auto; padding: 44px 20px; text-align: center; }
.footer-mission { font-family: var(--smc-font-display); font-size: 19px; margin: 14px 0 10px; }
.footer-disclosure { font-size: 12.5px; color: #8a8a8a; max-width: 560px; margin: 0 auto 8px; }
.footer-copy { font-size: 12.5px; color: #8a8a8a; margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .header-nav { display: none; }
  .explore-layout { grid-template-columns: 1fr; }
  .explore-sidebar { position: static; max-height: none; }
  .hero-deco { display: none; }
}

/* ---------- product detail page ---------- */
.pdp { padding: 28px 0 60px; }
.pdp-breadcrumb { font-size: 13px; color: #8a8a8a; margin-bottom: 22px; }
.pdp-breadcrumb a { text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--smc-pink-dark); }
.pdp-layout { display: grid; grid-template-columns: minmax(280px, 480px) 1fr; gap: 40px; align-items: start; }
.pdp-media { overflow: hidden; }
.pdp-image { width: 100%; display: block; }
.pdp-emoji { display: flex; align-items: center; justify-content: center; font-size: 120px; min-height: 320px; }
.pdp-info h1 { font-size: clamp(28px, 4vw, 40px); margin: 4px 0 12px; }
.pdp-blurb { font-size: 17px; color: #5a5a5a; max-width: 52ch; }
.pdp-price { font: 700 28px/1 var(--smc-font-body); margin: 18px 0; }
.pdp-currency { font: 500 13px/1 var(--smc-font-body); color: #8a8a8a; }
.pdp-cta { font-size: 15px !important; padding: 14px 26px !important; }
.pdp-facts { margin: 26px 0 14px; display: grid; gap: 8px; }
.pdp-facts div { display: flex; gap: 10px; font-size: 14px; }
.pdp-facts dt { font-weight: 600; min-width: 92px; }
.pdp-facts dd { margin: 0; color: #5a5a5a; }
.footer-collections { font-size: 12.5px; max-width: 640px; margin: 0 auto 12px; line-height: 2; }
.footer-collections a { text-decoration: none; color: var(--smc-pink-dark); }
.product-link { display: block; text-decoration: none; }
.product-name a { text-decoration: none; }
.product-name a:hover { color: var(--smc-pink-dark); }
.grid-more { padding: 24px 0; font-size: 14px; }
@media (max-width: 760px) { .pdp-layout { grid-template-columns: 1fr; } }
