@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&family=Meddon&family=Ballet&family=Alex+Brush&display=swap');

:root {
  --bg: #0e0d0f;
  --bg-raised: #17151a;
  --bg-card: #1a181c;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #e8c1c3;
  --pink-soft: #f7d9da;
  --pink-deep: #cf9fa1;
  --ink: #f3efef;
  --ink-strong: #f7f4f2;
  --ink-muted: rgba(247, 244, 242, 0.65);
  --ink-faint: rgba(247, 244, 242, 0.4);
  --max-width: 1400px;
  --nav-h: 68px;
  --announce-h: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-strong);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.serif { font-family: 'Playfair Display', serif; }
.script { font-family: 'Meddon', cursive; }

.tracked {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  height: var(--announce-h);
  background: #000;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 16px;
  text-align: center;
}
.announce-bar span { white-space: nowrap; }

@media (max-width: 600px) {
  /* Only one message is shown at a time on narrow screens (see nav.js) —
     centered and fully readable instead of overflowing off-screen. */
  .announce-bar { gap: 0; }

  /* Mobile OS fonts render these as colorful emoji (red heart, arrow)
     instead of the plain monochrome glyphs desktop browsers show — hidden
     here to match the site's look; text meaning is unaffected. */
  .glyph-heart, .glyph-arrow { display: none; }
}

/* ---------- Test mode banner ---------- */
.test-banner {
  background: var(--pink);
  color: #1a0f14;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 9px 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.test-banner strong { font-weight: 600; }

/* ---------- Header / nav ---------- */
.site-header {
  position: relative;
  z-index: 40;
}

.nav-wrap {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; }

.brand-word {
  height: 48px;
  width: auto;
  display: block;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-strong);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--pink);
  border-color: var(--pink);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-icons button, .nav-icons a {
  background: none;
  border: none;
  color: var(--ink-strong);
  display: flex;
  align-items: center;
  position: relative;
}
.nav-icons svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--pink);
  color: #1a0f14;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink-strong);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 20px 24px;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--pink);
  background: transparent;
  color: var(--ink-strong);
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.btn-primary {
  background: var(--pink);
  color: #1a0f14;
  border-color: var(--pink);
  font-weight: 500;
}
.btn-primary:hover { background: var(--pink-soft); }
.btn-outline:hover { background: rgba(237, 169, 192, 0.1); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--announce-h) - var(--test-h, 0px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(237, 169, 192, 0.09), transparent 55%),
    linear-gradient(120deg, #100e11 0%, #1c151a 45%, #120e10 100%);
}
.hero-bg-shape {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 0, transparent 2px);
  background-size: 26px 26px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 22%;
  display: block;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,13,15,0.94) 0%, rgba(14,13,15,0.78) 22%, rgba(14,13,15,0.4) 42%, rgba(14,13,15,0.08) 62%, rgba(14,13,15,0) 78%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-copy {
  max-width: 560px;
  padding: 60px 0;
}
.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 22px;
}
.hero-lips {
  width: 80px;
  flex-shrink: 0;
}
.hero-title {
  display: block;
  height: clamp(60px, 9vw, 160px);
  width: auto;
  margin: 0 0 0 -6px;
}
.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 26px;
  color: var(--ink-strong);
}
.hero-sub {
  color: var(--ink-muted);
  font-size: 17px;
  margin: 130px 0 34px;
  max-width: 380px;
}
.hero-divider {
  width: 64px;
  height: 1px;
  background: var(--pink);
  margin: 0 0 26px;
}
.scroll-hint {
  position: absolute;
  left: 48px;
  bottom: 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint .line { width: 1px; height: 34px; background: var(--ink-faint); animation: scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{ transform: scaleY(1); opacity: .4;} 50%{ transform: scaleY(1.3); opacity: 1;} }

@media (max-width: 980px) {
  .hero-media img { object-position: 62% 18%; }
  .hero-media-overlay {
    background: linear-gradient(to bottom, rgba(14,13,15,0.55) 0%, rgba(14,13,15,0.55) 42%, rgba(14,13,15,0.92) 100%);
  }
  .hero-copy {
    max-width: none;
    padding: 40px 0;
    /* Matches .hero's own height formula directly — percentage/stretch-based
       heights don't reliably propagate down through .hero-inner here. */
    height: calc(100vh - var(--nav-h) - var(--announce-h) - var(--test-h, 0px));
    display: flex;
    flex-direction: column;
  }
  .scroll-hint { display: none; }

  /* Brand mark settles at the vertical middle of the hero photo; the
     subhead + CTA drop to the bottom, each using the flex column's
     leftover space instead of a fixed offset. */
  .hero-lips { width: 56px; }
  .hero-title { height: 92px; }
  .hero-brand-row { margin-top: auto; }
  .hero-sub { margin-top: auto; margin-bottom: 24px; }
}

/* ---------- Section heading ---------- */
.section-head {
  text-align: center;
  margin: 0 0 44px;
}
.section-head .lips-icon { width: 26px; margin: 14px auto; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
  font-weight: 500;
}
.section-head p {
  color: var(--ink-muted);
  margin: 10px 0 0;
  font-size: 15px;
}

section { padding: 90px 0; }

/* ---------- Filter chips ---------- */
.chip-row {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.chip {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}
.chip.active, .chip:hover { color: var(--pink); border-color: var(--pink); }

/* ---------- Product grid / cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.card-media {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #241a20 0%, #120f13 70%);
}
.card-media .lips-outline { position: absolute; top: 50%; left: 50%; width: 40%; transform: translate(-50%,-50%); opacity: 0.35; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.card-media .card-img-primary,
.card-media .card-img-hover {
  position: absolute;
  inset: 0;
}
.card-media .card-img-hover {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card:hover .card-img-hover { opacity: 1; }
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink);
  color: #1a0f14;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 600;
}
.card-body { padding: 22px 20px 26px; text-align: center; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
}
.card-price { font-size: 14px; color: var(--ink-muted); margin: 0 0 14px; }
.card-price .was { text-decoration: line-through; opacity: 0.55; margin-right: 8px; }
.card-price .now { color: var(--pink); font-weight: 500; }
.card-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-strong);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 3px;
}

/* ---------- Brand note ---------- */
.brand-note {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.brand-note::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('../img/lips-pattern-tile.png');
  background-repeat: repeat;
  background-size: 420px auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.brand-note-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-note-divider { margin: 0 0 34px; }
.brand-note p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 26px;
}
.brand-note p.brand-note-lead {
  font-family: 'Alex Brush', cursive;
  font-size: 46px;
  color: var(--pink);
  line-height: 1.5;
  margin: 14px 0 0;
}
.brand-note-lead-icon {
  display: inline-block;
  width: 60px;
  vertical-align: middle;
  margin-left: 2px;
}

/* ---------- Behind Hushh (moodboard section) ---------- */
.behind-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 15%, rgba(237, 169, 192, 0.1), transparent 50%),
    radial-gradient(ellipse at 88% 85%, rgba(237, 169, 192, 0.07), transparent 55%),
    linear-gradient(160deg, #171215 0%, #0e0d0f 55%, #14100f 100%);
}
.behind-grid {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.behind-heading {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 20px;
}
.behind-heading .script {
  font-family: 'Meddon', cursive;
  color: var(--pink);
  font-weight: 400;
  font-size: 1.2em;
}
.behind-copy { color: var(--ink-muted); font-size: 15px; max-width: 340px; margin: 26px 0 32px; }

.behind-collage { position: relative; min-height: 460px; }
.collage-photo {
  position: absolute;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}
.collage-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.behind-collage .photo-1 { top: 0; left: 0; width: 58%; height: 290px; z-index: 1; transform: rotate(-2deg); }
.behind-collage .photo-3 { top: 10px; right: 0; width: 30%; height: 400px; z-index: 2; transform: rotate(2deg); }
.behind-collage .photo-2 { bottom: 0; left: 22%; width: 38%; height: 250px; z-index: 3; transform: rotate(-3deg); }

.collage-charm {
  position: absolute;
  top: 202px;
  left: 41%;
  width: 18px;
  height: auto;
  z-index: 5;
  transform: translateX(-50%) rotate(-4deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

.collage-tag {
  position: absolute;
  bottom: 46px;
  left: 0;
  width: 108px;
  z-index: 4;
  background: #16121a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 14px;
  text-align: center;
  transform: rotate(-6deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}
.collage-tag p {
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink-muted);
  margin: 0;
}
.collage-tag [data-icon] {
  display: block;
  width: 14px;
  margin: 10px auto 0;
  color: var(--pink);
}
.collage-tag [data-icon] svg { width: 100%; height: 100%; }

.collage-sparkle {
  position: absolute;
  display: block;
  width: 30px;
  opacity: 0.6;
  z-index: 0;
}
.collage-sparkle img { display: block; width: 100%; height: auto; }
.collage-sparkle-1 { top: 2%; left: 60%; width: 24px; transform: rotate(-16deg); }
.collage-sparkle-2 { bottom: 6%; right: 2%; width: 20px; transform: rotate(14deg); opacity: 0.4; }

@media (max-width: 900px) {
  .behind-grid { grid-template-columns: 1fr; }
  .behind-collage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
  }
  .collage-photo {
    position: static;
    width: 100% !important;
    height: 280px !important;
    transform: none !important;
  }
}

.tagline-strip {
  text-align: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.tagline-strip p:first-child {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 8px;
}
.tagline-strip p.script {
  font-family: 'Meddon', cursive;
  color: var(--pink);
  font-size: 34px;
  margin: 0;
}

/* ---------- Product detail ---------- */
.product-layout {
  display: grid;
  grid-template-columns: 88px minmax(0,1fr) minmax(320px, 440px);
  gap: 26px;
  align-items: start;
}
.thumb-col { display: flex; flex-direction: column; gap: 12px; }
.thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #241a20 0%, #120f13 70%);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.thumb.active { border-color: var(--pink); }
.thumb .lips-outline { position: absolute; top: 50%; left: 50%; width: 40%; transform: translate(-50%,-50%); opacity: 0.3; }
.thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.main-media {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2a1e24 0%, #120f13 65%, #1c1418 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-media .lips-outline { width: 34%; opacity: 0.35; }
.main-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.media-frame { position: relative; }
.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 13, 15, 0.55);
  color: var(--ink-strong);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}
.media-nav:hover { background: var(--pink); color: #1a0f14; }
.media-nav-prev { left: 14px; }
.media-nav-next { right: 14px; }
.media-nav.hidden { display: none; }
.pd-title { font-family: 'Playfair Display', serif; font-size: 34px; margin: 0 0 12px; font-weight: 500; }
.pd-price { font-size: 20px; margin: 0 0 22px; }
.pd-price .was { text-decoration: line-through; color: var(--ink-faint); margin-right: 10px; font-size: 16px; }
.pd-price .now { color: var(--pink); }
.pd-tagline {
  font-family: 'Meddon', cursive;
  color: var(--pink);
  font-size: 20px;
  margin: 0 0 14px;
}
.pd-desc { color: var(--ink-muted); font-size: 15px; margin: 0 0 28px; }
.pd-details-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pd-details-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-muted);
  font-size: 14px;
}
.pd-details-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 11px;
  background-image: url('../img/lips.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pd-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 12px; color: var(--ink-muted); }
.swatches { display: flex; gap: 12px; margin-bottom: 26px; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer; }
.swatch.active { outline: 1px solid var(--pink); outline-offset: 3px; }
.sizes { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.size-btn {
  min-width: 52px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink-strong);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.size-btn.active { border-color: var(--pink); color: var(--pink); }
.size-btn.unavailable {
  color: var(--ink-faint);
  border-color: var(--line);
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}
.swatch.no-hex { background-size: cover; background-position: center; }
.size-guide { font-size: 12px; text-decoration: underline; color: var(--ink-muted); margin-bottom: 26px; display: inline-block; }
.pd-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.wishlist-btn { width: 56px; flex-shrink: 0; padding: 16px; }
.wishlist-btn svg { width: 18px; height: 18px; }
.wishlist-btn.active { border-color: var(--pink); }
.wishlist-btn.active svg { fill: var(--pink); stroke: var(--pink); }
.wishlist-remove-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  text-decoration: underline;
  color: var(--ink-muted);
}
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item summary {
  padding: 16px 2px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after { content: '+'; font-size: 16px; color: var(--pink); }
.accordion-item[open] summary::after { content: '\2212'; }
.accordion-item .panel { padding: 0 2px 18px; color: var(--ink-muted); font-size: 14px; }
.share-row { display: flex; align-items: center; gap: 14px; margin-top: 24px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.share-row svg { width: 17px; height: 17px; }
.test-flag {
  border: 1px dashed var(--pink);
  color: var(--pink);
  font-size: 12px;
  padding: 12px 14px;
  margin-bottom: 22px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .thumb-col { flex-direction: row; overflow-x: auto; }
  .thumb { width: 74px; flex-shrink: 0; }
  /* Let horizontal drags on the photo drive our own swipe handler instead
     of the browser's edge-swipe/back gesture; vertical scroll still works. */
  .main-media { touch-action: pan-y; }
}

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.about-text {
  padding: 90px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.1;
}
.about-text .lips-icon { width: 24px; margin: 18px 0; }
.about-text p { color: var(--ink-muted); font-size: 16px; margin: 0 0 20px; max-width: 480px; }
.about-link { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; border-bottom: 1px solid var(--pink); padding-bottom: 4px; display: inline-block; margin-top: 10px; }
.about-visual {
  background:
    radial-gradient(ellipse at 60% 20%, rgba(237,169,192,0.12), transparent 55%),
    linear-gradient(150deg, #26232a 0%, #100e11 70%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-visual .lips-outline { width: 30%; opacity: 0.5; }
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.value-strip {
  background: var(--pink);
  padding: 40px 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.value-grid .value {
  color: #1a0f14;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.value-grid svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-text { padding: 60px 24px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Legal pages (Privacy Policy, etc.) ---------- */
.legal-page {
  max-width: 760px;
  padding: 80px 0 120px;
}
.legal-page h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 8px;
}
.legal-updated {
  color: var(--ink-faint);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 40px;
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 44px 0 14px;
}
.legal-page p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.legal-list {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.8;
}
.legal-list li { margin-bottom: 8px; }
.legal-page a { color: var(--pink); text-decoration: underline; }
.legal-page code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
}

/* ---------- Cart / checkout ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: 40px;
  align-items: start;
}
.bag-title { font-family: 'Playfair Display', serif; font-size: 30px; margin: 0 0 28px; font-weight: 500; }
.bag-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.bag-item-media {
  width: 96px; height: 120px;
  background: linear-gradient(160deg, #241a20 0%, #120f13 70%);
  position: relative; overflow: hidden;
}
.bag-item-media .lips-outline { position: absolute; top: 50%; left: 50%; width: 44%; transform: translate(-50%,-50%); opacity: 0.3; }
.bag-item-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.bag-item-info h4 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 17px; margin: 0 0 6px; }
.bag-item-info p { margin: 0; font-size: 13px; color: var(--ink-muted); }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); }
.qty-control button { background: none; border: none; color: var(--ink-strong); width: 32px; height: 32px; }
.qty-control span { width: 30px; text-align: center; font-size: 13px; }
.bag-item-price { text-align: right; font-size: 14px; }
.bag-item-price .was { text-decoration: line-through; color: var(--ink-faint); display: block; font-size: 12px; }
.remove-x { background: none; border: none; color: var(--ink-faint); font-size: 18px; margin-left: 14px; }
.order-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.summary-box {
  border: 1px solid var(--line);
  padding: 30px 26px;
  background: var(--bg-card);
}
.summary-box h3 { font-family: 'Playfair Display', serif; font-weight: 500; margin: 0 0 22px; font-size: 22px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-muted); margin-bottom: 14px; }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; padding-top: 18px; border-top: 1px solid var(--line); margin-bottom: 22px; }
.summary-total span:last-child { color: var(--pink); font-family: 'Playfair Display', serif; }
.pay-icons { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.pay-icons span {
  border: 1px solid var(--line);
  font-size: 11px;
  padding: 8px 10px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}
.secure-note { text-align: center; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 14px; }
.checkout-msg { font-size: 12px; color: var(--pink); margin-top: 12px; line-height: 1.6; display: none; }
.checkout-msg.show { display: block; }
.empty-bag { text-align: center; padding: 80px 0; color: var(--ink-muted); }

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .bag-item { grid-template-columns: 70px 1fr; grid-template-rows: auto auto; }
  .qty-control, .bag-item-price { grid-column: 2; }
  /* Media was a fixed 96px wide regardless of breakpoint, overflowing its
     70px mobile column and covering the first word(s) of the item title. */
  .bag-item-media { width: 70px; height: 88px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--line);
  padding: 46px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid .item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-grid svg { width: 24px; height: 24px; color: var(--pink); }
.trust-grid h5 { margin: 0; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.trust-grid p { margin: 0; font-size: 12px; color: var(--ink-faint); }
@media (max-width: 700px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 12px;
}
.footer-links { display: flex; justify-content: center; gap: 26px; margin-bottom: 20px; flex-wrap: wrap; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
.footer-links a:hover { color: var(--pink); }

/* ---------- Success / kiss page ---------- */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 20px;
}
.kiss-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.kiss-mark {
  position: absolute;
  width: 46px;
  opacity: 0;
  transform: scale(0.4) rotate(0deg);
  animation: kiss-pop 0.9s ease forwards;
}
@keyframes kiss-pop {
  0% { opacity: 0; transform: scale(0.2) rotate(var(--rot, 0deg)); }
  60% { opacity: var(--op, 0.85); transform: scale(1.08) rotate(var(--rot, 0deg)); }
  100% { opacity: var(--op, 0.85); transform: scale(1) rotate(var(--rot, 0deg)); }
}
.success-content {
  position: relative;
  z-index: 2;
}
.success-content .lips-icon { width: 36px; margin: 26px auto; }
.success-title {
  font-family: 'Meddon', cursive;
  color: var(--pink-soft);
  font-size: clamp(34px, 6vw, 56px);
  margin: 0;
}
.success-sub { color: var(--ink-muted); font-size: 16px; margin: 18px 0 0; }
.success-xx {
  font-family: 'Meddon', cursive;
  color: var(--pink);
  font-size: 30px;
  letter-spacing: -0.5px;
  margin: 26px 0 40px;
}
.order-ref { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.08em; margin-bottom: 26px; }

/* ---------- Login page ---------- */
.login-page {
  display: grid;
  grid-template-columns: minmax(420px, 560px) 1fr;
  height: 100vh;
}
.login-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 64px 32px;
  overflow-y: auto;
}
.login-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.login-brand .brand-mark { width: 34px; height: 34px; }
.login-brand .brand-word { height: 34px; width: auto; }
.login-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  margin: 0 0 10px;
}
.login-kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--pink);
  margin: 0;
}
.login-lips { width: 22px; margin: 18px 0 30px; }
.login-form { display: flex; flex-direction: column; gap: 22px; }
.login-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 10px;
}
.login-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-strong);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
}
.login-input::placeholder { color: var(--ink-faint); }
.login-input:focus { outline: none; border-color: var(--pink); }
.login-input-wrap { position: relative; }
.login-input-wrap .login-input { padding-right: 44px; }
.login-eye {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ink-faint);
  display: flex;
}
.login-eye svg { width: 18px; height: 18px; }
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.login-checkbox { display: flex; align-items: center; gap: 8px; color: var(--ink-muted); cursor: pointer; }
.login-checkbox input { accent-color: var(--pink); width: 15px; height: 15px; }
.login-forgot { color: var(--pink); }
.login-submit { margin-top: 4px; }
.login-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-faint);
  font-size: 12px;
  margin: 26px 0;
}
.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.login-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.login-social svg { width: 17px; height: 17px; }
.login-signup {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin: 22px 0 0;
}
.login-signup a { color: var(--pink); }
.login-trust {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.login-trust span { display: flex; align-items: center; gap: 6px; }
.login-trust svg { width: 15px; height: 15px; color: var(--pink); }
.login-visual { position: relative; overflow: hidden; }
.login-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.login-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,15,0.5) 0%, rgba(14,13,15,0) 30%);
}
.login-caption {
  position: absolute;
  right: 32px;
  bottom: 32px;
  background: rgba(14,13,15,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px 26px;
  text-align: center;
  max-width: 260px;
}
.login-caption img { width: 20px; margin: 0 auto 12px; }
.login-caption p:first-of-type {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 6px;
}
.login-caption p.script {
  font-family: 'Meddon', cursive;
  color: var(--pink);
  font-size: 22px;
  margin: 0;
}

@media (max-width: 900px) {
  .login-page { grid-template-columns: 1fr; height: auto; }
  .login-visual { height: 42vh; min-height: 280px; order: -1; }
  .login-panel { padding: 40px 24px; overflow-y: visible; }
  .login-caption { right: 20px; bottom: 20px; padding: 16px 18px; max-width: 200px; }
}

/* ---------- Product reviews ---------- */
.reviews-section { border-top: 1px solid var(--line); padding: 70px 0; }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.reviews-header h2 { font-size: 28px; font-weight: 500; margin: 0; }
.reviews-summary { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-muted); }
.reviews-stars, .review-stars { color: var(--pink); letter-spacing: 2px; font-size: 15px; }
.reviews-avg-num { color: var(--ink-strong); font-weight: 500; }
.reviews-list { display: grid; gap: 22px; margin-bottom: 48px; max-width: 720px; }
.review-card { border: 1px solid var(--line); padding: 22px 24px; background: var(--bg-card); }
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.review-author { font-size: 13px; font-weight: 500; }
.review-date { font-size: 12px; color: var(--ink-faint); margin-left: auto; }
.review-text { color: var(--ink-muted); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.review-photo { width: 120px; height: 120px; object-fit: cover; border: 1px solid var(--line); display: block; }
.reviews-empty { color: var(--ink-faint); font-size: 14px; }

.review-locked {
  border: 1px dashed var(--line);
  padding: 24px;
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 480px;
}
.review-locked a { color: var(--pink); }

.review-form { max-width: 480px; display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--line); padding-top: 32px; }
.review-form-title { font-size: 14px; color: var(--ink-muted); margin: 0; }
.star-picker { display: flex; gap: 6px; }
.star-picker button { background: none; border: none; font-size: 26px; color: var(--line); cursor: pointer; line-height: 1; padding: 0; }
.star-picker button.active { color: var(--pink); }
.review-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-strong);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  resize: vertical;
}
.review-textarea::placeholder { color: var(--ink-faint); }
.review-textarea:focus { outline: none; border-color: var(--pink); }
.review-photo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  width: fit-content;
}
.review-photo-label svg { width: 16px; height: 16px; }
.review-photo-preview { position: relative; width: 100px; }
.review-photo-preview img { width: 100px; height: 100px; object-fit: cover; border: 1px solid var(--line); display: block; }
.review-photo-preview button {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: #1a0f14;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.review-submit { align-self: flex-start; }

/* generic utility */
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }
