/* ============================================================
   Kitty Clothing — styles.css
   Premium alt-fashion layout · 100% pink design system
   ============================================================

   PALETTE (unchanged):
   #fce4ec  page background & light containers
   #f8bbd0  product card & soft accents
   #f48fb1  borders, dividers & secondary glow
   #f06292  primary CTAs, badges & active states
   #ec407a  hovers, active nav & glowing shadows
   #d81b60  brand accents, bold headers & badges
   #c2185b  headings & icon fills
   #ad1457  body text & deep UI elements
   #880e4f  footer, promo bar & high contrast
   ============================================================ */

:root {
  --bg:        #fce4ec;
  --card:      #f8bbd0;
  --line:      #f48fb1;
  --cta:       #f06292;
  --hot:       #ec407a;
  --brand:     #d81b60;
  --heading:   #c2185b;
  --text:      #ad1457;
  --dark:      #880e4f;
  --white:     #fffdfd;

  --glow:      0 0 15px #f06292;
  --glow-big:  0 0 15px #f06292, 0 0 40px rgba(236, 64, 122, 0.55);
  --shadow:    0 6px 18px rgba(216, 27, 96, 0.16);
  --fast:      0.22s cubic-bezier(0.33, 1, 0.68, 1);
  --smooth:    0.4s cubic-bezier(0.33, 1, 0.68, 1);
  --header-h:  66px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Quicksand", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: "Baloo 2", "Quicksand", sans-serif;
  color: var(--heading);
  line-height: 1.12;
}

::selection { background: var(--hot); color: var(--white); }

.container-pad { width: min(1360px, 95%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 4px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 1.5px;
  transition: transform var(--fast), box-shadow var(--fast), background-color var(--fast), color var(--fast);
  text-transform: uppercase;
}

.btn svg, .btn i { width: 18px; height: 18px; }

.btn-glow { background: var(--cta); color: var(--white); box-shadow: var(--glow); }
.btn-glow:hover { background: var(--hot); transform: translateY(-3px) scale(1.01); box-shadow: var(--glow-big); }
.btn-glow:active { transform: translateY(0) scale(0.98); }

.btn-outline { background: transparent; color: var(--brand); border: 2.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); transform: translateY(-3px); box-shadow: var(--glow); }

.btn-hero-ghost { background: rgba(136, 14, 79, 0.25); color: var(--white); border: 2.5px solid var(--white); backdrop-filter: blur(4px); }
.btn-hero-ghost:hover { background: var(--white); color: var(--brand); transform: translateY(-3px); box-shadow: var(--glow); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================================
   PROMO BAR + HEADER (shared chrome, injected by layout.js)
   ============================================================ */

.top-sticky { position: sticky; top: 0; z-index: 120; }

.promo-bar { background: var(--dark); overflow: hidden; padding: 9px 0; }

.promo-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }

.promo-text {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 2px;
  color: var(--bg);
  text-shadow: 0 0 8px var(--line), 0 0 18px rgba(244, 143, 177, 0.7);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.header {
  background: rgba(252, 228, 236, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--line);
  transition: box-shadow var(--fast);
}

.header.scrolled { box-shadow: 0 4px 22px rgba(216, 27, 96, 0.18); }

.header-inner {
  width: min(1360px, 96%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
}

.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { display: grid; place-items: center; transition: transform var(--fast); }
.logo:hover .logo-icon { transform: rotate(-10deg) scale(1.08); }

.logo-text {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--heading);
}
.logo-text em { font-style: normal; color: var(--brand); margin-left: 3px; }

/* Nav + mega menus */
.nav-list { display: flex; }

.nav-list > li { position: relative; }

.nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  color: var(--text);
  border-radius: 4px;
  transition: color var(--fast), text-shadow var(--fast), background-color var(--fast);
}

.nav-link:hover,
.nav-link.active,
.has-mega:hover > .nav-link,
.has-mega:focus-within > .nav-link {
  color: var(--hot);
  text-shadow: 0 0 12px rgba(236, 64, 122, 0.6);
  background: rgba(240, 98, 146, 0.1);
}

.nav-link-sale { color: var(--brand); }
.nav-link-sale:hover, .nav-link-sale.active { color: var(--hot); }

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  width: min(760px, 92vw);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 50px rgba(136, 14, 79, 0.22), var(--glow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 50;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Menus near the viewport edge anchor to their item instead of centering */
.mega-align-left .mega { left: 0; transform: translate(0, 10px); }
.mega-align-left:hover .mega,
.mega-align-left:focus-within .mega { transform: translate(0, 0); }

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 26px 28px;
}

.has-mega .mega-inner { grid-template-columns: 1fr 1fr 1fr; }
.has-mega:first-of-type .mega-inner { grid-template-columns: 1fr 1fr; }
/* promo card takes the last column when present */
.mega-inner:has(.mega-promo) { grid-template-columns: 1fr 1fr 240px; }

.mega-col h4 {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  color: var(--line);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mega-col ul li { margin-bottom: 2px; }

.mega-col ul a {
  display: inline-block;
  padding: 6px 8px;
  margin-left: -8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  transition: color var(--fast), padding-left var(--fast), background-color var(--fast);
}

.mega-col ul a:hover {
  color: var(--hot);
  padding-left: 14px;
  background: var(--bg);
}

.mega-promo {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 2px solid var(--line);
  transition: transform var(--fast), box-shadow var(--fast);
}

.mega-promo:hover { transform: translateY(-3px); box-shadow: var(--glow-big); }

.mega-promo img { width: 100%; height: 100%; object-fit: cover; }

.mega-promo-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(136, 14, 79, 0.92));
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-promo-body strong {
  font-family: "Baloo 2", sans-serif;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.mega-promo-body span { font-size: 0.8rem; font-weight: 600; color: var(--bg); }

/* Search */
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 8px 14px;
  margin-left: auto;
  flex: 0 1 210px;
  transition: box-shadow var(--fast), border-color var(--fast);
}

.search:focus-within { border-color: var(--hot); box-shadow: var(--glow); }
.search-icon { width: 16px; height: 16px; color: var(--line); flex-shrink: 0; }
.search:focus-within .search-icon { color: var(--hot); }

.search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.search input::placeholder { color: var(--line); }

/* Header icons */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--dark);
  transition: transform var(--fast), box-shadow var(--fast), background-color var(--fast), color var(--fast);
}

.icon-btn:hover {
  background: var(--cta);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.icon-btn svg, .icon-btn i { width: 19px; height: 19px; }

.icon-btn-cart { background: var(--cta); color: var(--white); border-color: var(--cta); }
.icon-btn-cart:hover { background: var(--hot); }

.account-btn { display: grid; }

.badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 4px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge.bump { transform: scale(1.5); }
.badge[hidden] { display: none; }

/* Hamburger (mobile only) */
.hamburger { display: none; }
.hamburger .icon-close { display: none; }
.hamburger.open .icon-close { display: block; }
.hamburger.open .icon-open { display: none; }

/* ============================================================
   BACKDROPS, MOBILE NAV, CART DRAWER, TOAST
   ============================================================ */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(136, 14, 79, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--smooth);
}
.backdrop.show { opacity: 1; }
.backdrop[hidden] { display: none; }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 140;
  width: min(330px, 86vw);
  background: var(--bg);
  border-right: 2px solid var(--line);
  padding: 78px 24px 30px;
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-title {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--line);
  margin-bottom: 12px;
}

.mobile-top-item { border-bottom: 1.5px solid rgba(244, 143, 177, 0.4); }

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 4px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--dark);
  transition: color var(--fast), padding-left var(--fast);
}
.mobile-link:hover, .mobile-link.active { color: var(--hot); padding-left: 12px; text-shadow: 0 0 12px rgba(236, 64, 122, 0.6); }
.mobile-link-sale { color: var(--brand); }

.mobile-link-title {
  display: block;
  padding: 15px 4px 4px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  color: var(--brand);
}

.mobile-group summary {
  cursor: pointer;
  list-style: none;
  padding: 11px 4px;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--fast);
}
.mobile-group summary::-webkit-details-marker { display: none; }
.mobile-group summary::after { content: " +"; font-weight: 800; color: var(--line); float: right; }
.mobile-group[open] summary::after { content: " −"; }
.mobile-group summary:hover { color: var(--hot); }

.mobile-sublink {
  display: block;
  padding: 9px 4px 9px 16px;
  font-weight: 600;
  color: var(--text);
  border-left: 2px solid var(--line);
  margin-left: 6px;
  transition: color var(--fast), border-color var(--fast);
}
.mobile-sublink:hover { color: var(--hot); border-color: var(--hot); }

.mobile-nav-foot { margin-top: 26px; }
.mobile-nav-foot p { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; color: var(--brand); margin-bottom: 14px; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 140;
  width: min(430px, 94vw);
  background: var(--bg);
  border-left: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: -12px 0 40px rgba(136, 14, 79, 0.3);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 14px;
  border-bottom: 2px solid var(--line);
}
.cart-head h3 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 2px; }
.cart-head h3 span { color: var(--hot); }

.ship-progress { padding: 14px 22px 4px; }
.ship-progress p { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 8px; }

.ship-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--card);
  border: 1.5px solid var(--line);
  overflow: hidden;
}

.ship-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cta), var(--hot));
  box-shadow: 0 0 10px rgba(236, 64, 122, 0.8);
  transition: width var(--smooth);
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; }

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand);
}
.cart-empty-cat { font-size: 3rem; animation: float 4s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1.5px solid rgba(244, 143, 177, 0.5);
  animation: rise 0.35s ease both;
}

.cart-item img { width: 76px; height: 92px; object-fit: cover; border-radius: 6px; border: 2px solid var(--line); }
.cart-item-name { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 0.92rem; text-transform: uppercase; color: var(--dark); margin-bottom: 2px; }
.cart-item-variant { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text); opacity: 0.75; margin-bottom: 4px; }
.cart-item-price { font-family: "Baloo 2", sans-serif; font-weight: 800; color: var(--brand); font-size: 0.95rem; }

.qty-controls { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }

.qty-btn {
  width: 27px;
  height: 27px;
  border-radius: 4px;
  background: var(--white);
  border: 2px solid var(--line);
  font-weight: 800;
  color: var(--dark);
  display: grid;
  place-items: center;
  transition: background-color var(--fast), color var(--fast), box-shadow var(--fast);
}
.qty-btn:hover { background: var(--cta); color: var(--white); border-color: var(--cta); box-shadow: 0 0 10px rgba(240, 98, 146, 0.6); }

.qty-val { font-weight: 800; color: var(--dark); min-width: 18px; text-align: center; }
.qty-lg .qty-btn { width: 38px; height: 38px; }
.qty-lg .qty-val { font-size: 1.1rem; }

.cart-item-remove { align-self: start; color: var(--line); transition: color var(--fast), transform var(--fast); }
.cart-item-remove svg, .cart-item-remove i { width: 17px; height: 17px; }
.cart-item-remove:hover { color: var(--hot); transform: scale(1.2); }

.cart-foot { padding: 16px 22px 22px; border-top: 2px solid var(--line); background: var(--white); }
.cart-row {
  display: flex;
  justify-content: space-between;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 10px;
}
.cart-row strong { color: var(--brand); font-size: 1.15rem; }
.cart-row-muted span { font-size: 0.78rem; color: var(--line); font-weight: 700; }
.cart-foot .btn { margin-top: 6px; }
.cart-foot .link-reset { display: block; margin: 12px auto 0; font-size: 0.82rem; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 200;
  transform: translate(-50%, 90px);
  background: var(--dark);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 14px 26px;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(236, 64, 122, 0.6);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.35s;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ============================================================
   HERO (full-bleed editorial)
   ============================================================ */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(136, 14, 79, 0.82) 0%, rgba(194, 24, 91, 0.55) 42%, rgba(216, 27, 96, 0.08) 75%),
    linear-gradient(0deg, rgba(136, 14, 79, 0.55) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1360px, 95%);
  margin-inline: auto;
  padding: 70px 0;
  max-width: 640px;
}

.hero-kicker {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 3px;
  color: var(--white);
  background: rgba(136, 14, 79, 0.75);
  border: 1.5px solid rgba(248, 187, 208, 0.5);
  padding: 9px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  transform: rotate(-1.5deg);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.9rem, 7.5vw, 5.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--white);
}

.hero-title span { display: block; }

.hero-title .line-1 { color: var(--bg); }
.hero-title .line-2 { color: transparent; -webkit-text-stroke: 2.5px var(--bg); }
.hero-title .line-3 {
  color: var(--white);
  text-shadow: 0 0 34px rgba(244, 143, 177, 0.85);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg);
  max-width: 44ch;
  margin-bottom: 30px;
  text-shadow: 0 2px 12px rgba(136, 14, 79, 0.6);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero stickers */
.sticker { position: absolute; z-index: 3; font-family: "Baloo 2", sans-serif; }

.sticker-pill {
  top: 15%;
  right: 6%;
  background: var(--white);
  border: 2.5px solid var(--line);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 999px;
  transform: rotate(5deg);
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.sticker-circle {
  bottom: 12%;
  right: 12%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--brand);
  border: 4px dashed var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  transform: rotate(-10deg);
  box-shadow: var(--glow-big);
  transition: transform var(--fast);
}

.sticker-circle:hover { transform: rotate(-4deg) scale(1.07); }

/* ============================================================
   HOME SECTIONS
   ============================================================ */

.aesthetics { padding: 64px 24px 26px; text-align: center; }

.aesthetics-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 34px;
}

.aesthetics-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; }

.aesthetic-circle { display: flex; flex-direction: column; align-items: center; gap: 13px; }

.aesthetic-ring {
  display: block;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--cta), var(--hot), var(--brand));
  box-shadow: 0 0 0 3px var(--bg), 0 8px 22px rgba(216, 27, 96, 0.3);
  transition: transform var(--fast), box-shadow var(--fast);
}

.ring-cyber  { background: linear-gradient(135deg, #f06292, #d81b60); }
.ring-goth   { background: linear-gradient(135deg, #c2185b, #880e4f); }
.ring-kawaii { background: linear-gradient(135deg, #f48fb1, #ec407a); }
.ring-y2k    { background: linear-gradient(135deg, #ec407a, #ad1457); }

.aesthetic-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg);
  transition: transform var(--smooth);
}

.aesthetic-circle:hover .aesthetic-ring {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 0 3px var(--bg), var(--glow-big);
}
.aesthetic-circle:hover .aesthetic-ring img { transform: scale(1.12) rotate(3deg); }

.aesthetic-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--dark);
  transition: color var(--fast), text-shadow var(--fast);
}
.aesthetic-circle:hover .aesthetic-name { color: var(--hot); text-shadow: 0 0 12px rgba(236, 64, 122, 0.6); }

/* Section head rows */
.home-section { padding: 58px 0; width: min(1360px, 95%); margin-inline: auto; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  width: 100%;
}

.section-head-row h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-head-row p { font-weight: 600; color: var(--text); margin-top: 4px; }

.section-link {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 2px;
  color: var(--brand);
  white-space: nowrap;
  padding-bottom: 6px;
  transition: color var(--fast), text-shadow var(--fast);
}
.section-link:hover { color: var(--hot); text-shadow: 0 0 12px rgba(236, 64, 122, 0.55); }

.section-kicker {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--hot);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Y2K drop section banner */
.drop-section { padding-top: 46px; }

.drop-banner {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.drop-banner span {
  background: var(--dark);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 3px;
  padding: 11px 26px;
  border-radius: 999px;
  box-shadow: var(--glow-big);
  transform: rotate(-1.5deg);
  text-shadow: 0 0 10px rgba(244, 143, 177, 0.8);
}

/* Category tiles */
.cat-tiles { padding: 30px 0 58px; width: min(1360px, 95%); margin-inline: auto; }

.cat-tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-tile {
  position: relative;
  aspect-ratio: 5 / 6.4;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--line);
  transition: transform var(--fast), box-shadow var(--fast);
}

.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--smooth); }

.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--glow-big); }
.cat-tile:hover img { transform: scale(1.09); }

.cat-tile-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(136, 14, 79, 0.88);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 7px 13px;
  border-radius: 4px;
  backdrop-filter: blur(3px);
}

.cat-tile-sale .cat-tile-label { background: var(--hot); box-shadow: var(--glow); }

/* Editorial banner */
.editorial { padding: 40px 0 70px; width: min(1360px, 95%); margin-inline: auto; }

.editorial-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.editorial-media { position: relative; }

.editorial-media img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--line);
}

.editorial-sticker {
  position: absolute;
  top: -22px;
  right: -16px;
  background: var(--hot);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 1px;
  padding: 16px 18px;
  border-radius: 50%;
  transform: rotate(8deg);
  box-shadow: var(--glow-big);
}

.editorial-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.editorial-copy > p:not(.section-kicker) {
  font-weight: 600;
  color: var(--text);
  max-width: 46ch;
  margin-bottom: 26px;
}

/* Brand section */
.brand-section { padding: 30px 0 76px; width: min(1360px, 95%); margin-inline: auto; }

.brand-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.brand-media { position: relative; }

.brand-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-badge {
  position: absolute;
  bottom: -18px;
  left: 26px;
  background: var(--dark);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: var(--glow);
}

.brand-copy h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-copy > p:not(.section-kicker) {
  font-weight: 600;
  color: var(--text);
  max-width: 52ch;
  margin-bottom: 20px;
}

.brand-points { margin-bottom: 28px; }

.brand-points li {
  font-weight: 700;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1.5px dashed rgba(244, 143, 177, 0.55);
}

/* Social feed */
.feed {
  padding: 74px 0 84px;
  background: linear-gradient(180deg, transparent 0%, rgba(248, 187, 208, 0.45) 100%);
  text-align: center;
}

.feed-title { font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; margin-bottom: 8px; padding: 0 24px; }
.feed-title span { color: var(--hot); text-shadow: 0 0 18px rgba(236, 64, 122, 0.5); }
.feed-sub { color: var(--dark); font-weight: 600; margin-bottom: 38px; padding: 0 24px; }

.feed-grid {
  width: min(1200px, 94%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid var(--line);
}

.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--smooth); }

.feed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--white);
  background: linear-gradient(160deg, rgba(240, 98, 146, 0.85), rgba(216, 27, 96, 0.9));
  opacity: 0;
  transition: opacity var(--fast);
  padding: 10px;
}
.feed-overlay strong { font-size: 1rem; }

.feed-item:hover img { transform: scale(1.12); }
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-item:hover { box-shadow: var(--glow-big); }

/* ============================================================
   PRODUCT CARD + GRID (shared)
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast);
  animation: rise 0.55s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: calc(var(--i, 0) * 55ms);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--cta);
  box-shadow: var(--glow-big);
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--bg);
}

.product-media > a { display: block; height: 100%; }

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.45s ease;
}

.card-img-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .card-img-secondary { opacity: 1; }
.product-card:hover .card-img-primary { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  transform: rotate(-4deg);
  box-shadow: 0 4px 14px rgba(136, 14, 79, 0.4);
}

.badge-ec { background: var(--hot); }
.badge-d8 { background: var(--brand); }

.wishlist-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 253, 0.94);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform var(--fast), color var(--fast), background-color var(--fast), box-shadow var(--fast);
}

.wishlist-heart svg, .wishlist-heart i { width: 18px; height: 18px; }
.wishlist-heart:hover { transform: scale(1.15); box-shadow: var(--glow); color: var(--hot); }

.wishlist-heart.active {
  background: var(--white);
  color: var(--hot);
  animation: heartpop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wishlist-heart.active svg, .wishlist-heart.active i { fill: var(--hot); }

@keyframes heartpop {
  0%   { transform: scale(0.7); }
  55%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 13px;
  background: var(--cta);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  transform: translateY(102%);
  transition: transform var(--smooth), background-color var(--fast), box-shadow var(--fast);
}

.product-card:hover .quick-add,
.quick-add:focus-visible { transform: translateY(0); }
.quick-add:hover { background: var(--hot); box-shadow: 0 -4px 18px rgba(236, 64, 122, 0.55); }

.product-body { padding: 14px 16px 18px; }

.product-brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--line);
  margin-bottom: 3px;
}

.product-title { font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.product-title a { transition: color var(--fast); }
.product-title a:hover { color: var(--hot); }

.product-rating { display: flex; align-items: center; gap: 2px; color: #ffb300; margin-bottom: 7px; }
.product-rating svg, .product-rating i { width: 13px; height: 13px; fill: currentColor; }
.product-rating .star-dim { opacity: 0.28; }

.product-rating span {
  margin-left: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--dark);
}

.product-price { font-family: "Baloo 2", sans-serif; }
.price-now { font-size: 1.22rem; font-weight: 800; color: var(--brand); }
.price-old { font-size: 0.92rem; font-weight: 700; color: var(--line); text-decoration: line-through; margin-right: 8px; }

.no-results {
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--dark);
  padding: 50px 24px 10px;
  font-size: 1.1rem;
}

.link-reset {
  display: inline-block;
  margin-left: 10px;
  color: var(--hot);
  text-decoration: underline;
  font-weight: 800;
  letter-spacing: 1px;
  transition: color var(--fast), text-shadow var(--fast);
}
.link-reset:hover { color: var(--brand); text-shadow: 0 0 10px rgba(236, 64, 122, 0.6); }

/* ---------- Skeleton loading ---------- */
.skeleton-card { pointer-events: none; }

.skeleton {
  background: linear-gradient(100deg, var(--card) 40%, #fde7f0 50%, var(--card) 60%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  border-radius: 6px;
}

.skel-media { aspect-ratio: 5 / 6; border-radius: 0; }
.skel-line { height: 14px; margin: 10px 16px; }
.skel-line.w80 { width: 80%; }
.skel-line.w40 { width: 40%; }
.skel-line.w30 { width: 30%; }

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ============================================================
   COLLECTION / SHOP PAGE
   ============================================================ */

.shop-page { min-height: 60vh; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--line);
}

.breadcrumb a { color: var(--text); transition: color var(--fast); }
.breadcrumb a:hover { color: var(--hot); }
.breadcrumb svg, .breadcrumb i { width: 13px; height: 13px; }
.breadcrumb span { color: var(--brand); }

.collection-head { padding: 18px 0 8px; max-width: 760px; }

.collection-head h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.collection-head p { font-weight: 600; color: var(--text); }

.subnav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.subnav-link {
  padding: 8px 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--dark);
  background: var(--white);
  transition: all var(--fast);
}

.subnav-link:hover { border-color: var(--hot); color: var(--hot); box-shadow: var(--glow); }
.subnav-link.active { background: var(--cta); border-color: var(--cta); color: var(--white); }

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(244, 143, 177, 0.45);
  margin-bottom: 22px;
}

.toolbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: var(--dark);
  transition: all var(--fast);
}

.toolbar-btn:hover { border-color: var(--hot); color: var(--hot); box-shadow: var(--glow); }
.toolbar-btn svg, .toolbar-btn i { width: 15px; height: 15px; }

.result-count { font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; color: var(--line); }

.toolbar-right { display: flex; align-items: center; gap: 10px; }

.sort-label { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 0.78rem; letter-spacing: 2px; color: var(--line); }

.sort-select {
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--dark);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--fast), box-shadow var(--fast);
}

.sort-select:hover, .sort-select:focus { border-color: var(--hot); box-shadow: var(--glow); }

/* Active filter chips */
.active-chips { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 16px; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dark);
  transition: all var(--fast);
}

.filter-chip:hover { background: var(--hot); color: var(--white); border-color: var(--hot); }

/* Layout: sidebar + grid */
.shop-layout {
  display: grid;
  grid-template-columns: 262px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 90px;
}

/* Filter panel (desktop: sidebar) */
.filter-panel {
  position: sticky;
  top: calc(var(--header-h) + 70px);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  max-height: calc(100vh - var(--header-h) - 100px);
  overflow-y: auto;
}

.sheet-grabber, .sheet-head { display: none; }
.sheet-sort { display: none; }

.filter-group { padding: 14px 0; border-bottom: 1.5px solid rgba(244, 143, 177, 0.35); }
.filter-group:last-of-type { border-bottom: none; }

.filter-group h4 {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
}

.check input { accent-color: var(--cta); width: 17px; height: 17px; cursor: pointer; }
.check .count { margin-left: auto; font-style: normal; font-size: 0.78rem; font-weight: 700; color: var(--line); }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  padding: 7px 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--dark);
  transition: all var(--fast);
}

.chip:hover { border-color: var(--hot); color: var(--hot); box-shadow: var(--glow); }
.chip.active { background: var(--cta); border-color: var(--cta); color: var(--white); box-shadow: var(--glow); }

.swatch-list { display: flex; flex-wrap: wrap; gap: 9px; }

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--line);
  padding: 3px;
  background: var(--white);
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast);
}

.swatch span { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(136, 14, 79, 0.18); }

.swatch:hover { transform: scale(1.12); }
.swatch.active { border-color: var(--brand); box-shadow: var(--glow); transform: scale(1.08); }

#clearAllFilters { margin-top: 16px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.pdp-page { min-height: 60vh; }

.pdp-layout {
  width: min(1360px, 95%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  padding-top: 10px;
  padding-bottom: 60px;
  align-items: start;
}

.pdp-gallery { position: sticky; top: calc(var(--header-h) + 70px); }

.pdp-main-img {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--card);
  aspect-ratio: 5 / 6;
}

.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }

.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; }

.pdp-thumb {
  width: 74px;
  aspect-ratio: 5 / 6;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--line);
  opacity: 0.65;
  padding: 0;
  transition: opacity var(--fast), border-color var(--fast), transform var(--fast);
}

.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { opacity: 1; transform: translateY(-2px); }
.pdp-thumb.active { opacity: 1; border-color: var(--cta); box-shadow: var(--glow); }

.pdp-info > h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin: 4px 0 10px;
}

.pdp-rating { margin-bottom: 14px; }

.pdp-price { margin-bottom: 4px; }

.price-now-lg { font-size: 1.8rem; }

.pdp-save {
  display: inline-block;
  margin-left: 10px;
  background: var(--hot);
  color: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(-2deg);
}

.pdp-tax-note { font-size: 0.76rem; font-weight: 800; letter-spacing: 1.5px; color: var(--line); margin-bottom: 10px; }

.pdp-option { margin: 22px 0; }

.pdp-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pdp-option-head span {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--brand);
}

.pdp-option-head strong { font-weight: 700; color: var(--dark); font-size: 0.9rem; }

.swatch-row, .chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.size-guide-link { margin-left: 0; font-size: 0.8rem; }

.pdp-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 28px 0 22px;
  position: relative;
}

.pdp-cta .btn-glow { grid-column: 1 / -1; }
.pdp-cta .btn-outline { grid-column: 1; }

.pdp-cta .wishlist-heart {
  position: relative;
  top: auto;
  right: auto;
  align-self: center;
  justify-self: end;
  width: 46px;
  height: 46px;
}

.pdp-perks {
  border-top: 1.5px solid rgba(244, 143, 177, 0.45);
  padding-top: 18px;
}

.pdp-perks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 6px 0;
}

.pdp-perks svg, .pdp-perks i { width: 18px; height: 18px; color: var(--cta); flex-shrink: 0; }

/* Accordions */
.pdp-details {
  width: min(880px, 100%);
  margin: 10px auto 70px;
  border-top: 2px solid var(--line);
}

.section-kicker-line {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--brand);
  text-transform: uppercase;
  padding: 22px 0 8px;
}

.pdp-details details { border-bottom: 1.5px solid rgba(244, 143, 177, 0.45); }

.pdp-details summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 4px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color var(--fast);
}

.pdp-details summary::-webkit-details-marker { display: none; }
.pdp-details summary::after { content: "+"; float: right; font-size: 1.2rem; color: var(--hot); transition: transform var(--fast); }
.pdp-details details[open] summary::after { transform: rotate(45deg); }
.pdp-details summary:hover { color: var(--hot); }

.details-body { padding: 0 4px 20px; font-weight: 600; color: var(--text); max-width: 68ch; }

.detail-list { padding-left: 20px; list-style: disc; }
.detail-list li { padding: 3px 0; }

/* Related */
.pdp-related { padding: 26px 0 80px; }

.pdp-related .section-head-row { margin-bottom: 24px; }

.pdp-notfound {
  text-align: center;
  padding: 90px 24px 110px;
}

.pdp-notfound span { font-size: 3.4rem; display: block; margin-bottom: 14px; }
.pdp-notfound h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); text-transform: uppercase; margin-bottom: 10px; }
.pdp-notfound p { font-weight: 600; margin-bottom: 26px; }

/* Size guide modal */
.modal { position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(136, 14, 79, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.open .modal-backdrop { opacity: 1; }

.modal-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  width: min(520px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  box-shadow: var(--glow-big);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.modal.open .modal-card { transform: translateY(0); opacity: 1; }

.modal-card h3 { letter-spacing: 2px; margin-bottom: 16px; }

.modal-close { position: absolute; top: 14px; right: 14px; }

.size-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }

.size-table th, .size-table td {
  border: 1.5px solid rgba(244, 143, 177, 0.5);
  padding: 9px 12px;
  text-align: left;
  font-weight: 600;
}

.size-table th {
  background: var(--bg);
  font-family: "Baloo 2", sans-serif;
  letter-spacing: 1px;
  font-size: 0.76rem;
  color: var(--brand);
}

.size-note { margin-top: 14px; font-size: 0.84rem; font-weight: 600; color: var(--text); }

/* Sticky add-to-bag (mobile) */
.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-top: 2px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 26px rgba(136, 14, 79, 0.25);
}

.sticky-buy[hidden] { display: none; }

.sticky-buy img { width: 44px; height: 53px; object-fit: cover; border-radius: 4px; border: 1.5px solid var(--line); }

.sticky-buy-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.sticky-buy-info strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-buy-info span { font-family: "Baloo 2", sans-serif; font-weight: 800; color: var(--brand); }
.sticky-buy .btn { padding: 12px 20px; font-size: 0.85rem; }

/* Sticky bar is mobile-only */
@media (min-width: 921px) {
  .sticky-buy { display: none !important; }
}

/* ============================================================
   FOOTER (shared)
   ============================================================ */

.footer { background: var(--dark); color: var(--bg); margin-top: 20px; }

.footer-newsletter {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: 70px 24px 52px;
}

.footer-newsletter h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(244, 143, 177, 0.55);
}

.footer-newsletter > p { color: var(--line); font-weight: 600; margin-bottom: 26px; }

.newsletter-form { display: flex; gap: 10px; }

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border-radius: 4px;
  border: 2px solid var(--line);
  outline: none;
  background: var(--bg);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: 1px;
  transition: box-shadow var(--fast), border-color var(--fast);
}

.newsletter-form input::placeholder { color: var(--cta); }
.newsletter-form input:focus { border-color: var(--hot); box-shadow: 0 0 15px #f06292; }

.newsletter-msg { margin-top: 14px; font-weight: 700; letter-spacing: 1px; min-height: 1.4em; }
.newsletter-msg.ok { color: var(--bg); }
.newsletter-msg.err { color: var(--line); }

.footer-grid {
  width: min(1200px, 94%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 30px 0 50px;
  border-top: 1.5px solid rgba(244, 143, 177, 0.3);
}

.logo-footer .logo-text { color: var(--white); }
.logo-footer .logo-text em { color: var(--cta); }

.footer-brand p { margin: 16px 0 20px; font-size: 0.93rem; color: var(--line); max-width: 36ch; }

.socials { display: flex; gap: 10px; }

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(248, 187, 208, 0.12);
  border: 1.5px solid rgba(244, 143, 177, 0.4);
  color: var(--bg);
  transition: transform var(--fast), background-color var(--fast), color var(--fast), box-shadow var(--fast);
}

.socials a:hover { background: var(--cta); color: var(--white); transform: translateY(-3px); box-shadow: 0 0 15px #f06292; }

.footer-col h4 { color: var(--white); font-size: 1rem; letter-spacing: 2.5px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }

.footer-col ul a {
  color: var(--line);
  font-size: 0.93rem;
  font-weight: 600;
  transition: color var(--fast), padding-left var(--fast);
}
.footer-col ul a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  border-top: 1.5px solid rgba(244, 143, 177, 0.3);
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1200px, 94%);
  margin-inline: auto;
}

.footer-bottom p { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; color: var(--line); }

.payments { display: flex; gap: 8px; flex-wrap: wrap; }
.pay { border-radius: 5px; transition: transform var(--fast), box-shadow var(--fast); }
.pay:hover { transform: translateY(-3px); box-shadow: 0 0 12px rgba(252, 228, 236, 0.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .cat-tiles-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-link { padding: 10px 9px; font-size: 0.8rem; letter-spacing: 1px; }
  .search { flex-basis: 170px; }
  .mega-inner { grid-template-columns: 1fr 1fr; }
  .mega-inner:has(.mega-promo) { grid-template-columns: 1fr 1fr 200px; }
}

@media (max-width: 920px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .search { order: 5; flex: 1 1 100%; }
  .nav { display: none; }
  .hamburger { display: grid; }
  .account-btn { display: none; }

  /* Filter panel becomes a bottom sheet */
  .shop-layout { grid-template-columns: 1fr; gap: 0; }

  .filter-panel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 145;
    width: 100%;
    max-height: 82vh;
    border: none;
    border-top: 2px solid var(--line);
    border-radius: 18px 18px 0 0;
    padding: 0 20px 26px;
    transform: translateY(105%);
    transition: transform 0.42s cubic-bezier(0.33, 1, 0.68, 1);
    max-height: 82vh;
  }

  .filter-panel.open { transform: translateY(0); }

  .sheet-grabber {
    display: block;
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: var(--line);
    margin: 10px auto 4px;
  }

  .sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 14px;
    border-bottom: 1.5px solid rgba(244, 143, 177, 0.4);
  }

  .sheet-head h3 { letter-spacing: 2px; font-size: 1.05rem; }

  .sheet-sort { display: block; padding: 14px 0; }
  .sheet-sort .sort-select { width: 100%; }

  .filter-scroll { overflow-y: auto; }

  .sort-btn-mobile { display: inline-flex; }
  .toolbar-right { display: none; }

  /* Hero on tablets/phones */
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(136, 14, 79, 0.88) 0%, rgba(194, 24, 91, 0.55) 55%, rgba(136, 14, 79, 0.25) 100%);
  }

  .hero-content { max-width: 100%; text-align: center; padding: 90px 0 110px; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }

  .sticker-pill { display: none; }
  .sticker-circle { bottom: 6%; right: 6%; width: 84px; height: 84px; font-size: 1.25rem; }

  .editorial-inner { grid-template-columns: 1fr; gap: 34px; padding: 26px; }
  .editorial-sticker { top: -18px; right: 8px; }
  .brand-inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-media { max-width: 420px; }

  .feed-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .newsletter-form { flex-direction: column; }
}

/* Mobile */
@media (max-width: 780px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 11px 12px 14px; }
  .product-title { font-size: 0.88rem; }
  .price-now { font-size: 1.05rem; }
  .quick-add { padding: 10px; font-size: 0.8rem; letter-spacing: 1.5px; }

  /* Always-on quick add on touch screens */
  .product-card .quick-add { transform: translateY(0); }

  .cat-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }

  .section-head-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 560px) {
  .header-inner { gap: 8px; }
  .header-actions { gap: 6px; }
  .icon-btn { width: 38px; height: 38px; }
  .logo-text { font-size: 1.12rem; }
  .logo-icon svg { width: 32px; height: 32px; }

  .hero { min-height: 78vh; }
  .hero-title .line-2 { -webkit-text-stroke-width: 2px; }
  .hero-cta .btn { width: 100%; }

  .shop-toolbar { flex-wrap: wrap; }
  .result-count { width: 100%; order: 3; }

  .pdp-layout { grid-template-columns: 1fr; gap: 26px; padding-bottom: 90px; }
  .pdp-gallery { position: static; }
  .pdp-cta .btn-glow, .pdp-cta .btn-outline { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .promo-track { animation: none; }
}
