/* =======================================================
   电子钱包授权支付弹窗
   ======================================================= */
.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wallet-modal.active {
  display: flex;
}

.wm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wm-dialog {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 20px;
  padding: 32px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 0 60px rgba(200, 16, 46, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.wm-close:hover {
  background: rgba(200, 16, 46, 0.2);
  color: #fff;
}

.wm-close svg {
  width: 18px;
  height: 18px;
}

.wm-header {
  text-align: center;
  margin-bottom: 16px;
}

.wm-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.wm-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.wm-products {
  margin-bottom: 16px;
}

.wp-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.wp-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
}

.wp-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wp-name {
  font-weight: 500;
  color: #fff;
}

.wp-spec {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.4);
}

.wp-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--champagne);
}

.wm-wallet-select {
  margin-bottom: 16px;
}

.wm-shipping {
  margin-bottom: 16px;
}

.ws-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.wsh-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsh-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsh-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wsh-field.wsh-full {
  grid-column: 1 / -1;
}

.wsh-field label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.wsh-field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.875rem;
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.wsh-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.wsh-field input:focus {
  border-color: var(--blood);
  background: rgba(200, 16, 46, 0.08);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.wsh-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 100, 100, 0.5);
}

.ws-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
}

.ws-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.ws-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 16, 46, 0.3);
}

.ws-option.active {
  background: rgba(200, 16, 46, 0.15);
  border-color: var(--blood);
  color: #fff;
}

.wso-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
}

.wso-icon.okx {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.wm-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.wm-cancel {
  flex: 1;
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.wm-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.wm-confirm {
  flex: 2;
  padding: 16px;
}

.wm-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.wm-footer svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
  opacity: 0.6;
}

.wm-error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 100, 100, 0.35);
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.12);
  color: #ffb7bf;
  font-size: 0.82rem;
}

.wm-subscribe-options {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
}

.wso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wso-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.wso-grid select {
  width: 100%;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  padding: 0 12px;
  outline: none;
}

.wso-grid option {
  color: #111;
}

.wm-subscribe-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.wm-subscribe-preview div {
  border: 1px solid rgba(228, 193, 111, 0.16);
  background: rgba(228, 193, 111, 0.05);
  border-radius: 8px;
  padding: 10px;
}

.wm-subscribe-preview span,
.wm-subscribe-preview strong {
  display: block;
}

.wm-subscribe-preview span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.wm-subscribe-preview strong {
  margin-top: 4px;
  color: var(--champagne);
  font-size: 0.86rem;
}

.wm-risk-check {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.wm-risk-check input {
  margin-top: 3px;
  accent-color: var(--blood);
}

/* 成功弹窗 */
.wm-dialog.wm-success {
  text-align: center;
  max-width: 420px;
}

.wms-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.2), rgba(46, 213, 115, 0.05));
  border: 1px solid rgba(46, 213, 115, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.3); }
  50% { box-shadow: 0 0 0 20px rgba(46, 213, 115, 0); }
}

.wms-icon svg {
  width: 40px;
  height: 40px;
  stroke: #2ed573;
}

.wms-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.wms-subtitle {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 28px;
}

.wms-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
}

.wmsd-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
}

.wmsd-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wmsd-row span:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.wmsd-row span:last-child {
  color: #fff;
  font-weight: 500;
}

.wms-btn {
  width: 100%;
  padding: 16px;
}

/* =======================================================
   VIRILIS NOIR · After Hours Edition
   Palette:  Noir · Blood Red · Rose Gold · Champagne · Nude
   Type:     Playfair Display + Cormorant Garamond + Inter + Noto Serif SC
   Mood:     Tom Ford × Chanel N°5 × After Dark
   ======================================================= */

:root {
  /* Base noir */
  --noir:       #0d0608;
  --noir-2:     #160a0e;
  --noir-3:     #22101a;
  --velvet:     #2a0f18;
  --smoke:      rgba(255, 230, 200, .04);

  /* Heat */
  --blood:      #c8102e;
  --blood-2:    #e22f4a;
  --rose:       #e8536f;
  --copper:     #b76e79;
  --champagne:  #e4c16f;
  --champagne-2:#f5dfa0;
  --nude:       #e8c9b5;

  /* Text */
  --text:       #f3e6d4;
  --text-2:     #d8c0a6;
  --muted:      #8a7668;
  --dim:        #5a4e46;

  /* Borders */
  --border:     rgba(232, 201, 181, .14);
  --border-h:   rgba(200, 16, 46, .4);

  /* Motion */
  --ease:       cubic-bezier(.22, 1, .36, 1);
  --ease-spring:cubic-bezier(.34, 1.56, .64, 1);

  /* Shadow */
  --shadow-red: 0 24px 60px -20px rgba(200, 16, 46, .5);
  --shadow-deep:0 30px 80px -30px rgba(0, 0, 0, .95);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Serif SC', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  background: var(--noir);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
input { font-family: inherit; }
::selection { background: var(--blood); color: var(--text); }

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', 'Noto Serif SC', serif; font-weight: 600; }

/* =========================================================
   AMBIENT warmth (fixed mesh + blobs)
   ========================================================= */
.ambient {
  position: fixed; inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 80% 10%, rgba(200, 16, 46, .18), transparent 50%),
    radial-gradient(900px 600px at 0% 40%, rgba(183, 110, 121, .12), transparent 55%),
    radial-gradient(1100px 800px at 60% 100%, rgba(228, 193, 111, .08), transparent 60%),
    var(--noir);
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  animation: float 16s ease-in-out infinite;
  mix-blend-mode: screen;
}
.blob.b1 { width: 540px; height: 540px; background: radial-gradient(circle, #c8102e, transparent 70%); top: -180px; right: -120px; }
.blob.b2 { width: 620px; height: 620px; background: radial-gradient(circle, #b76e79, transparent 70%); top: 40%; left: -240px; animation-delay: -6s; }
.blob.b3 { width: 460px; height: 460px; background: radial-gradient(circle, #e4c16f, transparent 75%); bottom: -100px; right: 22%; animation-delay: -10s; opacity: .3; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(.95); }
}

/* =========================================================
   Falling petals
   ========================================================= */
.petals {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  width: 22px; height: 22px;
  opacity: 0;
  animation: petalFall linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.petal svg { width: 100%; height: 100%; }
@keyframes petalFall {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  8% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(var(--dx, 120px), 110vh) rotate(var(--rot, 720deg)); opacity: 0; }
}

/* =========================================================
   Cursor ember
   ========================================================= */
.ember-cursor {
  position: fixed;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, .16), transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
  mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) { .ember-cursor { opacity: 1; } }

/* =========================================================
   Announcement
   ========================================================= */
.announce {
  background: var(--velvet);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex; align-items: center;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--champagne);
  position: relative;
  z-index: 40;
}
.announce-track {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  animation: mqa 44s linear infinite;
}
.announce .sep { color: var(--blood); }
@keyframes mqa { to { transform: translateX(-50%); } }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 44px;
  background: rgba(13, 6, 8, .7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: padding .3s var(--ease);
}
.nav.scrolled { padding: 12px 44px; background: rgba(13, 6, 8, .88); }

.brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: 'Playfair Display', serif;
}
.brand-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--text);
}
.brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--blood);
}

.nav-links {
  display: flex; justify-content: center; gap: 36px;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
}
.nav-links a {
  color: var(--text-2);
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--blood);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--blood-2); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--text-2);
  border-radius: 50%;
  transition: all .2s var(--ease);
}
.icon-btn:hover { color: var(--blood-2); background: rgba(200, 16, 46, .08); }
.icon-btn svg { width: 18px; height: 18px; }

.lang-switch {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-switch:hover {
  background: rgba(200, 16, 46, 0.15);
  border-color: var(--blood);
  color: var(--champagne);
}
body.lang-en .lang-switch {
  background: rgba(200, 16, 46, 0.15);
  border-color: var(--blood);
  color: var(--champagne);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); position: relative; z-index: 2; }
.btn span { position: relative; z-index: 2; }

.btn-ignite {
  color: var(--text);
  background: linear-gradient(135deg, #e22f4a 0%, #c8102e 50%, #7a0a1a 100%);
  box-shadow: 0 10px 28px -8px rgba(200, 16, 46, .6), inset 0 1px 0 rgba(255, 255, 255, .15);
  border: 1px solid rgba(228, 193, 111, .25);
}
.ignite-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 60px at var(--x, 50%) var(--y, 50%), rgba(255, 200, 120, .55), transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 1;
}
.btn-ignite:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(200, 16, 46, .8), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn-ignite:hover .ignite-glow { opacity: 1; }
.btn-ignite:hover svg { transform: translateX(4px); }

.btn-outline {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(232, 201, 181, .3);
}
.btn-outline:hover { border-color: var(--blood); color: var(--blood-2); background: rgba(200, 16, 46, .06); }

.btn-solid {
  color: var(--text);
  background: var(--velvet);
  border: 1px solid var(--border);
}
.btn-solid:hover { background: var(--blood); border-color: var(--blood); }
.btn-solid:hover svg { transform: translateX(3px); }

.btn-lg { padding: 16px 30px; font-size: 13px; }

:focus-visible { outline: 2px solid var(--blood-2); outline-offset: 3px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 60px 44px 80px;
  position: relative;
}
.hero-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-text { position: relative; z-index: 2; max-width: 640px; }
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--smoke);
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--champagne);
  margin-bottom: 30px;
}
.hero-meta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blood);
  animation: blink 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--blood);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(58px, 7.5vw, 130px);
  line-height: .96;
  letter-spacing: -.025em;
  margin-bottom: 34px;
  font-weight: 600;
}
.hero-title .line { display: block; }
.hero-title .line.accent {
  background: linear-gradient(135deg, var(--champagne-2) 0%, var(--blood-2) 60%, var(--blood) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--blood-2);
  position: relative;
}
.hero-title .italic {
  display: block;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-weight: 400;
  font-size: .42em;
  color: var(--text-2);
  margin: 16px 0 8px 6%;
  letter-spacing: .01em;
  line-height: 1.15;
}
.hero-title .italic em { color: var(--blood-2); }

.hero-lead {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-lead em { font-style: italic; color: var(--blood-2); font-weight: 500; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex; gap: 24px;
  padding: 22px 26px;
  background: rgba(22, 10, 14, .5);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  max-width: 580px;
}
.ht { flex: 1; padding-right: 20px; border-right: 1px solid var(--border); }
.ht:last-child { border-right: none; padding-right: 0; }
.ht strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.ht strong small {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  margin-left: 4px;
}
.ht span { font-size: 12px; color: var(--muted); letter-spacing: .04em; }

/* Hero art */
.hero-art {
  position: relative;
  height: 640px;
  display: grid; place-items: center;
}
.art-halo {
  position: absolute;
  width: 520px; height: 520px;
  left: 20%; top: 10%;
  background: radial-gradient(circle, rgba(200, 16, 46, .25) 0%, rgba(200, 16, 46, .05) 40%, transparent 70%);
  filter: blur(30px);
  animation: haloPulse 7s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.silhouette {
  position: relative;
  width: 420px;
  max-width: 85%;
  aspect-ratio: 3 / 4.2;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #2a0f18 0%, #0a0204 100%);
  animation: silFloat 8s ease-in-out infinite;
  box-shadow: 0 30px 60px -20px rgba(200, 16, 46, .5), 0 40px 80px -30px rgba(0,0,0,.7);
  margin: 0;
}
.silhouette img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.35) contrast(1.15) brightness(.72) saturate(.85);
  transition: transform 1.2s var(--ease);
}
.silhouette:hover img { transform: scale(1.04); }
.silhouette.no-img img { display: none; }
.sil-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, .35) 0%, transparent 55%, rgba(26, 6, 10, .5) 100%),
    linear-gradient(180deg, transparent 55%, rgba(10, 3, 5, .7) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.sil-grain {
  position: absolute; inset: -10%;
  z-index: 3;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .1) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .08) 1px, transparent 1.5px);
  background-size: 4px 4px, 6px 6px;
  opacity: .5;
  mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
  pointer-events: none;
}
.sil-vig {
  position: absolute; inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, .5) 100%);
  pointer-events: none;
}
@keyframes silFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, -12px); }
}

.art-bottle {
  position: absolute;
  right: 6%; bottom: 8%;
  width: 120px;
  z-index: 3;
  animation: bottleFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .7));
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
.ab-cap {
  width: 56px; height: 30px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a1a14 0%, #0a0604 100%);
  border-radius: 6px 6px 2px 2px;
  border-top: 1.5px solid #3a2a1f;
}
.ab-body {
  width: 120px; height: 200px;
  margin-top: -2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 25%),
    linear-gradient(135deg, #1a0a0e 0%, #0a0204 60%, #1a0a0e 100%);
  border-radius: 16px 16px 8px 8px;
  border: 1px solid rgba(228, 193, 111, .25);
  position: relative;
  overflow: hidden;
}
.ab-body::before {
  content: ''; position: absolute;
  top: 0; left: 12%; width: 8px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.25), transparent 60%);
  filter: blur(1px);
}
.ab-label {
  position: absolute; inset: 14px 10px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  border: 1px solid var(--champagne);
  padding: 12px 6px;
  text-align: center;
  background: linear-gradient(180deg, #0f0608 0%, #1a0c10 100%);
}
.ab-top {
  font-family: 'Playfair Display', serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: .4em;
  color: var(--champagne);
}
.ab-mid {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 900;
  letter-spacing: .14em;
  background: linear-gradient(135deg, #f5dfa0, #e4c16f 60%, #b76e79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 4px 0;
}
.ab-line { width: 30px; height: 1px; background: var(--blood); margin: 6px auto; }
.ab-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--text-2);
}

.kiss { position: absolute; z-index: 4; }
.kiss-1 {
  top: 12%; right: 14%;
  width: 90px;
  animation: kissFade 8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes kissFade {
  0%, 100% { opacity: .8; transform: rotate(-15deg) scale(1); }
  50% { opacity: 1; transform: rotate(-10deg) scale(1.04); }
}

.rose { position: absolute; z-index: 4; }
.rose-1 {
  bottom: 26%; left: 8%;
  width: 70px;
  animation: roseTurn 14s ease-in-out infinite;
}
@keyframes roseTurn {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

.spark {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  box-shadow: 0 0 14px 3px var(--champagne);
  z-index: 3;
}
.sp-1 { top: 18%; left: 18%; animation: twinkle 3s ease-in-out infinite; }
.sp-2 { top: 58%; right: 22%; animation: twinkle 4s ease-in-out infinite .8s; }
.sp-3 { top: 32%; right: 8%; animation: twinkle 3.6s ease-in-out infinite 1.6s; }
.sp-4 { bottom: 14%; left: 30%; animation: twinkle 3.2s ease-in-out infinite 2.2s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 44px; bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--muted);
  z-index: 2;
}
.scroll-line {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--blood), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; left: -44px; top: 0;
  width: 22px; height: 100%;
  background: var(--blood-2);
  animation: scrLine 2s linear infinite;
}
@keyframes scrLine { to { left: 44px; } }

/* =========================================================
   Strip marquee
   ========================================================= */
.strip {
  padding: 20px 0;
  background: linear-gradient(180deg, transparent, var(--velvet), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.strip-track {
  display: inline-flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: mqa 36s linear infinite;
  width: max-content;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--text-2);
}
.strip-track .s-dot { color: var(--blood); font-style: normal; font-size: 14px; }

/* =========================================================
   Section heads (shared)
   ========================================================= */
.section-head { max-width: 1440px; margin: 0 auto 60px; padding: 0 44px; }
.section-head.center { text-align: center; }
.head-meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--champagne);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.head-meta.left { margin-left: 0; }
.head-meta.center { }
.hm-line { flex: 0 0 40px; height: 1px; background: var(--champagne); opacity: .5; }
.section-head.center .head-meta { display: inline-flex; }

.section-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(44px, 6vw, 96px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.025em;
}
.section-title span { display: block; }
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--blood-2);
}
.section-sub {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 560px;
}
.section-sub em { color: var(--blood-2); font-style: italic; font-weight: 500; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* =========================================================
   FLAGSHIP
   ========================================================= */
.flagship {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.fg-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.fg-visual {
  position: relative;
  height: 700px;
  display: grid; place-items: center;
}
.fg-halo {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, .35) 0%, rgba(228, 193, 111, .1) 35%, transparent 65%);
  filter: blur(40px);
  animation: haloPulse 8s ease-in-out infinite;
}
.fg-bottle {
  position: relative;
  width: 280px;
  z-index: 2;
  animation: bottleFloat 9s ease-in-out infinite;
  filter: drop-shadow(0 50px 70px rgba(0, 0, 0, .8)) drop-shadow(0 0 80px rgba(200, 16, 46, .3));
}
.fgb-cap {
  width: 130px; height: 68px;
  margin: 0 auto;
  background: linear-gradient(180deg, #3a2218 0%, #0d0404 100%);
  border-radius: 10px 10px 3px 3px;
  position: relative;
  border-top: 2px solid #4a321f;
}
.fgb-cap::before {
  content: ''; position: absolute;
  left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 100px; height: 1px;
  background: var(--champagne);
}
.fgb-body {
  width: 280px; height: 480px;
  margin-top: -3px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, transparent 20%),
    linear-gradient(135deg, #1a060a 0%, #0a0204 60%, #1a060a 100%);
  border-radius: 34px 34px 20px 20px;
  border: 1px solid rgba(228, 193, 111, .25);
  position: relative;
  overflow: hidden;
}
.fgb-body::before {
  content: ''; position: absolute;
  top: 0; left: 12%; width: 14px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.2), transparent 60%);
  filter: blur(2px);
}
.fgb-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  padding: 24px 16px;
  background: linear-gradient(180deg, #0a0204 0%, #1a080c 100%);
  border: 1px solid var(--champagne);
  text-align: center;
}
.fgbl-top {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .48em;
  color: var(--champagne);
  margin-bottom: 4px;
}
.fgbl-mid {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: .14em;
  background: linear-gradient(135deg, #f5dfa0 0%, #e4c16f 50%, #b76e79 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 6px 0;
}
.fgbl-rule { width: 50px; height: 1px; background: var(--blood); margin: 10px auto; }
.fgbl-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--text-2);
  margin-bottom: 14px;
}
.fgbl-ing {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 8.5px;
  letter-spacing: .24em;
  color: var(--nude);
  padding: 10px 0;
  border-top: 1px dashed rgba(228, 193, 111, .3);
  border-bottom: 1px dashed rgba(228, 193, 111, .3);
}
.fgbl-batch {
  font-size: 8px;
  letter-spacing: .28em;
  color: var(--muted);
  margin-top: 12px;
}

.fg-reflection {
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 80px;
  background: linear-gradient(180deg, rgba(26, 10, 14, .7), transparent);
  transform: scaleY(-1);
  opacity: .4;
  filter: blur(2px);
}

.fg-rose {
  position: absolute;
  right: 10%; top: 18%;
  width: 130px;
  color: var(--blood);
  animation: roseTurn 12s ease-in-out infinite;
  z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(200, 16, 46, .4));
}
.fg-kiss {
  position: absolute;
  left: 12%; bottom: 22%;
  width: 100px;
  z-index: 3;
  animation: kissFade 7s ease-in-out infinite;
}

.fg-text { max-width: 560px; }
.fg-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--champagne);
  margin-bottom: 26px;
  text-transform: uppercase;
}
.kicker-line { flex: 0 0 40px; height: 1px; background: var(--champagne); opacity: .6; }

.fg-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(56px, 6.5vw, 108px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 30px;
}
.fg-title em {
  font-style: italic;
  color: var(--blood-2);
  font-weight: 600;
}

.fg-lede {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 36px;
}
.fg-lede em { color: var(--blood-2); font-weight: 500; }

.fg-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 30px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 34px;
}
.fg-facts li {
  display: flex; align-items: baseline; gap: 10px;
}
.fg-facts b {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--champagne);
}
.fg-facts span {
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: .04em;
}

.fg-buy { display: flex; align-items: center; gap: 30px; margin-bottom: 18px; flex-wrap: wrap; }
.fg-price { display: flex; align-items: baseline; gap: 12px; }

/* Flagship dual button group */
.fg-btns {
  display: flex;
  gap: 12px;
  flex: 1;
}
.fg-btns .btn {
  flex: 1;
  justify-content: center;
}

.p-now {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #f5dfa0, #e4c16f 60%, #b76e79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.p-old { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.p-badge {
  background: var(--blood);
  color: var(--text);
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: .1em;
}

.fg-ship {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .02em;
}
.fg-ship svg { width: 16px; height: 16px; color: var(--champagne); flex-shrink: 0; }

/* =========================================================
   COLLECTION
   ========================================================= */
.collection {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.collection .section-head { padding: 0; margin-bottom: 60px; }

.product-grid {
  max-width: 1440px; margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(42, 15, 24, .6), rgba(13, 6, 8, .6));
  border: 1px solid var(--border);
  padding: 28px 28px 30px;
  backdrop-filter: blur(14px);
  transition: all .4s var(--ease);
  will-change: transform;
  overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at var(--mx, 50%) var(--my, 0%), rgba(200, 16, 46, .15), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.product-card:hover { border-color: var(--blood); transform: translateY(-8px); box-shadow: var(--shadow-red); }
.product-card:hover::before { opacity: 1; }
.product-card.featured {
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .15), rgba(42, 15, 24, .6));
  border-color: rgba(200, 16, 46, .4);
}

/* Product card link wrapper — makes entire card clickable */
.pc-link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}
.pc-link-wrap::after {
  content: '';
  position: absolute;
  inset: -28px -28px -30px;
  border-radius: 0;
  pointer-events: none;
}

.pc-ribbon {
  position: absolute; top: 20px; right: 20px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: rgba(13, 6, 8, .5);
  backdrop-filter: blur(4px);
}
.pc-ribbon.hot {
  color: var(--text);
  background: var(--blood);
  border-color: var(--blood);
}

.pc-visual {
  position: relative;
  height: 280px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at center, rgba(200, 16, 46, .1), transparent 65%),
    linear-gradient(180deg, rgba(22, 10, 14, .8), rgba(13, 6, 8, .8));
}
.pc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(200, 16, 46, .25), transparent 60%);
  opacity: .6;
  transition: opacity .4s var(--ease);
}
.pc-glow.strong { background: radial-gradient(circle at 50% 60%, rgba(200, 16, 46, .5), rgba(228, 193, 111, .15) 50%, transparent 75%); }
.product-card:hover .pc-glow { opacity: 1; }

.pc-bottle {
  position: relative;
  width: 100px; height: 170px;
  z-index: 2;
  transition: transform .6s var(--ease);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, .7));
}
.product-card:hover .pc-bottle { transform: translateY(-8px) rotate(-3deg); }
.pcb-cap {
  width: 54px; height: 28px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a1a14 0%, #0a0604 100%);
  border-radius: 5px 5px 2px 2px;
  border-top: 1.5px solid #3a2a1f;
}
.pcb-body {
  width: 100px; height: 144px;
  margin-top: -2px;
  border-radius: 12px 12px 8px 8px;
  border: 1px solid rgba(228, 193, 111, .3);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.pcb-body::before {
  content: ''; position: absolute;
  top: 0; left: 10%; width: 8px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.3), transparent 60%);
  filter: blur(1px);
}
.pcb-body span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .22em;
  padding: 5px 8px;
  border: 1px solid currentColor;
  position: relative;
  z-index: 2;
}
.pc-bottle.v1 .pcb-body { background: linear-gradient(135deg, #8a5a2a 0%, #3a2210 50%, #8a5a2a 100%); }
.pc-bottle.v1 .pcb-body span { color: var(--champagne-2); }
.pc-bottle.v2 .pcb-body { background: linear-gradient(135deg, #1a060a 0%, #0a0204 50%, #1a060a 100%); }
.pc-bottle.v2 .pcb-body span { color: var(--blood-2); }
.pc-bottle.v3 .pcb-body { background: linear-gradient(135deg, #14141a 0%, #08080c 50%, #14141a 100%); }
.pc-bottle.v3 .pcb-body span { color: var(--nude); }

.pc-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--champagne);
  letter-spacing: .14em;
  margin-bottom: 6px;
  display: block;
}
.pc-body h3 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 8px;
}
.pc-body h3 em {
  display: block;
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-weight: 500;
  font-size: .72em;
  color: var(--blood-2);
  margin-top: 2px;
}
.pc-desc {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.pc-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.pc-chips span {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--text-2);
  letter-spacing: .06em;
}
.pc-stars {
  font-size: 13px;
  color: var(--champagne);
  letter-spacing: .14em;
  margin-bottom: 20px;
}
.pc-stars small {
  color: var(--muted);
  letter-spacing: .02em;
  margin-left: 8px;
  font-size: 12px;
}
.pc-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.pc-price { display: flex; align-items: baseline; gap: 8px; }
.pc-price .now {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--champagne);
  letter-spacing: -.02em;
}
.pc-price .old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Product card action buttons */
.pc-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}
.pc-actions .btn { flex: 1; justify-content: center; }
.btn-sm {
  padding: 11px 18px !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
}
.btn-sm svg { width: 14px; height: 14px; }
.pc-detail-btn {
  border-color: var(--border) !important;
  color: var(--text-2) !important;
}
.pc-detail-btn:hover {
  border-color: var(--blood) !important;
  color: var(--blood-2) !important;
}

/* Bundle */
.bundle {
  max-width: 1440px; margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, .18), transparent 50%),
    linear-gradient(180deg, #1a080c, #0a0204);
  border: 1px solid var(--border-h);
  padding: 60px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bundle::before {
  content: '';
  position: absolute;
  left: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(228, 193, 111, .25), transparent 60%);
  filter: blur(30px);
}
.bundle::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, .35), transparent 60%);
  filter: blur(40px);
}
.b-left, .b-right { position: relative; z-index: 2; }
.b-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--champagne);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.b-left h3 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.b-left h3 em { font-style: italic; color: var(--blood-2); }
.b-left p {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.b-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.b-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.b-list svg {
  width: 18px; height: 18px;
  color: var(--blood-2);
  flex-shrink: 0;
}
.b-list b { color: var(--champagne); font-weight: 700; }

.b-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 22px;
  padding-left: 50px;
  border-left: 1px solid var(--border);
}
.b-price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.b-price small {
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--muted);
  text-transform: uppercase;
}
.bp-now {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(135deg, #f5dfa0, #e4c16f 60%, #b76e79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
  line-height: 1;
}
.bp-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.bundle-cta { width: 100%; justify-content: center; }

/* =========================================================
   PILLARS
   ========================================================= */
.pillars {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.pillars .section-head { padding: 0; }
.pillars-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.p-card {
  background: linear-gradient(180deg, rgba(22, 10, 14, .85), rgba(13, 6, 8, .85));
  padding: 44px 34px;
  position: relative;
  transition: all .4s var(--ease);
}
.p-card:hover {
  background: linear-gradient(180deg, rgba(200, 16, 46, .12), rgba(13, 6, 8, .9));
  transform: translateY(-4px);
}
.p-card:hover svg { color: var(--blood-2); transform: scale(1.08); }
.p-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--champagne);
  margin-bottom: 22px;
}
.p-card svg {
  width: 46px; height: 46px;
  color: var(--champagne);
  margin-bottom: 22px;
  transition: all .4s var(--ease);
}
.p-card h4 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.p-card p {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   INGREDIENTS
   ========================================================= */
.ingredients {
  padding: 120px 44px;
  background: linear-gradient(180deg, transparent, rgba(42, 15, 24, .4), transparent);
  border-bottom: 1px solid var(--border);
}
.ing-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.ing-left {
  position: sticky;
  top: 100px;
}
.ing-rose-bg {
  position: absolute;
  right: 0; bottom: -80px;
  width: 360px;
  color: rgba(200, 16, 46, .12);
  z-index: -1;
  animation: roseTurn 20s ease-in-out infinite;
}
.ing-left .head-meta { color: var(--blood-2); }
.ing-left .hm-line { background: var(--blood-2); }

.ing-list {
  list-style: none;
  border-top: 1px solid var(--border);
}
.ing-list li {
  display: grid;
  grid-template-columns: 50px 1fr 90px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
  position: relative;
}
.ing-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, rgba(200, 16, 46, .1), transparent);
  transition: width .4s var(--ease);
}
.ing-list li:hover::before { width: 100%; }
.ing-list li:hover { padding-left: 10px; }
.ing-list li > * { position: relative; z-index: 1; }
.il-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: var(--blood-2);
}
.il-body h4 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.il-body h4 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: .8em;
  color: var(--champagne);
  margin-left: 10px;
  letter-spacing: .04em;
}
.il-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.il-pct {
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #f5dfa0, #e4c16f 60%, #b76e79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.il-pct small {
  font-size: 14px;
  color: var(--champagne);
  margin-left: 2px;
  -webkit-text-fill-color: var(--champagne);
}

/* =========================================================
   RITUAL
   ========================================================= */
.ritual {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.ritual .section-head { padding: 0; }
.ritual-track {
  max-width: 1440px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 40px;
}
.rt-line {
  position: absolute;
  top: 40px; left: 5%; right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--champagne), var(--champagne) 6px, transparent 6px, transparent 12px);
  opacity: .4;
}
.rt-step { position: relative; padding-top: 40px; }
.rt-dot {
  position: absolute;
  top: 32px; left: 30px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 0 4px var(--noir), 0 0 0 5px var(--blood), 0 0 14px var(--blood);
  z-index: 2;
}
.rt-card {
  padding: 32px 28px;
  background:
    linear-gradient(180deg, rgba(42, 15, 24, .6), rgba(13, 6, 8, .6));
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all .4s var(--ease);
  position: relative;
}
.rt-card:hover { border-color: var(--blood); transform: translateY(-8px); box-shadow: var(--shadow-red); }
.rt-card small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--champagne);
  margin-bottom: 12px;
}
.rt-card h3 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  color: var(--blood-2);
}
.rt-card p {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  padding: 80px 44px;
  background:
    linear-gradient(180deg, transparent, var(--velvet), transparent);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.st {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.st:last-child { border-right: none; }
.st-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #f5dfa0 0%, #e4c16f 50%, #c8102e 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.st-lbl {
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--text-2);
  text-transform: uppercase;
}

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pullquote {
  padding: 120px 44px;
  background:
    radial-gradient(ellipse at center, rgba(200, 16, 46, .22), transparent 60%),
    var(--noir-3);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.pq-kiss {
  width: 80px;
  margin: 0 auto 30px;
  animation: kissFade 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(200, 16, 46, .5));
}
.pullquote blockquote {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.15;
  max-width: 1000px;
  margin: 0 auto 24px;
  letter-spacing: -.02em;
  color: var(--text);
}
.pullquote em {
  font-style: italic;
  background: linear-gradient(135deg, #f5dfa0 0%, #e4c16f 50%, #e22f4a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pullquote cite {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
}

/* =========================================================
   WHISPERS (Testimonials)
   ========================================================= */
.whispers {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.whispers .section-head { padding: 0; }
.whispers-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.wh {
  padding: 40px 34px;
  background:
    linear-gradient(180deg, rgba(42, 15, 24, .5), rgba(13, 6, 8, .5));
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  position: relative;
  transition: all .4s var(--ease);
  overflow: hidden;
}
.wh:hover { border-color: var(--blood); transform: translateY(-6px); box-shadow: var(--shadow-red); }
.wh::before {
  content: '"';
  position: absolute;
  top: -10px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  color: rgba(200, 16, 46, .1);
  line-height: .6;
  font-weight: 700;
  font-style: italic;
}
.wh.featured {
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .1), rgba(13, 6, 8, .5));
  border-color: rgba(200, 16, 46, .3);
}
.wh-stars { color: var(--champagne); letter-spacing: .2em; margin-bottom: 22px; font-size: 14px; }
.wh blockquote {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.wh figcaption {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  position: relative;
}
.wh-line {
  width: 40px; height: 1px;
  background: var(--blood);
  margin-bottom: 14px;
}
.wh figcaption strong {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.wh figcaption span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

/* =========================================================
   PRESS
   ========================================================= */
.press {
  padding: 50px 0;
  background: var(--velvet);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.press-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
  padding: 0 44px;
}
.press-lbl {
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--champagne);
  text-transform: uppercase;
}
.press-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pm-track {
  display: inline-flex; align-items: center; gap: 30px;
  animation: mqa 34s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.pm-track .pm {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--text);
}
.pm-track .pm-dot { color: var(--blood); font-size: 12px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.faq-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro .btn { margin-top: 28px; }

.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.faq-item[open] { background: rgba(200, 16, 46, .04); }
.faq-item summary {
  padding: 26px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blood-2); }
.fa-ic {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .fa-ic {
  transform: rotate(45deg);
  background: var(--blood);
  border-color: var(--blood);
  color: var(--text);
}
.faq-item p {
  padding: 0 54px 26px 0;
  color: var(--text-2);
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 120px 44px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200, 16, 46, .22), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(228, 193, 111, .08), transparent 55%),
    var(--noir-2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-rose {
  width: 80px;
  margin: 0 auto 24px;
  color: var(--blood);
  animation: roseTurn 12s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(200, 16, 46, .5));
}
.cta-form {
  display: flex; gap: 8px;
  max-width: 520px; margin: 40px auto 14px;
  padding: 6px;
  background: rgba(13, 6, 8, .6);
  border: 1px solid var(--border);
  position: relative;
  backdrop-filter: blur(10px);
}
.cta-form input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  outline: none;
  min-width: 0;
}
.cta-form input::placeholder { color: var(--muted); font-style: italic; }
.cta-form .btn { padding: 14px 22px; }
.cta-success {
  position: absolute;
  left: 0; right: 0; bottom: -36px;
  color: var(--champagne);
  font-size: 13px;
  letter-spacing: .14em;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.cta-success.show { opacity: 1; }
.tiny {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: 28px;
  letter-spacing: .02em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 80px 44px 40px;
  background: var(--noir-2);
}
.footer-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.f-brand .brand { margin-bottom: 20px; }
.f-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all .2s var(--ease);
}
.socials a:hover { border-color: var(--blood); color: var(--blood-2); }
.socials a svg { width: 18px; height: 18px; }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: .32em;
  color: var(--champagne);
  margin-bottom: 8px;
  font-weight: 700;
}
.f-col a {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-2);
}
.f-col a:hover { color: var(--blood-2); }
.footer-bottom {
  max-width: 1440px; margin: 0 auto;
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  flex-wrap: wrap; gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.fb-right { display: flex; align-items: center; gap: 10px; }
.fb-right a { color: var(--muted); }
.fb-right a:hover { color: var(--blood-2); }
.fb-right span { color: var(--dim); }

/* =========================================================
   GALLERY STRIP (5 portrait tiles)
   ========================================================= */
.gallery {
  padding: 100px 44px 80px;
  border-bottom: 1px solid var(--border);
}
.gal-head {
  max-width: 1440px; margin: 0 auto 50px;
  text-align: center;
}
.gal-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: -.025em;
  margin-top: 12px;
}
.gal-title em {
  font-style: italic;
  color: var(--blood-2);
}
.gal-title .gt-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: .4em;
  color: var(--text-2);
  margin-top: 10px;
  letter-spacing: .02em;
}

.gallery-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.portrait {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: var(--noir-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.portrait:hover { transform: translateY(-6px); border-color: var(--blood); }
.portrait-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.p1 .portrait-bg { background: radial-gradient(ellipse at 30% 30%, #3a1820 0%, #0a0204 70%); }
.p2 .portrait-bg { background: radial-gradient(ellipse at 70% 30%, #4a1420 0%, #0a0204 70%); }
.p3 .portrait-bg { background: radial-gradient(ellipse at 50% 20%, #2a1820 0%, #0a0204 70%); }
.p4 .portrait-bg { background: radial-gradient(ellipse at 40% 40%, #2a0f18 0%, #050102 70%); }
.p5 .portrait-bg { background: radial-gradient(ellipse at 50% 40%, #4a1418 0%, #0a0204 70%); }

.portrait-fig {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  filter: grayscale(.32) contrast(1.12) brightness(.78) saturate(.88);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.portrait:hover .portrait-fig { transform: scale(1.06); filter: grayscale(.15) contrast(1.18) brightness(.82) saturate(1); }
.portrait-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .15) 0%, transparent 35%, rgba(10, 3, 5, .88) 100%),
    linear-gradient(135deg, rgba(200, 16, 46, .35) 0%, transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.portrait-grain {
  position: absolute; inset: -15%;
  z-index: 3;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .08) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .06) 1px, transparent 1.5px);
  background-size: 4px 4px, 6px 6px;
  opacity: .5;
  mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
  pointer-events: none;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 3%); }
  100% { transform: translate(0, 0); }
}
.portrait-vig {
  position: absolute; inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, .65) 100%);
  pointer-events: none;
}

.portrait-cap {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  z-index: 4;
  color: var(--text);
}
.portrait-cap .pc-tag {
  display: inline-block;
  padding: 4px 10px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--champagne);
  background: rgba(13, 6, 8, .6);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  margin-bottom: 10px;
  letter-spacing: .14em;
}
.portrait-cap strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .14em;
  margin-bottom: 4px;
}
.portrait-cap span {
  display: block;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-2);
}

/* =========================================================
   EDITORIAL MOMENT (big portrait + text)
   ========================================================= */
.editorial {
  padding: 120px 44px;
  background:
    linear-gradient(180deg, transparent, rgba(42, 15, 24, .6), transparent);
  border-bottom: 1px solid var(--border);
}
.ed-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.ed-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
  background: linear-gradient(135deg, #2a0f18 0%, #0a0204 100%);
}
.ed-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.32) contrast(1.12) brightness(.8) saturate(.9);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.ed-portrait:hover img { transform: scale(1.05); filter: grayscale(.18) contrast(1.18) brightness(.85) saturate(1); }
.ed-portrait.no-img img { display: none; }
.ed-tint {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .2) 0%, transparent 35%, rgba(10, 3, 5, .88) 100%),
    linear-gradient(135deg, rgba(200, 16, 46, .35) 0%, transparent 60%, rgba(42, 15, 24, .45) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ed-grain {
  position: absolute; inset: -10%;
  z-index: 3;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .1) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .08) 1px, transparent 1.5px);
  background-size: 4px 4px, 6px 6px;
  opacity: .5;
  mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
  pointer-events: none;
}
.ed-vig {
  position: absolute; inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 30% 25%, transparent 30%, rgba(0, 0, 0, .7) 100%);
  pointer-events: none;
}
.ed-flare {
  position: absolute;
  top: -10%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(228, 193, 111, .18), transparent 65%);
  filter: blur(30px);
  z-index: 4;
  pointer-events: none;
  animation: flarePulse 7s ease-in-out infinite;
}
@keyframes flarePulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.ed-caption {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  z-index: 5;
  color: var(--text);
}
.ed-caption span {
  display: inline-block;
  padding: 5px 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--champagne);
  background: rgba(13, 6, 8, .65);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  margin-bottom: 14px;
  letter-spacing: .2em;
}
.ed-caption strong {
  display: block;
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.015em;
  max-width: 85%;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}
.ed-caption strong em {
  font-style: italic;
  color: var(--blood-2);
}

.ed-text { max-width: 540px; }
.ed-text .section-title { margin: 18px 0 24px; }
.ed-text .section-title em { font-style: italic; color: var(--blood-2); }
.ed-body {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 36px;
}
.ed-body em {
  color: var(--blood-2);
  font-style: italic;
  font-weight: 500;
}

/* =========================================================
   MOMENTS GRID
   ========================================================= */
.moments {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.moments .section-head { padding: 0; }
.moments-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.moment {
  position: relative;
  aspect-ratio: 3 / 4.4;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--velvet), var(--noir));
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.moment:hover { transform: translateY(-8px); border-color: var(--blood); }
.moment img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.3) contrast(1.14) brightness(.75) saturate(.9);
  transition: transform 1s var(--ease), filter .6s var(--ease);
}
.moment:hover img { transform: scale(1.08); filter: grayscale(.1) contrast(1.22) brightness(.85) saturate(1.05); }

.moment-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .15) 0%, transparent 40%, rgba(10, 3, 5, .95) 100%),
    linear-gradient(135deg, rgba(200, 16, 46, .3) 0%, transparent 55%, rgba(42, 15, 24, .5) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.moment-grain {
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .06) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .05) 1px, transparent 1.5px);
  background-size: 4px 4px, 6px 6px;
  opacity: .45;
  mix-blend-mode: overlay;
  animation: grain 1.4s steps(6) infinite;
  pointer-events: none;
}
.moment figcaption {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  color: var(--text);
  z-index: 2;
}
.moment figcaption .m-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--champagne);
  padding: 4px 10px;
  background: rgba(13, 6, 8, .55);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  margin-bottom: 10px;
  letter-spacing: .14em;
}
.moment figcaption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .18em;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}
.moment figcaption .m-sub {
  display: block;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-2);
}

/* =========================================================
   Whispers avatars
   ========================================================= */
.wh-avatar {
  position: relative;
  width: 64px; height: 64px;
  margin-bottom: 22px;
  border-radius: 50%;
  overflow: visible;
}
.wh-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.05) brightness(.95);
  border: 1px solid var(--border);
  display: block;
}
.wh-av-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--blood);
  opacity: .45;
  animation: avRing 3s ease-in-out infinite;
}
@keyframes avRing {
  0%, 100% { transform: scale(1); opacity: .45; }
  50% { transform: scale(1.12); opacity: .1; }
}

/* =========================================================
   CTA portrait
   ========================================================= */
.cta { position: relative; }
.cta-portrait {
  position: absolute;
  right: 4%; top: 50%;
  transform: translateY(-50%);
  width: 320px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 2;
  box-shadow: var(--shadow-deep);
}
.cta-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.3) contrast(1.1) brightness(.75) saturate(.85);
}
.cta-port-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10, 3, 5, .85) 100%),
    linear-gradient(135deg, rgba(200, 16, 46, .3) 0%, transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.cta-port-grain {
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .08) 1px, transparent 1.5px);
  background-size: 4px 4px;
  opacity: .5;
  mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
  pointer-events: none;
}
.cta-portrait.no-img {
  background: linear-gradient(135deg, var(--velvet), var(--noir));
}
.cta .cta-inner {
  position: relative;
  z-index: 3;
  margin-left: 0;
  margin-right: auto;
  max-width: 640px;
  text-align: left;
}
.cta .cta-inner .head-meta { justify-content: flex-start; }
.cta .cta-inner .section-sub { margin-left: 0; margin-right: 0; }
.cta .cta-form { margin-left: 0; margin-right: auto; }

/* =========================================================
   Reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .hero-grid, .fg-grid, .ing-grid, .faq-grid, .ed-grid { grid-template-columns: 1fr; gap: 60px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .portrait:nth-child(4), .gallery-grid .portrait:nth-child(5) { display: none; }
  .moments-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ed-portrait { max-width: 560px; margin: 0 auto; }
  .cta-portrait { position: static; transform: none; width: 100%; max-width: 380px; margin: 40px auto 0; aspect-ratio: 4 / 3; }
  .cta { text-align: center; }
  .cta .cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  .cta .cta-inner .head-meta { justify-content: center; }
  .cta .cta-form { margin-left: auto; margin-right: auto; }
  .hero-art { height: 500px; }
  .silhouette { width: 340px; }
  .fg-visual { height: 560px; }
  .fg-bottle { width: 240px; }
  .fgb-body { width: 240px; height: 410px; }
  .fgb-cap { width: 110px; height: 58px; }
  .fgbl-mid { font-size: 40px; }
  .ing-left, .faq-intro { position: static; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .product-grid .product-card:last-child { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .bundle { grid-template-columns: 1fr; gap: 40px; padding: 50px 40px; }
  .b-right { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 36px; align-items: flex-start; }
  .b-price { align-items: flex-start; text-align: left; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .ritual-track { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rt-line, .rt-dot { display: none; }
  .rt-step { padding-top: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .st:nth-child(2) { border-right: none; }
  .stats-grid .st:nth-child(1), .stats-grid .st:nth-child(2) { padding-bottom: 30px; border-bottom: 1px solid var(--border); }
  .stats-grid .st:nth-child(3), .stats-grid .st:nth-child(4) { padding-top: 30px; }
  .whispers-grid { grid-template-columns: 1fr 1fr; }
  .whispers-grid .wh:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }
  .nav-links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .announce { font-size: 10px; letter-spacing: .16em; height: 32px; }
  .gallery { padding: 60px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid .portrait:nth-child(4), .gallery-grid .portrait:nth-child(5) { display: block; }
  .gallery-grid .portrait:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
  .editorial, .moments { padding: 60px 20px; }
  .ed-caption strong { font-size: 18px; }
  .moments-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wh-avatar { width: 54px; height: 54px; margin-bottom: 18px; }
  .cta-portrait { max-width: 300px; }
  .nav, .nav.scrolled { padding: 12px 18px; }
  .hero { padding: 30px 20px 60px; }
  .hero-grid { gap: 40px; min-height: auto; }
  .hero-title { font-size: clamp(48px, 11vw, 74px); }
  .hero-lead { font-size: 17px; }
  .hero-ctas .btn-lg { flex: 1; min-width: 0; justify-content: center; padding: 14px 16px; }
  .hero-trust { flex-direction: column; gap: 14px; padding: 20px; }
  .ht { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 14px; }
  .ht:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-art { height: 420px; }
  .silhouette { width: 280px; }
  .art-bottle { width: 90px; right: 4%; }
  .ab-body { width: 90px; height: 150px; }
  .ab-cap { width: 42px; height: 22px; }
  .ab-mid { font-size: 18px; }
  .kiss-1, .rose-1 { width: 60px; }
  .section-head { padding: 0 20px; margin-bottom: 40px; }
  .flagship, .collection, .pillars, .ingredients, .ritual, .whispers, .faq, .cta { padding: 70px 20px; }
  .fg-title { font-size: clamp(42px, 10vw, 64px); }
  .fg-facts { grid-template-columns: 1fr; gap: 12px; }
  .fg-buy { flex-direction: column; align-items: stretch; gap: 20px; }
  .fg-buy .btn { justify-content: center; }
  .fg-visual { height: 440px; }
  .fg-bottle { width: 190px; }
  .fgb-body { width: 190px; height: 340px; }
  .fgb-cap { width: 88px; height: 48px; }
  .fgbl-mid { font-size: 32px; }
  .fg-rose, .fg-kiss { width: 72px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid .product-card:last-child { max-width: none; }
  .bundle { padding: 40px 24px; }
  .b-left h3 { font-size: 28px; }
  .bp-now { font-size: 46px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1px; }
  .p-card { padding: 32px 28px; }
  .ritual-track { grid-template-columns: 1fr; gap: 16px; }
  .stats { padding: 50px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .whispers-grid { grid-template-columns: 1fr; }
  .whispers-grid .wh:last-child { max-width: none; }
  .wh { padding: 32px 24px; }
  .pullquote { padding: 80px 20px; }
  .press-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; padding: 0 20px; }
  .faq-item summary { font-size: 16px; padding: 22px 0; }
  .cta-form { flex-direction: column; padding: 10px; gap: 10px; }
  .cta-form .btn { width: 100%; justify-content: center; }
  .footer { padding: 60px 20px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scroll-hint { display: none; }
  .ing-list li { grid-template-columns: 30px 1fr; gap: 14px; padding: 18px 0; }
  .il-pct { grid-column: 2; text-align: left; margin-top: 6px; font-size: 24px; }
  .nav-right .btn-ignite span { display: none; }
  .nav-right .btn-ignite { padding: 10px; }
}

/* =========================================================
   LOGIN / REGISTER PAGE
   ========================================================= */

.login-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.login-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  position: relative;
}

/* ---- Left Brand Panel ---- */
.login-brand {
  background:
    linear-gradient(180deg,
      rgba(42, 15, 24, .9) 0%,
      rgba(13, 6, 8, .95) 40%,
      var(--noir) 80%
    ),
    url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=1200&auto=format&fit=crop&q=75') center/cover no-repeat;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.lb-inner {
  text-align: center;
  padding: 60px 50px;
  position: relative;
  z-index: 2;
}
.lb-mark { margin-bottom: 48px; }
.lbm-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
.lbm-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: .2em;
  color: var(--text);
}
.lbm-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .4em;
  color: var(--champagne);
  margin-top: -2px;
}
.lbm-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  margin: 12px auto 0;
}
.lbm-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: .06em;
  line-height: 1.7;
}

.lb-bottle {
  width: 180px;
  position: relative;
  z-index: 2;
  animation: bottleFloat 10s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .8)) drop-shadow(0 0 40px rgba(200, 16, 46, .2));
}
.lb-bottle .fgb-cap { width: 84px; height: 44px; }
.lb-bottle .fgb-body { width: 180px; height: 310px; }
.lb-bottle .fgbl-mid { font-size: 34px; }
.lb-bottle .fg-reflection {
  opacity: .25;
  transform: scaleY(-0.3);
  top: auto; bottom: -24px;
}

.lb-halo {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, .18) 0%, rgba(228, 193, 111, .04) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: haloPulse 10s ease-in-out infinite;
}

.lb-rose {
  position: absolute;
  right: 20%; bottom: 22%;
  width: 64px;
  color: var(--blood);
  animation: roseTurn 14s ease-in-out infinite;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(200, 16, 46, .4));
}
.lb-kiss {
  position: absolute;
  left: 16%; bottom: 32%;
  width: 56px;
  opacity: .7;
  animation: kissFade 8s ease-in-out infinite;
  z-index: 3;
}

.lb-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-2);
  line-height: 1.4;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}
.lb-quote em {
  font-style: italic;
  color: var(--champagne);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  display: block;
  font-size: .82em;
  margin-top: 4px;
}

/* ---- Right Form Panel ---- */
.login-form-panel {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

/* Tab switcher */
.lf-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.lf-tab {
  flex: 1;
  padding: 16px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  transition: all .3s var(--ease);
  letter-spacing: .08em;
}
.lf-tab:hover { color: var(--text-2); }
.lf-tab.active {
  color: var(--champagne);
  border-color: var(--champagne);
}
.lf-tab.active span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lf-tab.active::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 8px var(--blood);
  animation: blink 1.8s ease-in-out infinite;
}

/* Forms */
.lf-form {
  display: none;
}
.lf-form.active { display: block; }

.lf-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -.02em;
}
.lf-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: .52em;
  color: var(--blood-2);
  display: block;
  margin-top: 6px;
  letter-spacing: .03em;
}

.lf-field {
  margin-bottom: 22px;
  position: relative;
}
.lf-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.lf-field label svg {
  width: 16px; height: 16px;
  color: var(--muted);
  flex-shrink: 0;
}
.lf-field input[type="email"],
.lf-field input[type="password"],
.lf-field input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(22, 10, 14, .5);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  outline: none;
  transition: all .3s var(--ease);
}
.lf-field input:focus {
  border-color: var(--blood);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .12);
  background: rgba(22, 10, 14, .8);
}
.lf-field input::placeholder {
  color: var(--dim);
  font-style: italic;
  opacity: .6;
}

/* Password eye toggle */
.lf-eye {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: none;
  border: none;
  color: var(--dim);
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}
.lf-eye:hover { color: var(--text-2); }
.lf-eye .eye-off { display: none; }
.lf-eye.visible .eye-on { display: none; }
.lf-eye.visible .eye-off { display: block; }

/* Password hint */
.lf-hint {
  display: block;
  font-size: 11px;
  color: var(--dim);
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

/* Row: remember + forgot */
.lf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

/* Checkbox custom */
.lf-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  user-select: none;
}
.lf-check input { display: none; }
.checkmark {
  width: 18px; height: 18px;
  border: 1px solid var(--border);
  background: rgba(13, 6, 8, .5);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.checkmark::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--blood);
  transform: scale(0);
  transition: transform .2s var(--ease-spring);
}
.lf-check input:checked + .checkmark::after { transform: scale(1); }
.lf-check input:checked + .checkmark { border-color: var(--blood); }
.lf-check a { color: var(--blood-2); text-decoration: underline; }

.lf-check-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

/* Forgot / link */
.lf-link {
  font-size: 13px;
  color: var(--blood-2);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  transition: color .2s;
}
.lf-link:hover { color: var(--text); text-decoration: underline; }

/* Submit button */
.lf-submit { width: 100%; justify-content: center; margin-bottom: 28px; }

/* Divider */
.lf-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.lf-divider::before,
.lf-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.lf-divider span {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* Social login buttons */
.lf-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.lf-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(13, 6, 8, .5);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.lf-social svg { width: 18px; height: 18px; }
.lf-social:hover {
  border-color: var(--text-2);
  background: rgba(22, 10, 14, .8);
}

/* Footer text with switch link */
.lf-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.lf-switch {
  background: none;
  border: none;
  color: var(--champagne);
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  transition: color .2s;
}
.lf-switch:hover { color: var(--blood-2); }

/* Login footer mini */
.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 44px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .06em;
}
.login-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.login-footer a:hover { color: var(--blood-2); }

/* ---- Nav auth button (shown on main pages when not logged in) ---- */
.nav-auth-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  border: 1px solid var(--border) !important;
  color: var(--text-2) !important;
  background: transparent !important;
  transition: all .3s var(--ease) !important;
}
.nav-auth-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-auth-btn:hover {
  border-color: var(--champagne) !important;
  color: var(--champagne) !important;
}
.nav-auth-btn.logged-in {
  border-color: var(--blood) !important;
  color: var(--blood-2) !important;
}
.nav-auth-user {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 120px;
  overflow: hidden;
}
.nav-auth-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blood);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.nav-auth-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

/* Login page responsive */
@media (max-width: 1024px) {
  .login-main { grid-template-columns: 1fr; }
  .login-brand {
    min-height: 300px;
    order: -1;
  }
  .lb-inner { padding: 40px 30px; }
  .lb-bottle { width: 130px; }
  .lb-bottle .fgb-body { width: 130px; height: 225px; }
  .lb-bottle .fgb-cap { width: 62px; height: 33px; }
  .lb-bottle .fgbl-mid { font-size: 24px; }
  .lb-quote { font-size: 20px; margin-top: 28px; }
  .lb-rose, .lb-kiss { display: none; }
  .login-form-panel {
    padding: 40px 28px;
    max-width: none;
  }
  .lf-title { font-size: 26px; margin-bottom: 24px; }
  .login-footer { padding: 14px 20px; flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 720px) {
  .login-brand { min-height: 220px; }
  .lb-inner { padding: 30px 20px; }
  .lb-mark { margin-bottom: 28px; }
  .lbm-name { font-size: 28px; }
  .lbm-sub { font-size: 12px; }
  .lb-quote { font-size: 18px; }
  .login-form-panel { padding: 32px 20px; }
  .lf-tabs { margin-bottom: 28px; }
  .lf-tab { font-size: 15px; }
  .lf-field { margin-bottom: 18px; }
  .lf-field input[type="email"],
  .lf-field input[type="password"],
  .lf-field input[type="text"] { padding: 12px 14px; font-size: 15px; }
  .lf-socials { flex-direction: column; }
  .nav-auth-btn { padding: 6px 12px !important; font-size: 11px !important; }
  .nav-auth-name { display: none; }
}

/* =========================================================
   WALLET AUTHORIZATION PAGE
   ========================================================= */

.wallet-page { min-height: 100vh; overflow-x: hidden; }

.wal-hero {
  padding: 80px 44px 50px;
  text-align: center;
  position: relative;
}
.wh-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: var(--smoke);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.wh-meta span:last-child {
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--champagne);
}
.wh-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.wh-title span { color: var(--champagne); }
.wh-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: .5em;
  color: var(--blood-2);
  display: block;
  letter-spacing: .04em;
}
.wh-lead {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ---- Wallet Connect Section ---- */
.wal-connect {
  padding: 40px 44px 60px;
}
.wc-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Disconnected state */
.wc-disconnected {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(42, 15, 24, .4), rgba(13, 6, 8, .4));
}
.wcd-icon {
  width: 100px; height: 100px;
  margin: 0 auto 28px;
  position: relative;
}
.wcd-icon svg {
  width: 64px; height: 64px;
  color: var(--champagne);
  position: absolute;
  top: 18px; left: 18px;
  z-index: 1;
}
.wcd-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  animation: ringSpin 12s linear infinite;
}
.wc-disconnected h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.wc-disconnected > p {
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 32px;
}

/* Wallet selector buttons */
.wcd-wallets {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.wcd-wallet {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: rgba(13, 6, 8, .5);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s var(--ease);
  color: var(--text-2);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.wcd-wallet:hover { border-color: var(--text-2); }
.wcd-wallet.active {
  border-color: var(--blood);
  background: rgba(200, 16, 46, .08);
  color: var(--text);
}
.wcd-wallet img,
.wcd-wallet svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
}

.wc-connect-btn { min-width: 240px; justify-content: center; }

.wc-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--dim);
  font-family: 'Inter', sans-serif;
}
.wc-note svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--champagne); opacity: .5; }

/* Connected state */
.wc-connected {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .06), rgba(42, 15, 24, .3));
}
.wcc-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.wcc-info { display: flex; align-items: center; gap: 16px; }
.wcc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  background: rgba(228, 193, 111, .06);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wcc-avatar svg { width: 24px; height: 24px; color: var(--champagne); }
.wcc-detail strong {
  display: block;
  font-family: 'Inter', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: .02em;
}
.wcc-detail span {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.wcc-actions {
  display: flex; gap: 10px;
}

/* Stats bar */
.wcc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.wcs-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.wcs-item:last-child { border-right: none; }
.wcs-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.wcs-num.danger { color: var(--blood-2); }
.wcs-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ---- Authorization List ---- */
.wal-auth-list { padding: 60px 44px; }
.wal-inner { max-width: 1200px; margin: 0 auto; }

.wal-section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.wal-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  display: flex; align-items: center; gap: 12px;
}
.wal-section-head h2 svg { width: 24px; height: 24px; color: var(--champagne); }

.walsh-controls { display: flex; align-items: center; gap: 12px; }
.walsh-filter select {
  padding: 10px 16px;
  background: rgba(13, 6, 8, .7);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}
.walsh-filter select:focus { border-color: var(--champagne); }

/* Auth cards */
.auth-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(42, 15, 24, .35), rgba(13, 6, 8, .35));
  transition: all .3s var(--ease);
}
.auth-card:hover {
  border-color: rgba(200, 16, 46, .3);
  transform: translateX(4px);
}
.ac-token-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.ac-token-icon.usdt { background: #26A17B; color: #fff; }
.ac-token-icon.usdc { background: #2775CA; color: #fff; }
.ac-token-icon.weth { background: #627EEA; color: #fff; }
.ac-token-icon.wbtc { background: #F7931A; color: #fff; }
.ac-token-icon.dai { background: #FAB33E; color: #000; }
.ac-token-icon.link { background: #2A5ADA; color: #fff; }
.ac-token-icon.aave { background: #B6509E; color: #fff; }
.ac-token-icon.shib { background: #FFA409; color: #000; }

.ac-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.ac-info code {
  font-size: 12px;
  color: var(--dim);
  background: rgba(13, 6, 8, .5);
  padding: 2px 8px;
  font-family: 'Inter', monospace;
}
.ac-info .ac-spender {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', monospace;
  margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.ac-info .ac-spender::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  opacity: .4;
}

.ac-amount {
  text-align: right;
}
.ac-amount .amount-val {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--champagne);
}
.ac-amount .amount-usd {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.ac-revoke-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--blood);
  color: var(--blood-2);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.ac-revoke-btn:hover {
  background: var(--blood);
  color: var(--text);
}
.ac-revoked {
  border-color: var(--dim) !important;
  color: var(--dim) !important;
  cursor: default;
  pointer-events: none;
}
.ac-card-revoked { opacity: .45; }
.ac-card-revoked .ac-amount .amount-val { text-decoration: line-through; }

/* Risk tags */
.risk-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  font-family: 'Inter', sans-serif;
  border-radius: 0;
}
.risk-tag.danger { background: rgba(200, 16, 46, .15); color: var(--blood-2); border: 1px solid rgba(200, 16, 46, .25); }
.risk-tag.warning { background: rgba(228, 193, 111, .1); color: var(--champagne); border: 1px solid rgba(228, 193, 111, .2); }
.risk-tag.safe { background: rgba(107, 190, 72, .1); color: #6bbe48; border: 1px solid rgba(107, 190, 72, .2); }

/* Empty state */
.auth-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--border);
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
}

/* ---- Security Tips ---- */
.wal-tips {
  padding: 100px 44px;
  border-top: 1px solid var(--border);
}
.tips-grid {
  max-width: 1200px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  background: var(--border);
}
.tip-card {
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(22, 10, 14, .88), rgba(13, 6, 8, .88));
  position: relative;
  transition: all .3s var(--ease);
}
.tip-card:hover { transform: translateY(-4px); }
.tc-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.tc-badge.danger { background: rgba(200, 16, 46, .15); color: var(--blood-2); }
.tc-badge.warning { background: rgba(228, 193, 111, .1); color: var(--champagne); }
.tc-badge.safe { background: rgba(107, 190, 72, .1); color: #6bbe48; }
.tc-icon {
  margin-bottom: 18px;
}
.tc-icon svg { width: 40px; height: 40px; color: var(--champagne); }
.tip-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.tip-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tip-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tip-card li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  font-family: 'Inter', sans-serif;
}
.tip-card li::before {
  content: '›';
  color: var(--blood-2);
  font-weight: 700;
}

/* ---- Risk Table ---- */
.wal-risk-table {
  padding: 100px 44px;
  border-top: 1px solid var(--border);
}
.wrt-inner { max-width: 1100px; margin: 0 auto; }
.rt-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.rt-table thead th {
  padding: 16px 18px;
  text-align: left;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  background: rgba(22, 10, 14, .6);
  font-family: 'Inter', sans-serif;
}
.rt-table th.center { text-align: center; }
.rt-table th.right { text-align: right; }
.rt-table td {
  padding: 16px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-2);
}
.rt-table tbody tr {
  transition: background .2s;
}
.rt-table tbody tr:hover { background: rgba(200, 16, 46, .04); }
.rt-table tbody tr:last-child td { border-bottom: none; }
.rt-table td strong { color: var(--text); font-style: normal; font-family: 'Inter', sans-serif; font-weight: 600; }
.rt-table code {
  font-family: 'Inter', monospace;
  font-size: 11px;
  background: rgba(13, 6, 8, .5);
  padding: 2px 8px;
  color: var(--champagne);
  font-style: normal;
}
.rt-table .center { text-align: center; }
.rt-table .right { text-align: right; }
.rt-table tr[data-risk="danger"] td:first-child { color: var(--blood-2); font-weight: 600; font-style: normal; }

/* Wallet page responsive */
@media (max-width: 1024px) {
  .tips-grid { grid-template-columns: 1fr; }
  .wcc-stats { grid-template-columns: repeat(2, 1fr); }
  .wcs-item:nth-child(even) { border-right: none; }
  .wcs-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

@media (max-width: 720px) {
  .wal-hero { padding: 56px 20px 36px; }
  .wal-connect { padding: 24px 20px 40px; }
  .wc-disconnected { padding: 40px 20px; }
  .wcd-wallets { flex-direction: column; align-items: stretch; }
  .wcd-wallet { justify-content: center; }
  .wc-connect-btn { width: 100%; }
  .wcc-top { flex-direction: column; align-items: stretch; }
  .wcc-actions { justify-content: center; }
  .wcc-stats { grid-template-columns: 1fr 1fr; }
  .wcs-item { border-right: 1px solid var(--border) !important; }
  .wcs-item:nth-child(2n) { border-right: none !important; }
  .wal-auth-list { padding: 40px 20px; }
  .auth-card {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 16px;
  }
  .ac-amount { grid-column: 1 / -1; text-align: left; }
  .ac-revoke-btn { grid-column: 1 / -1; width: 100%; }
  .walsh-controls { width: 100%; flex-direction: column; }
  .walsh-filter select { width: 100%; }
  .wal-tips, .wal-risk-table { padding: 60px 20px; }
  .rt-table { font-size: 12px; }
  .rt-table th, .rt-table td { padding: 12px 10px; }
  .tip-card { padding: 28px 20px; }
}

/* Reduced motion */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .petals { display: none; }
}

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

/* Breadcrumb */
.pd-breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 44px 0;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.pd-breadcrumb a { color: var(--text-2); }
.pd-breadcrumb a:hover { color: var(--blood-2); }
.bc-sep { margin: 0 10px; color: var(--dim); }

/* Product Detail Hero */
.pd-hero {
  padding: 30px 44px 100px;
  position: relative;
}

.pd-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* Gallery */
.pd-gallery { position: relative; }

.pd-main-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #2a0f18, #0a0204);
  margin-bottom: 18px;
}

.pd-figure {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.pd-figure.active { opacity: 1; z-index: 1; }

.pd-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.28) contrast(1.12) brightness(.75) saturate(.88);
}

.pd-img-tint {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .15) 0%, transparent 40%, rgba(10, 3, 5, .85) 100%),
    linear-gradient(135deg, rgba(200, 16, 46, .3) 0%, transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.pd-img-grain {
  position: absolute; inset: -10%;
  z-index: 2;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.08) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.06) 1px, transparent 1.5px);
  background-size: 4px 4px, 6px 6px;
  opacity: .45;
  mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
  pointer-events: none;
}

/* Bottle showcase overlay */
.pd-bottle-showcase {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
}
.pbs-halo {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200, 16, 46, .3) 0%, rgba(228, 193, 111, .08) 35%, transparent 65%);
  filter: blur(36px);
  animation: haloPulse 8s ease-in-out infinite;
}
.pbs-bottle {
  position: relative;
  width: 220px;
  z-index: 2;
  animation: bottleFloat 9s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .8)) drop-shadow(0 0 60px rgba(200, 16, 46, .25));
}
.pbs-bottle .fgb-cap { width: 102px; height: 54px; }
.pbs-bottle .fgb-body { width: 220px; height: 380px; }
.pbs-bottle .fgbl-mid { font-size: 42px; }

.pbs-kiss {
  position: absolute;
  left: 10%; bottom: 24%;
  width: 80px;
  animation: kissFade 7s ease-in-out infinite;
  z-index: 3;
}
.pbs-rose {
  position: absolute;
  right: 12%; top: 16%;
  width: 90px;
  color: var(--blood);
  animation: roseTurn 13s ease-in-out infinite;
  z-index: 3;
  filter: drop-shadow(0 4px 10px rgba(200, 16, 46, .4));
}

/* Gallery arrows */
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  background: rgba(13, 6, 8, .7);
  backdrop-filter: blur(10px);
  color: var(--text-2);
  z-index: 5;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.pd-arrow:hover { border-color: var(--blood); color: var(--blood-2); background: rgba(200, 16, 46, .1); }
.pd-arrow svg { width: 18px; height: 18px; }
.pd-prev { left: 16px; }
.pd-next { right: 16px; }

.pd-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 5;
  padding: 6px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--champagne);
  background: rgba(13, 6, 8, .7);
  border: 1px solid var(--champagne);
  backdrop-filter: blur(8px);
}

/* Thumbnails */
.pd-thumbs {
  display: flex;
  gap: 10px;
}
.pd-thumb {
  width: 80px; height: 100px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--noir-2);
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
  display: block;
}
.pd-thumb:hover { border-color: var(--text-2); }
.pd-thumb.active { border-color: var(--blood); }
.pd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.4) contrast(1.1) brightness(.75);
  transition: filter .3s var(--ease);
}
.pd-thumb.active img,
.pd-thumb:hover img { filter: grayscale(.15) contrast(1.15) brightness(.85); }

/* Product Info */
.pd-info { position: sticky; top: 90px; }

.pd-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--smoke);
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--champagne);
  margin-bottom: 22px;
}
.pd-meta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blood);
  animation: blink 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--blood);
}

.pd-title {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.pd-title em {
  font-style: italic;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: .5em;
  color: var(--blood-2);
  margin-top: 6px;
  letter-spacing: .04em;
}

.pd-tagline {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 26px;
}

/* Rating */
.pd-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  background: rgba(22, 10, 14, .4);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.pdr-stars { color: var(--champagne); font-size: 16px; letter-spacing: .14em; }
.pdr-score {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--champagne);
}
.pdr-count { font-size: 13px; color: var(--muted); }
.pdr-link {
  margin-left: auto;
  font-size: 13px;
  color: var(--blood-2);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.pdr-link:hover { text-decoration: underline; }

/* Price */
.pd-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pdb-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.pdb-now {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #f5dfa0, #e4c16f 60%, #b76e79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.pdb-old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.pdb-save {
  background: var(--blood);
  color: var(--text);
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 600;
}
.pdb-note { font-size: 13px; color: var(--muted); font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* Options */
.pd-options { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }

.pdo-label {
  display: block;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 10px;
}

.pdo-vars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pdo-var {
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: rgba(13, 6, 8, .5);
  cursor: pointer;
  transition: all .3s var(--ease);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.pdo-var:hover { border-color: var(--text-2); }
.pdo-var.active {
  border-color: var(--blood);
  background: rgba(200, 16, 46, .1);
}
.pdo-var strong {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.pdo-var small {
  font-size: 11px;
  color: var(--muted);
}

/* Quantity */
.pdo-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--text-2);
  transition: all .2s var(--ease);
  border-right: 1px solid var(--border);
}
.qty-btn.qty-minus { border-right: none; border-left: none; }
.qty-btn.qty-plus { border-left: 1px solid var(--border); border-right: none; }
.qty-btn:hover { color: var(--blood-2); background: rgba(200, 16, 46, .06); }
.qty-input {
  width: 56px; height: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Actions */
.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pd-buy-btn { flex: 1; min-width: 220px; justify-content: center; }
.pd-cart-btn { flex: 1; min-width: 180px; justify-content: center; }

/* Trust badges */
.pd-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.pdt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 14px;
  background: linear-gradient(180deg, rgba(22, 10, 14, .6), rgba(13, 6, 8, .6));
  text-align: center;
}
.pdt-item svg {
  width: 24px; height: 24px;
  color: var(--champagne);
  flex-shrink: 0;
}
.pdt-item span {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}
.pdt-item small {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* Detail accordion */
.pd-detail-acc {
  border: 1px solid var(--border);
  background: rgba(22, 10, 14, .3);
}
.pd-detail-acc[open] { background: rgba(200, 16, 46, .03); }
.pd-detail-acc summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  color: var(--text);
}
.pd-detail-acc summary::-webkit-details-marker { display: none; }
.pd-detail-acc summary:hover { color: var(--blood-2); }
.da-ic {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 16px;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.pd-detail-acc[open] .da-ic {
  transform: rotate(45deg);
  background: var(--blood);
  border-color: var(--blood);
  color: var(--text);
}
.da-body {
  padding: 0 24px 24px;
  color: var(--text-2);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
}
.da-body p { margin-bottom: 14px; }
.da-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.da-body li { display: flex; gap: 8px; }
.da-body li strong { color: var(--text); font-style: normal; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; min-width: 64px; }

/* =========================================================
   SCIENCE SECTION (Ingredients Deep Dive)
   ========================================================= */
.pd-science {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(42, 15, 24, .35), transparent);
}
.pd-science .section-head { padding: 0; margin-bottom: 70px; }

.science-grid {
  max-width: 1440px; margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sci-card {
  background: linear-gradient(180deg, rgba(22, 10, 14, .88), rgba(13, 6, 8, .88));
  padding: 44px 32px;
  position: relative;
  transition: all .4s var(--ease);
  overflow: hidden;
}
.sci-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blood), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.sci-card:hover { transform: translateY(-6px); }
.sci-card:hover::before { opacity: 1; }
.sci-card.featured {
  background:
    linear-gradient(180deg, rgba(200, 16, 46, .12), rgba(22, 10, 14, .88));
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.sci-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--champagne);
  margin-bottom: 18px;
  display: block;
}
.sci-icon {
  margin-bottom: 20px;
}
.sci-icon svg {
  width: 44px; height: 44px;
  color: var(--blood-2);
}
.sci-card h3 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.sci-card h3 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: .72em;
  color: var(--champagne);
  margin-left: 8px;
}
.sci-origin {
  font-size: 12px;
  color: var(--blood-2);
  letter-spacing: .12em;
  margin-bottom: 14px;
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.sci-desc {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 22px;
}

.sci-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.sci-bar-fill {
  flex: 1;
  height: 3px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.sci-bar-fill::after {
  content: '';
  position: absolute;
  left: 0; top: 0; height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--blood), var(--champagne));
  transition: width 1.4s var(--ease);
}
.sci-bar span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

/* Tech highlight */
.science-tech {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stech-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--blood-2);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.stech-left h3 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.stech-left h3 em { font-style: italic; color: var(--blood-2); }
.stech-left > p {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.stech-left > p strong { color: var(--text); font-style: normal; font-weight: 600; }

.stech-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stech-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  color: var(--text-2);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.stech-list b {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--champagne);
  font-style: normal;
}

.stech-visual {
  display: grid;
  place-items: center;
  padding: 40px;
}
.stech-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: radial-gradient(circle at center, rgba(200, 16, 46, .15) 0%, rgba(13, 6, 8, .9) 50%, transparent 70%);
  display: grid;
  place-items: center;
  position: relative;
  animation: haloPulse 10s ease-in-out infinite;
}
.sc-inner {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blood) 0%, #7a0a1a 60%, var(--noir) 100%);
  box-shadow: 0 0 60px rgba(200, 16, 46, .5), inset 0 0 30px rgba(228, 193, 111, .15);
}
.sc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(228, 193, 111, .3);
  animation: ringSpin 20s linear infinite;
}
.sc-ring-1 { width: 180px; height: 180px; animation-duration: 18s; }
.sc-ring-2 { width: 230px; height: 230px; animation-duration: 26s; animation-direction: reverse; border-style: solid; opacity: .5; }
.sc-ring-3 { width: 260px; height: 260px; animation-duration: 34s; border-color: rgba(200, 16, 46, .2); }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.sc-label {
  position: absolute;
  bottom: 24px;
  font-size: 9px;
  letter-spacing: .4em;
  color: var(--champagne);
  text-align: center;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  opacity: .7;
}

/* =========================================================
   PD RITUAL (How to use)
   ========================================================= */
.pd-ritual {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.pd-ritual-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.pr-left { position: sticky; top: 90px; }
.pr-lead {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 36px;
}

.pr-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.pr-step {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.pr-step:last-child { border-bottom: none; }
.pr-step:hover { background: rgba(200, 16, 46, .04); }

.prs-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: var(--blood-2);
}
.pr-step div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.pr-step div span {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.pr-step svg {
  width: 18px; height: 18px;
  color: var(--champagne);
  opacity: .5;
}

/* Timeline */
.prtl-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--champagne);
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.prtl-track {
  position: relative;
  padding-left: 36px;
}
.prtl-line {
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--champagne), var(--champagne) 4px, transparent 4px, transparent 8px);
  opacity: .4;
}
.prtl-node {
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.prtl-node:last-child { border-bottom: none; }
.prtl-node::before {
  content: '';
  position: absolute;
  left: -29px; top: 32px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 0 3px var(--noir), 0 0 0 4px var(--blood), 0 0 10px var(--blood);
}
.prtl-week {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--champagne);
  margin-bottom: 8px;
  padding: 3px 10px;
  border: 1px solid var(--border);
  background: rgba(13, 6, 8, .5);
}
.prtl-node h5 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blood-2);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.prtl-node p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.pd-reviews {
  padding: 120px 44px;
  border-bottom: 1px solid var(--border);
}
.pd-reviews .section-head { padding: 0; margin-bottom: 50px; }

.review-summary {
  max-width: 1440px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(22, 10, 14, .5), rgba(13, 6, 8, .5));
}
.rs-score {
  text-align: center;
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.rs-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, #f5dfa0, #e4c16f 60%, #b76e79);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}
.rs-stars {
  color: var(--champagne);
  font-size: 18px;
  letter-spacing: .18em;
  margin: 8px 0;
}
.rs-total {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.rs-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
}
.rs-bar-row > span:first-child {
  width: 42px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
}
.rs-bar-row > span:last-child {
  width: 36px;
  flex-shrink: 0;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}
.rs-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  overflow: hidden;
}
.rs-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, var(--blood), var(--champagne));
  transition: width 1s var(--ease);
}

/* Review cards */
.review-list {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-card {
  padding: 40px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(42, 15, 24, .4), rgba(13, 6, 8, .4));
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.review-card:hover { border-color: rgba(200, 16, 46, .4); transform: translateY(-4px); box-shadow: var(--shadow-red); }
.review-card.featured {
  background: linear-gradient(180deg, rgba(200, 16, 46, .08), rgba(13, 6, 8, .4));
  border-color: rgba(200, 16, 46, .25);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  color: rgba(200, 16, 46, .08);
  line-height: .6;
  font-weight: 700;
  font-style: italic;
}

.rc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.rc-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
}
.rc-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.05);
}
.rc-user {
  flex: 1;
}
.rc-user strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.rc-user span {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.rc-stars {
  color: var(--champagne);
  font-size: 14px;
  letter-spacing: .18em;
}

.rc-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--champagne);
  border: 1px solid var(--border);
  background: rgba(13, 6, 8, .5);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.rc-badge.verified { border-color: var(--champagne); color: var(--champagne); }

.review-card blockquote {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.rc-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.rc-helpful {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  transition: color .2s;
}
.rc-helpful:hover { color: var(--blood-2); }
.rc-helpful svg { width: 16px; height: 16px; }
.rc-date {
  font-size: 12px;
  color: var(--dim);
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.review-load { text-align: center; margin-top: 40px; }

/* =========================================================
   PD FAQ (reuse .faq styles)
   ========================================================= */
.pd-faq { padding: 120px 44px; border-bottom: 1px solid var(--border); }
.pd-faq .faq-grid { max-width: 1440px; margin: 0 auto; }

/* =========================================================
   RELATED PRODUCTS
   ========================================================= */
.pd-related { padding: 120px 44px; }
.pd-related .section-head { padding: 0; margin-bottom: 60px; text-align: center; }

/* =========================================================
   Product Detail Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .pd-grid { grid-template-columns: 1fr; gap: 50px; }
  .pd-info { position: static; }
  .pd-hero { padding: 20px 44px 80px; }
  .science-grid { grid-template-columns: 1fr 1fr; }
  .sci-card.featured { grid-column: auto; grid-row: auto; }
  .science-tech { grid-template-columns: 1fr; gap: 50px; }
  .stech-visual { order: -1; }
  .pd-ritual-grid { grid-template-columns: 1fr; gap: 50px; }
  .pr-left { position: static; }
  .review-summary { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .rs-score { padding-right: 0; padding-bottom: 30px; border-right: none; border-bottom: 1px solid var(--border); }
  .rs-bars { max-width: 480px; margin: 0 auto; width: 100%; }
  .pd-trust { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .pd-breadcrumb { padding: 14px 20px 0; font-size: 11px; }
  .pd-hero { padding: 16px 20px 60px; }
  .pd-main-img { aspect-ratio: 1 / 1.2; }
  .pbs-bottle { width: 160px; }
  .pbs-bottle .fgb-body { width: 160px; height: 280px; }
  .pbs-bottle .fgb-cap { width: 76px; height: 40px; }
  .pbs-bottle .fgbl-mid { font-size: 30px; }
  .pbs-kiss { width: 56px; }
  .pbs-rose { width: 62px; }
  .pd-arrow { width: 38px; height: 38px; }
  .pd-prev { left: 8px; }
  .pd-next { right: 8px; }
  .pd-thumbs { gap: 6px; }
  .pd-thumb { width: 58px; height: 74px; }

  .pd-title { font-size: clamp(34px, 9vw, 48px); }
  .pdb-now { font-size: 40px; }
  .pdo-vars { flex-direction: column; }
  .pdo-var { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
  .pd-actions { flex-direction: column; }
  .pd-buy-btn, .pd-cart-btn { width: 100%; }
  .pd-trust { grid-template-columns: 1fr; }
  .pdt-item { flex-direction: row; text-align: left; gap: 14px; padding: 16px 20px; }
  .pdt-item svg { width: 20px; height: 20px; }

  .pd-science, .pd-ritual, .pd-reviews, .pd-faq, .pd-related { padding: 70px 20px; }
  .science-grid { grid-template-columns: 1fr; }
  .sci-card { padding: 32px 24px; }
  .science-tech { padding-top: 24px; }
  .stech-circle { width: 220px; height: 220px; }
  .sc-inner { width: 90px; height: 90px; }

  .pr-steps { gap: 0; }
  .pr-step { grid-template-columns: 44px 1fr 28px; gap: 14px; padding: 18px 20px; }
  .prs-num { font-size: 22px; }

  .review-summary { padding: 24px 20px; }
  .rs-num { font-size: 48px; }
  .rs-bar-row > span:first-child { width: 34px; }
  .review-card { padding: 28px 20px; }
  .rc-head { gap: 12px; }
  .rc-avatar { width: 44px; height: 44px; }
  .rc-foot { flex-wrap: wrap; gap: 12px; }
  .rc-date { margin-left: 0; width: 100%; }
}
