/** Shopify CDN: Minification failed

Line 22:9 Expected identifier but found whitespace
Line 22:11 Unexpected "{"
Line 22:21 Expected ":"
Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:26 Expected ":"
Line 25:9 Expected identifier but found whitespace
Line 25:11 Unexpected "{"
Line 25:21 Expected ":"
Line 27:10 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
/* ============================================
   GLOWING IN COACH — Theme stylesheet
   Coquette / Y2K vintage aesthetic
   ============================================ */

:root {
  --pink: {{ settings.color_pink | default: '#e84a7e' }};
  --pink-soft: {{ settings.color_pink_soft | default: '#f4c6d4' }};
  --pink-deep: #b8345f;
  --teal: {{ settings.color_teal | default: '#7fb8b3' }};
  --teal-soft: #c2dedb;
  --cream: {{ settings.color_cream | default: '#fdeae3' }};
  --cream-deep: #f8d8cf;
  --ink: #2a1b16;
  --ink-soft: #5a4a44;
  --chrome-1: #ffe0f0;
  --chrome-2: #d9c5ff;
  --chrome-3: #c5e0ff;
  --lilac: #d9c5ff;
  --blue: #c5e0ff;
  --shadow-soft: 0 4px 16px rgba(184, 52, 95, 0.12);
  --shadow-sticker: 2px 3px 0 rgba(42, 27, 22, 0.08);
  --shadow-hard: 0 8px 32px rgba(42, 27, 22, 0.18);
  --radius-card: 18px;
  --radius-pill: 999px;
  --radius-blob: 28px;
  --font-display: 'Fraunces', 'Cooper Std', Georgia, serif;
  --font-script: 'Caveat Brush', 'Brush Script MT', cursive;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background-image:
    radial-gradient(circle at 5% 10%, rgba(232, 74, 126, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 95% 60%, rgba(127, 184, 179, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
}

a { color: var(--pink-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--ink); }

/* Prevent link color rules bleeding into buttons */
a.btn,
a.btn:hover,
button.btn,
button.btn:hover { text-decoration: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--pink-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.site-header__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__logo img { max-height: 56px; width: auto; display: block; }
.site-header__logo .word-1 { color: var(--pink); }
.site-header__logo .word-2 { color: var(--teal); }

.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color .15s ease;
  position: relative;
}
.site-nav a:hover { color: var(--pink); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.cart-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.cart-link::after { display: none; }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: var(--pink);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---------- Mega-menu ---------- */
.site-nav__item { position: relative; padding-bottom: 12px; margin-bottom: -12px; }

.site-nav__item > .site-nav__top::after {
  content: ' ▾';
  font-size: 0.6em;
  vertical-align: 1px;
  opacity: 0.5;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--pink-soft);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(42, 27, 22, 0.14);
  padding: 28px 24px 20px;
  padding-top: 20px;
  margin-top: 0;
  z-index: 200;
  min-width: 200px;
  white-space: nowrap;
  /* invisible bridge fills the gap so hover doesn't break */
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.mega-menu--wide {
  display: none;
  left: 50%;
  transform: translateX(-50%);
  min-width: 700px;
  flex-direction: row;
  gap: 0;
}

.site-nav__item:hover .mega-menu,
.site-nav__item:focus-within .mega-menu {
  display: flex;
}

.mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 160px;
  padding: 0 20px 0 0;
  border-right: 1px solid var(--pink-soft);
  margin-right: 20px;
}
.mega-menu__col:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.mega-menu__col a {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .12s ease, color .12s ease;
  white-space: nowrap;
  display: block;
}
.mega-menu__col a::after { display: none; }
.mega-menu__col a:hover { background: var(--pink-soft); color: var(--pink-deep); }

.mega-menu__group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 10px 10px 4px;
  display: block;
  margin-top: 4px;
}
.mega-menu__col .mega-menu__group-label:first-child { margin-top: 0; padding-top: 2px; }

/* keep mega-menu on screen for right-aligned items */
.site-nav__item:last-of-type .mega-menu,
.site-nav__item:nth-last-of-type(2) .mega-menu {
  left: auto;
  right: 0;
  transform: none;
}

/* ---------- Mobile menu button ---------- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--pink-soft);
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
  padding: 8px 10px;
  line-height: 1;
  flex-shrink: 0;
}

/* ---------- Mobile drawer ---------- */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mobile-drawer.is-open { display: block; }

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 27, 22, 0.4);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0; left: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--cream);
  overflow-y: auto;
  padding: 20px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 32px rgba(42, 27, 22, 0.15);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__close {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px 0;
  align-self: flex-start;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.mobile-nav { display: flex; flex-direction: column; gap: 2px; }

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 15px 4px;
  border-bottom: 1px solid var(--pink-soft);
  cursor: pointer;
  list-style: none;
  width: 100%;
  min-height: 48px;
}
.mobile-nav__top:hover { color: var(--pink); }
/* chevron on expandable items */
.mobile-nav__group > summary.mobile-nav__top::after {
  content: '›';
  font-size: 1.2rem;
  color: var(--pink-soft);
  transition: transform .2s ease;
}
.mobile-nav__group[open] > summary.mobile-nav__top::after {
  transform: rotate(90deg);
  color: var(--pink);
}

.mobile-nav__group summary { list-style: none; }
.mobile-nav__group summary::-webkit-details-marker { display: none; }
.mobile-nav__group[open] > summary { color: var(--pink); }

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  padding: 8px 0 8px 16px;
  gap: 2px;
}
.mobile-nav__sub a {
  font-size: 0.88rem;
  color: var(--ink);
  padding: 7px 8px;
  border-radius: 8px;
}
.mobile-nav__sub a:hover { background: var(--pink-soft); color: var(--pink-deep); }

.mobile-nav__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 10px 8px 2px;
  display: block;
}

.mobile-nav__icons {
  display: flex;
  gap: 16px;
  padding: 20px 8px 0;
  margin-top: 8px;
  border-top: 1px solid var(--pink-soft);
}
.mobile-nav__icons a { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.mobile-nav__icons a:hover { color: var(--pink); }

@media (max-width: 768px) {
  .site-nav .site-nav__item,
  .site-nav .site-nav__top,
  .site-nav a:not(.cart-link):not(.site-nav__icon) { display: none; }
  .site-nav .site-nav__icon { display: inline-flex; }
  .site-nav__item { padding-bottom: 0; margin-bottom: 0; }
  .mobile-menu-btn { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--pink);
  color: var(--cream, #fdeae3);
  padding: 9px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--pink-deep);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}
.marquee__item { display: inline-flex; align-items: center; gap: 12px; }
.marquee__heart { font-family: var(--font-script); font-size: 1.2em; color: var(--cream, #fdeae3); text-transform: none; letter-spacing: 0; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 24px; overflow: hidden; }
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--pink);
  margin: 0 0 4px;
  line-height: 1;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__title em {
  font-style: italic;
  color: var(--pink);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 42ch;
  margin: 0 0 28px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--chrome-1), var(--chrome-2), var(--chrome-3), var(--chrome-1));
  background-size: 200% 200%;
  animation: hologram 15s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}
@keyframes hologram {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.deco { position: absolute; pointer-events: none; z-index: 2; }
.deco--heart { color: var(--pink); }
.deco--teal { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background: #e84a7e;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
  box-shadow: var(--shadow-sticker);
}
.btn:hover {
  background: #2a1b16;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(184, 52, 95, 0.25);
}
.btn--pink { background: #e84a7e; color: #ffffff !important; border-color: transparent; }
.btn--pink:hover { background: #2a1b16; color: #ffffff !important; }
.btn--ink { background: #2a1b16; color: #ffffff !important; border-color: transparent; }
.btn--ink:hover { background: #e84a7e; color: #ffffff !important; }
.btn--ghost {
  background: transparent;
  color: #2a1b16 !important;
  border: 2px solid #2a1b16;
  box-shadow: none;
}
.btn--ghost:hover { background: #2a1b16; color: #ffffff !important; }
.btn--chrome {
  background: linear-gradient(135deg, var(--chrome-1) 0%, var(--chrome-2) 50%, var(--chrome-3) 100%);
  color: #2a1b16 !important;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 14px rgba(217, 197, 255, 0.45), var(--shadow-sticker);
}
.btn--chrome:hover {
  background: #2a1b16;
  color: #ffffff !important;
  border-color: #2a1b16;
  box-shadow: 0 6px 16px rgba(42, 27, 22, 0.2);
}

/* 404 / empty state button always pink */
.empty-state .btn { background: #e84a7e; color: #ffffff !important; border-color: transparent; }

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 7vw, 88px) 24px; }
.section__header {
  max-width: 1240px;
  margin: 0 auto 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section__title { margin: 0; }
.section__script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--pink);
  margin: 0 0 -4px;
  line-height: 1;
}

/* ---------- Product grid ---------- */
.product-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  display: block;
  background: var(--cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .25s ease;
  position: relative;
  text-decoration: none;
  color: var(--ink);
}
.product-card:hover { transform: translateY(-3px); color: var(--ink); }
.product-card__media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-card);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cream);
  color: var(--pink);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sticker);
}
.product-card__badge--sale { background: var(--pink); color: white; }
.product-card__badge--sold { background: var(--ink); color: var(--cream, #fdeae3); }
.product-card__body { padding: 16px 4px 0; }
.product-card__title {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.product-card__price { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; }
.product-card__price--compare { color: var(--ink-soft); opacity: 0.5; text-decoration: line-through; margin-left: 6px; }

/* ---------- Product page ---------- */
.product {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
}
@media (max-width: 900px) { .product { grid-template-columns: 1fr; gap: 32px; } }

.product__gallery { display: grid; gap: 12px; }
.product__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  aspect-ratio: 4/5;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; }

.product__script { font-family: var(--font-script); font-size: 1.5rem; color: var(--pink); margin: 0 0 4px; line-height: 1; }
.product__title { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
.product__price { font-family: var(--font-body); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 28px; }
.product__description { margin: 24px 0; line-height: 1.65; color: var(--ink-soft); }

.variant-group { margin-bottom: 24px; }
.variant-group__label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--ink);
}
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-option {
  padding: 9px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all .15s ease;
  color: var(--ink);
}
.variant-option:hover { background: var(--pink-soft); border-color: var(--pink); }
.variant-option.is-active { background: #e84a7e; color: #ffffff; border-color: #e84a7e; }
.variant-option:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.qty-row { display: flex; align-items: center; gap: 12px; margin: 28px 0; }
.qty-input { display: inline-flex; align-items: center; border: 1px solid var(--ink); border-radius: var(--radius-pill); overflow: hidden; }
.qty-input button { background: transparent; border: none; padding: 10px 14px; font-size: 1.1rem; cursor: pointer; color: var(--ink); }
.qty-input button:hover { background: var(--pink-soft); }
.qty-input input { width: 36px; border: none; text-align: center; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; background: transparent; color: var(--ink); }
.qty-input input:focus { outline: none; }

/* ---------- Cart ---------- */
.cart { max-width: 900px; margin: 0 auto; padding: 48px 24px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--pink-soft);
  align-items: center;
}
.cart-item__media { aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: var(--cream-deep); }
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__title { font-weight: 500; margin: 0 0 4px; font-size: 1rem; }
.cart-item__variant { font-size: 0.85rem; color: var(--ink-soft); }

.cart-totals { margin-top: 32px; padding: 28px; background: var(--cream-deep); border-radius: var(--radius-card); }
.cart-totals__row { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-totals__row--total { border-top: 1px solid var(--pink-soft); margin-top: 12px; padding-top: 16px; font-size: 1.2rem; font-weight: 600; }

/* ---------- Image + Text section ---------- */
.image-text {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.image-text--reverse > :first-child { order: 2; }
@media (max-width: 768px) { .image-text { grid-template-columns: 1fr; } }
.image-text__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  box-shadow: var(--shadow-soft);
}
.image-text__media img { width: 100%; height: 100%; object-fit: cover; }
.image-text__script { font-family: var(--font-script); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--pink); margin: 0 0 -4px; line-height: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  color: var(--ink);
  padding: 72px 24px 32px;
  margin-top: 64px;
  border-top: 1px solid var(--pink-soft);
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 16px;
  font-weight: 600;
}
.site-footer a { color: var(--ink); display: block; padding: 5px 0; }
.site-footer a:hover { color: var(--pink); }
.site-footer__logo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.site-footer__script { font-family: var(--font-script); font-size: 1.5rem; color: var(--pink); margin: 0 0 16px; line-height: 1; }
.site-footer__bottom { max-width: 1240px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid var(--pink-soft); font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

/* ---------- Form fields ---------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { border-radius: 16px; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 74, 126, 0.15);
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Empty / 404 states ---------- */
.empty-state { max-width: 600px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.empty-state h1 { font-size: clamp(3rem, 10vw, 7rem); color: var(--pink); }
.empty-state .script { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.empty-state .btn { background: var(--pink); color: #ffffff; border: none; }

/* ============================================
   FASHION NOVA STRUCTURE LAYER
   (coquette palette retained)
   ============================================ */

/* ---------- Promo strip with countdown ---------- */
.promo-strip {
  background: var(--ink);
  color: var(--cream, #fdeae3);
  padding: 9px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-strip__timer {
  display: inline-flex;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  color: var(--pink-soft);
  letter-spacing: 0.04em;
}
.promo-strip__cta {
  color: var(--cream, #fdeae3);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-strip__cta:hover { color: var(--pink-soft); }

/* ---------- Category nav bar (under header) ---------- */
.category-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--pink-soft);
}
.category-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: none;
}
.category-nav__inner::-webkit-scrollbar { display: none; }
.category-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  transition: color .15s ease;
}
.category-nav a:hover { color: var(--pink); }
.category-nav a.is-hot { color: var(--pink); }
.category-nav a.is-hot::before {
  content: '♥';
  margin-right: 4px;
  font-family: var(--font-script);
  font-size: 1.1em;
}

/* ---------- Lifestyle hero (full-bleed) ---------- */
.hero--lifestyle {
  padding: 0;
  max-width: 1240px;
  margin: 16px auto 0;
  padding: 0 24px;
}
.hero--lifestyle .hero__bg {
  position: relative;
  aspect-ratio: 21/10;
  min-height: 360px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft), var(--chrome-2));
}
.hero--lifestyle .hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.hero--lifestyle .hero__copy {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  max-width: 55%;
  z-index: 2;
}
.hero--lifestyle .hero__copy::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(253, 243, 231, 0.85) 0%, rgba(253, 243, 231, 0.4) 60%, transparent 100%);
  z-index: -1;
}
.hero--lifestyle .hero__script { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.hero--lifestyle .hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.hero--lifestyle .hero__subtitle { color: var(--ink); max-width: 32ch; }
@media (max-width: 768px) {
  .hero--lifestyle .hero__bg { aspect-ratio: 4/5; }
  .hero--lifestyle .hero__copy { max-width: 100%; padding: 8%; }
}

/* ---------- Trend report tiles ---------- */
.trend-report { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.trend-report__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.trend-report__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.trend-report__script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--pink);
  margin: 0 0 -4px;
  line-height: 1;
}
.trend-report__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .trend-report__grid { grid-template-columns: repeat(2, 1fr); } }
.trend-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
  display: block;
  text-decoration: none;
}
.trend-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.trend-tile:hover img { transform: scale(1.05); }
.trend-tile__overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  background: linear-gradient(to top, rgba(42, 27, 22, 0.55) 0%, transparent 50%);
  color: white;
}
.trend-tile__script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: white;
  margin: 0;
  line-height: 1;
}
.trend-tile__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 4px 0 0;
  color: white;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Tabbed product carousel ---------- */
.tabbed-products { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tabbed-products__head {
  text-align: center;
  margin-bottom: 20px;
}
.tabbed-products__head .section__script { text-align: center; }
.tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.tabs__btn {
  padding: 8px 20px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--ink);
  transition: all .15s ease;
}
.tabs__btn:hover { background: var(--pink-soft); }
.tabs__btn.is-active { background: #e84a7e; color: #ffffff; border-color: #e84a7e; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ---------- Sale strip (promo banner) ---------- */
.sale-strip { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.sale-strip__inner {
  position: relative;
  aspect-ratio: 7/1;
  min-height: 100px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sale-strip__inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.sale-strip__copy {
  position: relative;
  z-index: 1;
  color: white;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.sale-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  color: white;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sale-strip__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: white;
  line-height: 1;
}
.sale-strip__btn {
  background: white;
  color: var(--pink);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.sale-strip__btn:hover { background: var(--ink); color: white; }

/* ---------- Shop by category (large tiles) ---------- */
.shop-categories { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .shop-categories__grid { grid-template-columns: repeat(2, 1fr); } }
.category-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-tile:hover img { transform: scale(1.05); }
.category-tile__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(42, 27, 22, 0.65) 0%, transparent 70%);
}
.category-tile__label {
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.category-tile:hover .category-tile__label { background: var(--pink); color: white; }

/* ============================================
   COLLECTION HUB PAGE
   ============================================ */

.hub-hero {
  text-align: center;
  padding-bottom: 40px;
}
.hub-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.hub-hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--pink);
  margin: 0 0 4px;
  line-height: 1;
}
.hub-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hub-hero__intro {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.6;
}

.hub-grid__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 600px) {
  .hub-grid__inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.hub-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--cream-deep), var(--pink-soft));
}
.hub-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  position: absolute; inset: 0;
}
.hub-tile:hover img { transform: scale(1.05); }

.hub-tile__placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--pink-soft) 50%, var(--chrome-2) 100%);
  background-size: 200% 200%;
  animation: hologram 8s ease-in-out infinite;
}

.hub-tile__overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(42, 27, 22, 0.72) 0%, rgba(42, 27, 22, 0.1) 55%, transparent 100%);
}
.hub-tile__script {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 2px;
  line-height: 1;
}
.hub-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: white;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hub-tile__cta {
  display: inline-block;
  background: white;
  color: var(--ink);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
  align-self: flex-start;
}
.hub-tile:hover .hub-tile__cta { background: var(--pink); color: white; }

/* ============================================
   PHASE 1 — Missing styles & fixes
   ============================================ */

/* ---------- Section kicker (accent label above headings) ---------- */
.section__kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 10px;
  display: block;
}

/* ---------- Input placeholder color ---------- */
::placeholder { color: var(--ink-soft); opacity: 0.6; }

/* ---------- Inventory badge (low stock) ---------- */
.product__stock-notice {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product__stock-notice::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-deep);
  flex-shrink: 0;
}

/* ---------- Sold-out variant option ---------- */
.variant-option.is-sold-out {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- Collection sort/filter bar ---------- */
.collection-toolbar {
  max-width: 1240px;
  margin: 0 auto 28px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.collection-toolbar__count {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}
.collection-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.collection-toolbar__sort label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.collection-toolbar__sort select {
  width: auto;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  font-size: 0.85rem;
  background: transparent;
  cursor: pointer;
}

/* ---------- Free shipping progress bar (cart) ---------- */
.shipping-progress {
  background: var(--cream-deep);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.shipping-progress__label {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.shipping-progress__label strong { color: var(--pink); }
.shipping-progress__bar {
  height: 6px;
  background: var(--pink-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.shipping-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.shipping-progress--complete .shipping-progress__label { color: var(--teal); }
.shipping-progress--complete .shipping-progress__fill { background: linear-gradient(90deg, var(--teal), #4a9e99); }

/* ---------- Cart discount code ---------- */
.cart-discount {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.cart-discount input {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-body);
}
.cart-discount input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 74, 126, 0.15);
}
.cart-discount .btn { padding: 10px 20px; font-size: 0.85rem; white-space: nowrap; }

/* ---------- Product page — related products ---------- */
.related-products {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.related-products__head {
  margin-bottom: 28px;
}
.related-products .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ---------- Footer social links ---------- */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: color .15s ease;
  padding: 6px 0;
}
.footer-social__link:hover { color: var(--pink); }
.footer-social__link svg { flex-shrink: 0; }

/* ---------- Footer newsletter ---------- */
.footer-newsletter { margin-top: 24px; }
.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.footer-newsletter__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-newsletter__form input {
  flex: 1;
  min-width: 180px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 0.88rem;
  font-family: var(--font-body);
}
.footer-newsletter__form input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 74, 126, 0.15);
}
.footer-newsletter__form .btn { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Footer payment icons ---------- */
.footer-payment {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}
.footer-payment__icon {
  background: white;
  border: 1px solid var(--pink-soft);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- Trust badges (cart) ---------- */
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pink-soft);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-badge svg { color: var(--teal); flex-shrink: 0; }

/* ---------- Mobile: 480px and below ---------- */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; }
  .collection-toolbar { flex-direction: column; align-items: flex-start; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
