/*
Theme Name: Vifique
Theme URI: https://vifique.cc
Description: Korean Beauty E-Commerce Theme
Version: 1.0.0
Author: Vifique
Text Domain: vifique
*/

/* ━━ VARIABLES ━━ */
:root {
  --cream:    #FAF7F4;
  --petal:    #F9EDF0;
  --blush:    #F2D9DF;
  --rose:     #D4829A;
  --gold:     #C9A96E;
  --gold-lt:  #F5ECD8;
  --gold-dk:  #A07840;
  --ink:      #2A2420;
  --ink-mid:  #6B5C54;
  --ink-lt:   #A89890;
  --border:   #EDE8E3;
  --white:    #FFFFFF;
  --r:        12px;
  --r-pill:   50px;
  color-scheme: light only;
}

/* ━━ RESET ━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: 'DM Sans', sans-serif; }

/* ━━ SPARKLE CANVAS ━━ */
#sparkleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 9999;
}

/* ━━ FLOATING SIDE NAV ━━ */
.float-nav {
  position: fixed; right: 16px; top: 50%;
  transform: translateY(-50%);
  z-index: 100; display: flex;
  flex-direction: column; gap: 8px;
}
.fn-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .2s; position: relative;
  text-decoration: none; color: inherit;
}
.fn-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.fn-label {
  position: absolute; right: 52px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink); color: white;
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: var(--r-pill);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.fn-btn:hover .fn-label { opacity: 1; }
.fn-badge {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--rose); color: white;
  border-radius: 50%; font-size: 9px;
  font-weight: 600; display: flex;
  align-items: center; justify-content: center;
}

/* ━━ ANNOUNCE BAR ━━ */
.announce-bar {
  background: linear-gradient(90deg, var(--petal), var(--blush), var(--petal));
  text-align: center; padding: 9px 20px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .04em; color: var(--ink-mid);
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.ab-sep { opacity: .4; }

/* ━━ SITE HEADER ━━ */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250,247,244,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  letter-spacing: .2em; color: var(--ink);
  text-decoration: none; flex-shrink: 0;
}
.logo-accent { color: var(--gold); }
.header-nav {
  display: flex; gap: 28px; align-items: center;
  list-style: none;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
}
.header-nav a {
  color: var(--ink-mid); text-decoration: none;
  transition: color .15s; font-weight: 500;
}
.header-nav a:hover { color: var(--gold); }
.header-right {
  display: flex; gap: 12px; align-items: center;
  flex-shrink: 0;
}
.hdr-icon {
  width: 36px; height: 36px;
  background: var(--blush); border: none;
  border-radius: 50%; cursor: pointer;
  font-size: 15px; display: flex;
  align-items: center; justify-content: center;
  transition: all .15s;
}
.hdr-icon:hover { background: var(--rose); color: white; }
.hdr-bag {
  padding: 8px 18px;
  background: var(--ink); color: white;
  border: none; border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background .15s;
  display: flex; align-items: center; gap: 6px;
}
.hdr-bag:hover { background: var(--gold-dk); }
.bag-ct {
  background: var(--rose); color: white;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  min-width: 18px;
}

/* ━━ SEARCH STRIP ━━ */
.search-strip {
  position: sticky; top: 65px; z-index: 499;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.search-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; display: flex; gap: 8px;
}
.search-inner input {
  flex: 1; padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  outline: none; color: var(--ink);
  background: var(--cream);
  transition: border-color .15s;
}
.search-inner input:focus { border-color: var(--gold); }
.search-inner button {
  padding: 10px 18px;
  background: var(--ink); color: white;
  border: none; border-radius: var(--r-pill);
  cursor: pointer; font-size: 14px;
  transition: background .15s;
}
.search-inner button:hover { background: var(--gold-dk); }

/* ━━ BUTTONS ━━ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: white; border: none;
  border-radius: var(--r-pill);
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: opacity .2s, transform .15s;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  border-radius: var(--r-pill);
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .15s;
}
.btn-outline:hover { background: var(--petal); }
.btn-atc {
  width: 100%; padding: 10px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .15s;
  color: var(--ink);
}
.btn-atc:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* Sparkle button flash */
.sparkle-active {
  animation: sparkleBtn .6s forwards;
}
@keyframes sparkleBtn {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.06); border-color: var(--gold); }
  100% { transform: scale(1); }
}

/* ━━ HERO ━━ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
  padding: 60px 32px 48px;
}
.hero-text {
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,6vw,72px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; max-width: 440px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  border-radius: 24px;
  background: linear-gradient(160deg, var(--petal) 0%, var(--blush) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; position: relative;
  min-height: 420px; overflow: hidden;
}
.hero-visual-inner {
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}
.hero-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: white; border-radius: var(--r);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 10px 14px;
}
.hb-label { font-size: 10px; color: var(--ink-lt); font-weight: 500; margin-bottom: 2px; }
.hb-val { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--ink); }
.hero-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--gold-lt);
  border-radius: var(--r-pill);
  padding: 5px 12px; font-size: 11px;
  font-weight: 600; color: var(--gold-dk);
  letter-spacing: .06em;
}

/* ━━ TRUST STRIP ━━ */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-mid);
}
.trust-icon {
  width: 28px; height: 28px; background: var(--blush);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/* ━━ SECTION ━━ */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 32px;
}
.section-head { text-align: center; margin-bottom: 32px; }
.section-eyebrow {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
  color: var(--ink); margin-bottom: 8px;
}
.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--ink-lt);
}

/* ━━ PRODUCT GRID ━━ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.pc-media {
  aspect-ratio: 3/4;
  background: var(--blush);
  display: flex; align-items: center;
  justify-content: center; font-size: 64px;
  position: relative; overflow: hidden; cursor: pointer;
}
.pc-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.pc-hover-overlay {
  position: absolute; inset: 0; opacity: 0;
  display: flex; align-items: center;
  justify-content: center; font-size: 64px;
  transition: opacity .3s;
}
.pc-media:hover .pc-hover-overlay { opacity: 1; }
.pc-badge {
  position: absolute; top: 12px; left: 12px;
  border-radius: var(--r-pill); padding: 4px 8px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  z-index: 2;
}
.badge-hot  { background: var(--gold-lt); color: var(--gold-dk); }
.badge-new  { background: var(--petal); color: var(--rose); }
.badge-sale { background: var(--rose); color: white; }
.pc-wish {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; background: white;
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 14px; display: flex;
  align-items: center; justify-content: center;
  transition: all .15s; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.pc-wish:hover { background: var(--rose); color: white; }
.pc-wish.wished { background: var(--rose); color: white; }
.pc-body { padding: 14px 16px; }
.pc-brand {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-lt); margin-bottom: 2px;
}
.pc-name {
  font-size: 14px; color: var(--ink); font-weight: 500;
  line-height: 1.3; margin-bottom: 6px;
}
.pc-stars { font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.pc-stars span { color: var(--ink-lt); }
.pc-price-row {
  display: flex; align-items: center;
  gap: 8px; margin-bottom: 10px;
}
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--ink);
}
.pc-was { font-size: 13px; color: var(--ink-lt); text-decoration: line-through; }
.pc-save {
  font-size: 11px; font-weight: 600;
  color: var(--rose); background: var(--petal);
  border-radius: var(--r-pill); padding: 2px 6px;
}
.pc-colors { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.pc-swatch {
  width: 18px; height: 18px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color .15s, transform .15s;
}
.pc-swatch:hover { transform: scale(1.15); }
.pc-swatch.active-swatch { border-color: var(--ink); }

/* ━━ FEATURED PRODUCT ━━ */
.featured-product {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--ink);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.fp-visual {
  background: linear-gradient(160deg, var(--petal), var(--rose));
  display: flex; align-items: center;
  justify-content: center; font-size: 120px;
  min-height: 360px; position: relative; overflow: hidden;
}
.fp-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.fp-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; background: rgba(42,24,32,.96); }
.fp-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.fp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300;
  line-height: 1.15; color: var(--ink); margin-bottom: 12px;
}
.fp-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--ink-mid);
  line-height: 1.7; margin-bottom: 20px;
}
.fp-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; color: var(--gold); margin-bottom: 16px;
}
.fp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.fp-tag {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 4px 10px;
  font-size: 11px; color: var(--ink-mid);
}

/* ━━ PROMO GRID ━━ */
.promo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.promo-card {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/2; position: relative;
  cursor: pointer;
}
.promo-card .pc-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: center; font-size: 120px; opacity: .2;
}
.promo-content {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.promo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300;
  color: white; margin-bottom: 4px;
}
.promo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ━━ REELS ━━ */
.reels-wrap { position: relative; }
.reels-scroll {
  display: flex; gap: 14px;
  overflow-x: auto; padding-bottom: 8px;
  -ms-overflow-style: none; scrollbar-width: none;
  scroll-behavior: smooth;
}
.reels-scroll::-webkit-scrollbar { display: none; }
.reel-card {
  flex-shrink: 0; width: 140px;
  cursor: pointer;
}
.reel-vid {
  aspect-ratio: 9/16; border-radius: 16px;
  overflow: hidden; background: var(--blush);
  display: flex; align-items: center;
  justify-content: center; position: relative;
}
.reel-play {
  position: absolute; width: 40px; height: 40px;
  background: rgba(255,255,255,.9); border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center; font-size: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.reel-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  border-radius: 0 0 16px 16px;
}
.reel-handle { font-size: 12px; font-weight: 600; color: white; }
.reel-cred { font-size: 10px; color: rgba(255,255,255,.7); }
.reels-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  z-index: 2; width: 36px; height: 36px;
  background: white; border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer;
  font-size: 16px; color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: all .15s;
}
.reels-arrow:hover { background: var(--gold); color: white; }
.reels-arrow.left { left: -18px; }
.reels-arrow.right { right: -18px; }
.reel-meta { padding: 8px 2px; }
.rm-handle { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.rm-tag { font-size: 10px; color: var(--ink-lt); }

/* ━━ LOYALTY BANNER ━━ */
.loyalty-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #4a3530 100%);
  border-radius: 20px; padding: 48px;
  display: flex; gap: 40px; align-items: center;
}
.loyalty-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
  color: white; line-height: 1.2; flex-shrink: 0;
  margin-bottom: 0;
}
.loyalty-banner h2 em { font-style: italic; color: var(--gold); }
.loyalty-banner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(255,255,255,.6);
  line-height: 1.7; flex: 1;
}
.lb-points { display: flex; gap: 24px; flex-shrink: 0; }
.lb-point-item { text-align: center; }
.lb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300;
  color: var(--gold); display: block; line-height: 1;
}
.lb-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: 4px;
}
.lb-cta {
  background: var(--gold); color: white;
  border: none; border-radius: var(--r-pill);
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: background .15s;
  white-space: nowrap; flex-shrink: 0;
}
.lb-cta:hover { background: var(--gold-dk); }

/* ━━ GIFT PROGRESS ━━ */
.gift-progress {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 60px;
}
.gp-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 12px;
  flex-wrap: wrap; gap: 8px;
}
.gp-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.gp-milestones { display: flex; gap: 16px; }
.gp-m {
  font-size: 12px; color: var(--ink-mid);
  display: flex; align-items: center; gap: 5px;
}
.gp-m span { font-weight: 700; color: var(--gold); }
.gp-track {
  height: 8px; background: var(--blush);
  border-radius: var(--r-pill); overflow: hidden;
  position: relative;
}
.gp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--rose) 100%);
  border-radius: var(--r-pill);
  transition: width .6s ease; position: relative;
}
.gp-fill::after {
  content: '✦'; position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%); font-size: 12px; color: white;
}
.gp-markers {
  display: flex; justify-content: space-between; margin-top: 6px;
}
.gp-mk { font-size: 11px; color: var(--ink-lt); }

/* ━━ REVIEWS STRIP ━━ */
.review-strip {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 8px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.review-strip::-webkit-scrollbar { display: none; }
.review-mini {
  flex-shrink: 0; width: 260px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 18px;
}
.rm-stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }
.rm-text {
  font-size: 13px; color: var(--ink-mid);
  line-height: 1.6; font-style: italic; margin-bottom: 10px;
}
.rm-name {
  font-size: 11px; font-weight: 600;
  color: var(--ink-lt); letter-spacing: .06em;
  text-transform: uppercase;
}
.rm-prod { font-size: 11px; color: var(--gold); }

/* ━━ NEWSLETTER POPUP ━━ */
.nl-overlay {
  position: fixed; inset: 0;
  background: rgba(42,36,32,.6);
  z-index: 800; display: none;
  align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(8px);
}
.nl-overlay.open { display: flex; }
.nl-box {
  background: white; border-radius: 24px;
  overflow: hidden; max-width: 420px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  animation: slideUp .4s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.nl-visual {
  height: 200px;
  background: linear-gradient(160deg, var(--petal) 0%, var(--rose) 100%);
  display: flex; align-items: center;
  justify-content: center; font-size: 72px;
  position: relative;
}
.nl-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.3);
  border: none; border-radius: 50%;
  width: 28px; height: 28px; cursor: pointer;
  font-size: 16px; color: white;
  display: flex; align-items: center; justify-content: center;
}
.nl-body { padding: 28px 28px 32px; text-align: center; }
.nl-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; line-height: 1.2; margin-bottom: 10px;
}
.nl-title em { font-style: italic; color: var(--rose); }
.nl-sub { font-size: 13px; color: var(--ink-mid); margin-bottom: 22px; line-height: 1.6; }
.nl-input-row { display: flex; gap: 8px; margin-bottom: 10px; }
.nl-input {
  flex: 1; padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  outline: none; color: var(--ink);
}
.nl-input:focus { border-color: var(--gold); }
.nl-btn {
  padding: 11px 18px;
  background: var(--ink); color: white;
  border: none; border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.nl-btn:hover { background: var(--gold-dk); }
.nl-skip {
  font-size: 12px; color: var(--ink-lt);
  cursor: pointer; text-decoration: underline;
}

/* ━━ CART DRAWER ━━ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 600;
  opacity: 0; pointer-events: none;
  transition: opacity .3s; backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; background: white; z-index: 601;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,.1);
}
.cart-drawer.open { transform: translateX(0); }
.cd-head {
  padding: 20px 22px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cd-title { font-size: 18px; color: var(--ink); }
.cd-close {
  width: 30px; height: 30px; background: var(--blush);
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 16px; color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.cd-close:hover { background: var(--rose); color: white; }
.cd-body { flex: 1; overflow-y: auto; padding: 20px 22px; }
.cd-empty { text-align: center; padding: 48px 0; color: var(--ink-lt); font-size: 14px; }
.cd-empty span { font-size: 40px; display: block; margin-bottom: 12px; }
.cd-gift-notice {
  background: var(--gold-lt); border: 1px solid var(--gold);
  border-radius: var(--r); padding: 10px 14px;
  font-size: 12px; color: var(--gold-dk);
  margin-bottom: 16px; display: flex;
  align-items: center; gap: 8px;
}
.cart-item {
  display: flex; gap: 14px; margin-bottom: 18px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.ci-img {
  width: 72px; height: 88px; border-radius: var(--r);
  background: var(--blush); flex-shrink: 0;
  display: flex; align-items: center;
  justify-content: center; font-size: 28px;
  overflow: hidden;
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; }
.ci-name { font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.ci-sub { font-size: 12px; color: var(--ink-lt); margin-bottom: 4px; }
.ci-price { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--ink); margin-top: 4px; }
.ci-qty-row {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: var(--r-pill);
  width: fit-content; overflow: hidden; margin: 4px 0;
}
.ci-qty-btn {
  width: 28px; height: 28px; background: none; border: none;
  cursor: pointer; font-size: 16px; color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.ci-qty-btn:hover { background: var(--blush); }
.ci-qty-val { padding: 0 8px; font-size: 13px; font-weight: 600; color: var(--ink); min-width: 24px; text-align: center; }
.ci-remove {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--ink-lt);
  padding: 0 0 0 4px; align-self: flex-start; margin-top: 2px;
  transition: color .15s; flex-shrink: 0;
}
.ci-remove:hover { color: var(--rose); }
.cd-foot { padding: 18px 22px; border-top: 1px solid var(--border); }
.cd-subtotal {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-mid); margin-bottom: 6px;
}
.cd-total {
  display: flex; justify-content: space-between;
  font-size: 17px; font-family: 'Cormorant Garamond', serif;
  margin-bottom: 14px; padding-top: 10px;
  border-top: 1px solid var(--border); color: var(--ink);
}
.btn-checkout {
  width: 100%; padding: 15px;
  background: var(--ink); color: white;
  border: none; border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
  margin-bottom: 8px;
}
.btn-checkout:hover { background: var(--gold-dk); }
.cd-secure {
  text-align: center; font-size: 11px;
  color: var(--ink-lt);
  display: flex; align-items: center;
  justify-content: center; gap: 5px;
}

/* ━━ FOOTER ━━ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.5); margin-top: 0; }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  letter-spacing: .16em; color: white; margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,.4); max-width: 220px; margin-bottom: 20px;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: 50%; border: none; cursor: pointer;
  font-size: 15px; color: rgba(255,255,255,.6);
  display: flex; align-items: center;
  justify-content: center; transition: all .15s;
}
.social-btn:hover { background: var(--gold); color: white; }
.footer-head {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.35);
  text-decoration: none; transition: color .15s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 32px; max-width: 1200px;
  margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,.25);
  flex-wrap: wrap; gap: 10px;
}
.trustpilot-mock {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r); padding: 10px 16px;
}
.tp-stars { color: #00B67A; font-size: 14px; }
.tp-info { font-size: 12px; }
.tp-info strong { color: white; font-size: 14px; }
.tp-info span { color: rgba(255,255,255,.65); }

/* ━━ DIVIDER ━━ */
.divider { height: 1px; background: var(--border); margin: 0 32px; }

/* ━━ SCROLL FADE IN ━━ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ━━ TOAST ━━ */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: white;
  padding: 11px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
  z-index: 9998; opacity: 0;
  transition: all .3s; pointer-events: none;
  white-space: nowrap;
}

/* ━━ SHOP PAGE FILTERS ━━ */
.shop-filters {
  background: white; border-bottom: 1px solid var(--border);
  padding: 14px 0; position: sticky; top: 109px; z-index: 490;
}
.shop-filters-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; display: flex;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.filter-label { font-size: 12px; font-weight: 600; color: var(--ink-lt); letter-spacing: .08em; text-transform: uppercase; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 6px 16px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border); background: white;
  font-size: 12px; font-weight: 500; color: var(--ink-mid);
  cursor: pointer; transition: all .15s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--ink); color: white; border-color: var(--ink);
}

/* ━━ SINGLE PRODUCT PAGE ━━ */
.product-page {
  max-width: 1200px; margin: 0 auto;
  padding: 40px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.product-gallery { position: sticky; top: 140px; align-self: start; }
.gallery-main {
  aspect-ratio: 3/4; border-radius: 16px;
  background: var(--blush); overflow: hidden;
  display: flex; align-items: center;
  justify-content: center; font-size: 100px;
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 68px; height: 68px; border-radius: var(--r);
  background: var(--blush); cursor: pointer;
  border: 2px solid transparent; overflow: hidden;
  display: flex; align-items: center;
  justify-content: center; font-size: 24px;
  transition: border-color .15s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--gold); }
.product-info { }
.product-breadcrumb { font-size: 12px; color: var(--ink-lt); margin-bottom: 16px; }
.product-breadcrumb a { color: var(--ink-lt); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--gold); }
.product-brand {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; line-height: 1.15;
  color: var(--ink); margin-bottom: 12px;
}
.product-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; margin-bottom: 20px;
}
.product-stars { color: var(--gold); }
.product-rcount { color: var(--ink-lt); }
.product-price-row {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; color: var(--ink);
}
.product-was { font-size: 18px; color: var(--ink-lt); text-decoration: line-through; }
.product-save {
  background: var(--petal); color: var(--rose);
  border-radius: var(--r-pill); padding: 4px 10px;
  font-size: 12px; font-weight: 600;
}
.product-loyalty {
  font-size: 12px; color: var(--gold); margin-bottom: 20px;
}
.product-variants { margin-bottom: 20px; }
.variant-label {
  font-size: 12px; font-weight: 600; color: var(--ink-lt);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.variant-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.v-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: all .15s; position: relative;
}
.v-swatch:hover, .v-swatch.active { border-color: var(--ink); transform: scale(1.1); }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.v-option {
  padding: 8px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-pill); font-size: 13px;
  cursor: pointer; transition: all .15s; color: var(--ink-mid);
}
.v-option:hover, .v-option.active {
  background: var(--ink); color: white; border-color: var(--ink);
}
.product-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-label { font-size: 12px; font-weight: 600; color: var(--ink-lt); letter-spacing: .08em; text-transform: uppercase; }
.qty-ctrl { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--r-pill); overflow: hidden; }
.qty-btn {
  width: 36px; height: 36px; background: none;
  border: none; cursor: pointer; font-size: 18px;
  color: var(--ink-mid); transition: background .15s;
}
.qty-btn:hover { background: var(--blush); }
.qty-val { padding: 0 12px; font-size: 15px; font-weight: 500; color: var(--ink); min-width: 36px; text-align: center; }
.product-ctas { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.btn-add-cart {
  flex: 1; padding: 15px;
  background: var(--ink); color: white;
  border: none; border-radius: var(--r-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.btn-add-cart:hover { background: var(--gold-dk); }
.btn-wishlist {
  width: 50px; height: 50px; background: var(--blush);
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 20px; display: flex;
  align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.btn-wishlist:hover, .btn-wishlist.wished { background: var(--rose); color: white; }
.product-shipping {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
  margin-bottom: 24px; font-size: 13px; color: var(--ink-mid);
}
.product-shipping strong { color: var(--ink); }
.product-tabs { margin-top: 32px; }
.tab-nav { display: flex; gap: 0; border-bottom: 1.5px solid var(--border); margin-bottom: 20px; }
.tab-btn {
  padding: 10px 20px; background: none;
  border: none; border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; color: var(--ink-lt);
  transition: all .15s;
}
.tab-btn.active { color: var(--ink); border-bottom-color: var(--gold); }
.tab-content { display: none; font-size: 14px; color: var(--ink-mid); line-height: 1.8; }
.tab-content.active { display: block; }

/* ━━ ACCOUNT PAGE ━━ */
.account-page { max-width: 900px; margin: 0 auto; padding: 40px 32px; }
.account-grid { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.account-sidebar { }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav a {
  padding: 10px 14px; border-radius: var(--r);
  font-size: 13px; color: var(--ink-mid);
  text-decoration: none; transition: all .15s;
  font-weight: 500;
}
.account-nav a:hover, .account-nav a.active {
  background: var(--petal); color: var(--rose);
}
.account-main { }
.loyalty-card {
  background: linear-gradient(135deg, var(--ink), #4a3530);
  border-radius: 16px; padding: 24px; color: white;
  margin-bottom: 24px;
}
.lc-points { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; }
.lc-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; }
.lc-history { margin-top: 20px; }
.lc-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.lc-row:last-child { border-bottom: none; }
.lc-earn { color: var(--gold); font-weight: 600; }
.lc-spend { color: var(--rose); font-weight: 600; }

/* ━━ WISHLIST PAGE ━━ */
.wishlist-page { max-width: 1200px; margin: 0 auto; padding: 40px 32px; }
.wishlist-empty { text-align: center; padding: 80px 0; }
.wishlist-empty span { font-size: 64px; display: block; margin-bottom: 16px; }

/* ━━ CHECKOUT OVERRIDES ━━ */
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce {
  max-width: 1200px; margin: 0 auto; padding: 40px 32px;
}
.woocommerce form .form-row label { font-size: 12px; font-weight: 600; color: var(--ink-lt); letter-spacing: .06em; text-transform: uppercase; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 10px 14px;
  background: var(--cream); color: var(--ink);
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--gold); outline: none; }
.woocommerce #place_order,
.woocommerce button[type=submit] {
  background: var(--ink); color: white;
  border-radius: var(--r-pill); border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 14px 32px; cursor: pointer;
  transition: background .2s; letter-spacing: .06em;
}
.woocommerce #place_order:hover,
.woocommerce button[type=submit]:hover { background: var(--gold-dk); }
.woocommerce table.shop_table {
  border-radius: var(--r); border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
}
.woocommerce table.shop_table th { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-lt); }
.woocommerce-cart-form .actions .coupon input { border: 1.5px solid var(--border); border-radius: var(--r-pill); padding: 10px 16px; font-family: 'DM Sans', sans-serif; }
.woocommerce a.button { border-radius: var(--r-pill); background: var(--ink); color: white; font-family: 'DM Sans', sans-serif; font-size: 13px; transition: background .15s; }
.woocommerce a.button:hover { background: var(--gold-dk); }

/* ━━ WC SIDEBAR REMOVAL ━━ */
.woocommerce-sidebar, .widget_product_categories,
.widget_layered_nav, .widget_price_filter { display: none !important; }

/* ━━ SEARCH RESULTS PAGE ━━ */
.search-results-page { max-width: 1200px; margin: 0 auto; padding: 40px 32px; }
.search-results-head { margin-bottom: 32px; }
.search-results-head h1 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--ink); }
.search-results-head p { font-size: 14px; color: var(--ink-lt); margin-top: 4px; }

/* ━━ PAGE HERO ━━ */
.page-hero {
  background: linear-gradient(160deg, var(--petal) 0%, var(--cream) 100%);
  padding: 48px 32px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--ink); margin-bottom: 8px;
}
.page-hero p { font-size: 15px; color: var(--ink-mid); max-width: 500px; margin: 0 auto; }

/* ━━ RESPONSIVE ━━ */
@media(max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 32px 20px; }
  .hero-visual { min-height: 260px; }
  .featured-product { grid-template-columns: 1fr; }
  .fp-visual { min-height: 200px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 20px 28px; }
  .promo-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .float-nav { right: 8px; }
  .header-nav { display: none; }
  .loyalty-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .lb-points { justify-content: center; }
  .product-page { grid-template-columns: 1fr; padding: 24px 20px; }
  .product-gallery { position: static; }
  .section { padding: 32px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .account-grid { grid-template-columns: 1fr; }
  .divider { margin: 0 20px; }
  .trust-inner { justify-content: center; }
}
@media(max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-title { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ━━ CHECKOUT LOYALTY PANEL ━━ */
.vif-checkout-points {
  background: var(--gold-lt); border: 1.5px solid var(--gold);
  border-radius: var(--r); padding: 16px 20px;
  margin-bottom: 20px;
}
.vcp-head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--gold-dk); margin-bottom: 8px; }
.vcp-bal { font-size: 13px; color: var(--ink-mid); margin-bottom: 10px; }
.vcp-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.vcp-btn {
  padding: 7px 16px; background: var(--gold); color: white;
  border: none; border-radius: var(--r-pill); font-size: 12px;
  font-weight: 500; cursor: pointer; transition: background .15s;
}
.vcp-btn:hover { background: var(--gold-dk); }
.vcp-applied { font-size: 12px; color: var(--gold-dk); font-weight: 600; }

/* ━━ GIFT PROGRESS BAR ━━ */
.gift-progress { background: var(--gold-lt); border-radius: 50px; height: 6px; margin: 8px 0 4px; overflow: hidden; }
#gpFill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--rose)); border-radius: 50px; transition: width .5s; width: 0; }
#gpLabel { font-size: 11px; color: var(--ink-mid); }
