/** Shopify CDN: Minification failed

Line 677:19 Unexpected "*"

**/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --pink: #F2C4CE;
  --pink-light: #FDF0F3;
  --pink-mid: #d9909f;
  --cream: #FDFAF7;
  --cream-2: #F5EDE8;
  --dark: #181818;
  --dark-2: #2a2a2a;
  --white: #FFFFFF;
  --border: #ece0e3;
  --muted: #888;
  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', Arial, sans-serif;
  --max: 1360px;
  --pad: 48px;
  --radius: 2px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: var(--font-b); background: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: var(--font-h); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

/* UTILITIES */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* BUTTONS */
.btn-dark {
  display: inline-block;
  background: var(--dark); color: var(--white);
  padding: 16px 40px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background var(--transition);
}
.btn-dark:hover { background: var(--dark-2); }
.btn-ghost {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--dark);
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--pink-mid); border-color: var(--pink-mid); }
.btn-pink {
  display: inline-block;
  background: var(--pink); color: var(--dark);
  padding: 14px 36px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background var(--transition);
}
.btn-pink:hover { background: #e8a8b8; }

/* SECTION LABELS */
.sec-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-mid); margin-bottom: 14px;
}
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-title { font-family: var(--font-h); font-weight: 300; color: var(--dark); margin-bottom: 10px; }
.sec-sub { font-size: 13px; color: var(--muted); }

/* ── ANNOUNCEMENT ── */
.glowee-announcement {
  background: var(--pink);
  color: var(--dark);
  text-align: center;
  padding: 11px 20px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.glowee-announcement a { text-decoration: underline; }
.announce-sep { margin: 0 10px; opacity: 0.4; }

/* ── HEADER ── */
.glowee-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  height: 80px; gap: 24px;
}
.header-nav { display: flex; align-items: center; gap: 40px; }
.header-nav-right { justify-content: flex-end; }
.header-nav a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--pink-mid); }
.header-logo { display: flex; justify-content: center; align-items: center; }
.header-logo img { height: 48px; width: auto; object-fit: contain; }
.header-logo-text {
  font-family: var(--font-h); font-size: 2rem;
  font-weight: 600; letter-spacing: 0.06em;
}
.cart-link { display: flex; align-items: center; gap: 6px; }
.cart-count {
  background: var(--dark); color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; font-size: 22px; padding: 8px; }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px var(--pad) 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* ── HERO ── */
.glowee-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 90vh; overflow: hidden;
}
.hero-media {
  position: relative; overflow: hidden;
  min-height: 90vh;
  background: linear-gradient(160deg, #f5dde5 0%, #e8bace 50%, #d4a0b8 100%);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.hero-new-badge {
  position: absolute; bottom: 36px; left: 36px;
  background: var(--white); color: var(--dark);
  padding: 9px 18px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-content {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-mid); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--pink-mid); }
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 300; line-height: 1.05;
  color: var(--dark); margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--pink-mid); }
.hero-sub {
  font-size: 14px; color: #666;
  line-height: 1.85; max-width: 360px;
  margin-bottom: 48px;
}
.hero-btns { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; gap: 36px;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-val { font-family: var(--font-h); font-size: 1.4rem; }
.trust-lbl { font-size: 10px; color: #aaa; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── MARQUEE ── */
.glowee-marquee {
  background: var(--dark); padding: 15px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.marquee-dot { color: var(--pink); font-size: 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── DAY / NIGHT ── */
.glowee-duality { display: grid; grid-template-columns: 1fr 1fr; }
.duality-panel {
  position: relative; overflow: hidden;
  min-height: 700px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 56px 60px;
}
.duality-panel.day { background: var(--pink-light); }
.duality-panel.night { background: var(--dark); }
.duality-panel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
}
.duality-panel-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10rem; opacity: 0.08;
}
.duality-content { position: relative; z-index: 1; }
.duality-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 16px;
}
.duality-panel.day .duality-label { color: var(--pink-mid); }
.duality-panel.night .duality-label { color: var(--pink); }
.duality-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 14px;
}
.duality-panel.day .duality-title { color: var(--dark); }
.duality-panel.night .duality-title { color: var(--white); }
.duality-title em { font-style: italic; }
.duality-panel.day .duality-title em { color: var(--pink-mid); }
.duality-panel.night .duality-title em { color: var(--pink); }
.duality-desc {
  font-size: 13px; line-height: 1.8;
  max-width: 300px; margin-bottom: 32px;
}
.duality-panel.day .duality-desc { color: #666; }
.duality-panel.night .duality-desc { color: rgba(255,255,255,0.5); }

/* ── PRODUCTS ── */
.glowee-products { padding: 100px 0; background: var(--white); }
.products-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.products-grid > * { width: calc(25% - 2px); }
.prod-card {
  position: relative; overflow: hidden;
  cursor: pointer; background: var(--cream);
}
.prod-card:hover .prod-cta { opacity: 1; transform: translateY(0); }
.prod-card:hover .prod-img { transform: scale(1.04); }
.prod-img-wrap { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.prod-img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
  display: block;
}
.prod-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  background: linear-gradient(150deg, var(--pink-light), var(--pink));
}
.prod-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--dark); color: var(--white);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px;
}
.prod-cta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  opacity: 1; transform: translateY(0);
  transition: all 0.3s ease;
}
.prod-cta form, .prod-cta button {
  width: 100%;
}
.prod-cta button {
  background: var(--white); color: var(--dark);
  padding: 12px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  width: 100%; transition: background var(--transition);
}
.prod-cta button:hover { background: var(--pink); }
.prod-info { padding: 18px 20px 24px; background: var(--white); }
.prod-name { font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.prod-price { font-size: 13px; color: var(--muted); }
.prod-price s { margin-right: 6px; }
.view-all-wrap { text-align: center; margin-top: 56px; }

/* ── GLOWEE GIRLS ── */
.glowee-girls { padding: 100px 0; background: var(--cream); }
.girls-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.girl-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.girl-card:hover .girl-img { transform: scale(1.04); }
.girl-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  transition: transform 0.5s ease; display: block;
}
.girl-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.girl-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(24,24,24,0.55), transparent);
}
.girl-name {
  font-family: var(--font-h); font-style: italic;
  font-size: 17px; color: var(--white); display: block;
}
.girl-city { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; }

/* ── PET BEDS ── */
.glowee-pet {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.pet-media {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #2a1520, #1a0a10);
  min-height: 520px;
}
.pet-media img { width: 100%; height: 100%; object-fit: cover; }
.pet-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9rem;
}
.pet-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.pet-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 20px; }
.pet-title { font-family: var(--font-h); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.pet-title em { font-style: italic; color: var(--pink); }
.pet-sub { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 36px; max-width: 360px; }

/* ── STORY ── */
.glowee-story {
  display: grid; grid-template-columns: 1fr 1fr;
}
.story-media {
  position: relative; overflow: hidden;
  min-height: 600px;
  background: linear-gradient(150deg, #f5dce5, #e8b8cc);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; min-height: 600px;
}
.story-content {
  padding: 88px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.story-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-mid); margin-bottom: 24px; }
.story-title { font-family: var(--font-h); font-size: clamp(2rem, 3vw, 3rem); font-weight: 300; line-height: 1.15; margin-bottom: 28px; }
.story-title em { font-style: italic; color: var(--pink-mid); }
.story-quote {
  font-family: var(--font-h); font-style: italic;
  font-size: 15px; color: #777; line-height: 2;
  border-left: 2px solid var(--pink);
  padding-left: 20px; margin-bottom: 12px;
}
.story-by { font-size: 11px; color: #bbb; letter-spacing: 0.1em; margin-bottom: 36px; }

/* ── MANIFESTO ── */
.glowee-manifesto { background: var(--pink); padding: 64px var(--pad); text-align: center; }
.manifesto-text {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; font-style: italic;
  color: var(--dark); line-height: 1.5;
  max-width: 760px; margin: 0 auto;
}

/* ── REVIEWS ── */
.glowee-reviews { padding: 100px 0; background: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.review-card {
  background: var(--cream);
  padding: 32px 28px;
  border-top: 3px solid var(--pink);
}
.review-stars { font-size: 14px; color: var(--pink-mid); margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-family: var(--font-h); font-style: italic; font-size: 16px; color: var(--dark); line-height: 1.7; margin-bottom: 20px; }
.review-author { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.trust-badges {
  max-width: var(--max); margin: 56px auto 0; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; color: #666;
}
.trust-badge-icon { font-size: 20px; }
.delivery-note {
  max-width: var(--max); margin: 0 auto; padding: 28px var(--pad) 0;
  text-align: center;
  font-size: 13px; color: var(--muted);
  background: var(--pink-light); padding-top: 20px; padding-bottom: 20px;
}
.delivery-note strong { color: var(--dark); }

/* ── INSTAGRAM ── */
.glowee-instagram { padding: 100px 0; background: var(--white); }
.instagram-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.insta-tile {
  aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative;
}
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile:hover .insta-hover { opacity: 1; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(24,24,24,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  color: white; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── FOOTER ── */
.glowee-footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 80px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 64px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  margin-bottom: 64px;
}
.footer-brand-logo {
  font-family: var(--font-h); font-size: 1.8rem;
  font-weight: 600; color: var(--white);
  letter-spacing: 0.06em; margin-bottom: 14px;
  display: block;
}
.footer-brand-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.9; max-width: 210px; margin-bottom: 24px; }
.footer-brand-quote { font-family: var(--font-h); font-style: italic; font-size: 13px; color: var(--pink); line-height: 1.7; }
.footer-col h5 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px var(--pad) 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.22);
  max-width: var(--max); margin: 0 auto;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 60px 0; }
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.product-gallery__main {
  aspect-ratio: 4/5; overflow: hidden;
  background: var(--cream); margin-bottom: 10px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.product-gallery__thumb { aspect-ratio: 1; overflow: hidden; background: var(--cream); cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.product-gallery__thumb:hover, .product-gallery__thumb.active { border-color: var(--dark); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 100px; }
.product-vendor { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-mid); margin-bottom: 12px; }
.product-title { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; margin-bottom: 16px; }
.product-price { font-size: 1.2rem; color: #555; margin-bottom: 32px; }
.product-price s { color: #bbb; margin-right: 8px; font-size: 1rem; }
.variant-group { margin-bottom: 24px; }
.variant-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; color: #555; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn { padding: 8px 18px; border: 1.5px solid var(--border); font-size: 13px; cursor: pointer; transition: var(--transition); background: var(--white); }
.variant-btn.active, .variant-btn:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }
.atc-btn {
  width: 100%; padding: 18px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--dark); color: var(--white);
  border: none; cursor: pointer; transition: background var(--transition);
  margin-bottom: 12px;
}
.atc-btn:hover { background: var(--dark-2); }
.atc-btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.product-delivery { font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 28px; }
.product-desc { border-top: 1px solid var(--border); padding-top: 28px; margin-top: 24px; }
.product-desc p, .product-desc li { font-size: 14px; color: #555; line-height: 1.85; margin-bottom: 10px; }
.product-desc ul { padding-left: 20px; }
.product-desc li { list-style: disc; }

/* ── COLLECTION PAGE ── */
.collection-page { padding: 60px 0; }
.collection-header {
  max-width: var(--max); margin: 0 auto 48px; padding: 0 var(--pad);
}
.collection-title { font-family: var(--font-h); font-weight: 300; margin-bottom: 8px; }
.collection-desc { font-size: 14px; color: var(--muted); }
.collection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}

/* ── CART ── */
.cart-page { padding: 60px 0; min-height: 50vh; }
.cart-inner { max-width: 900px; margin: 0 auto; padding: 0 var(--pad); }
.cart-title { font-family: var(--font-h); font-weight: 300; margin-bottom: 40px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { color: var(--muted); margin-bottom: 24px; }
.cart-item {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: 24px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 90px; height: 90px; object-fit: cover; background: var(--pink-light); }
.cart-item-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.cart-item-price { font-size: 14px; }
.cart-qty-input { width: 52px; padding: 7px 8px; text-align: center; border: 1px solid var(--border); font-size: 14px; }
.cart-summary { margin-top: 40px; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.cart-total { font-size: 1.1rem; font-weight: 600; }
.checkout-btn {
  padding: 16px 56px; background: var(--dark); color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background var(--transition);
}
.checkout-btn:hover { background: var(--dark-2); }

/* ── GENERIC PAGE ── */
.page-content { padding: 60px var(--pad); max-width: 760px; margin: 0 auto; }
.page-content h1 { font-family: var(--font-h); font-weight: 300; margin-bottom: 32px; }
.page-content p { color: #555; margin-bottom: 16px; line-height: 1.85; font-size: 14px; }
.page-content h2 { font-family: var(--font-h); font-weight: 300; font-size: 1.6rem; margin: 40px 0 16px; }

/* ── 404 ── */
.page-404 { padding: 100px var(--pad); text-align: center; }
.page-404-num { font-family: var(--font-h); font-size: 8rem; font-weight: 300; color: var(--pink); line-height: 1; margin-bottom: 8px; }
.page-404 h2 { font-family: var(--font-h); font-weight: 300; margin-bottom: 16px; }
.page-404 p { color: var(--muted); margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .products-grid > * { width: calc(50% - 2px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --pad: 20px; }
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .glowee-hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 50vh; order: -1; }
  .hero-content { padding: 48px 24px; }
  .glowee-duality { grid-template-columns: 1fr; }
  .glowee-pet { grid-template-columns: 1fr; }
  .pet-media { min-height: 300px; }
  .glowee-story { grid-template-columns: 1fr; }
  .story-media { min-height: 320px; }
  .story-content { padding: 48px 24px; }
  .girls-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .product-layout { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .trust-badges { gap: 20px; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .header-inner { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 480px) {
  .products-grid > * { width: calc(50% - 2px); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .girls-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Make contact form labels bigger */
.contact-form label,
.shopify-section .contact label {
  font-size: 17px !important;
  font-weight: 500 !important;
}
/* Make FAQ questions and answers bigger */
.faq-item summary, 
.faq-question, 
.collapsible__title,
.faq-main summary {
  font-size: 18px !important; /* Question size */
  font-weight: 600 !important;
}

.faq-item p, 
.faq-answer, 
.collapsible__content,
.faq-main p {
  font-size: 16px !important; /* Answer text size */
}

/* Make the specific page subtitle bigger */
.page-width .caption-with-letter-spacing, 
.section-template--* .caption-with-letter-spacing,
.rich-text .caption-with-letter-spacing {
  font-size: 15px !important;
}