/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FFFFFF;
  --paper: #FBF9F7;
  --blush: #F6ECEF;
  --nude: #F7F1ED;
  --beige: #F4EFE9;
  --rose: #C9A0A6;
  --rose-deep: #B0898F;
  --gold: #C2A878;
  --champagne: #E4D5C3;
  --ink: #2B2326;
  --ink-soft: #5C5256;
  --ink-mute: #998E92;
  --line: rgba(43, 35, 38, 0.08);
  --line-soft: rgba(43, 35, 38, 0.05);
  --shadow-sm: 0 2px 10px rgba(43, 35, 38, 0.05);
  --shadow-md: 0 12px 32px rgba(43, 35, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(43, 35, 38, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Jost', 'Manrope', sans-serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --max: 1280px;
  --header-h: 76px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--body); background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.65; font-weight: 400; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============ PRELOADER ============ */
.preloader-hidden .preloader { display: none !important; }

.preloader {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #FBF9F7 0%, #F4EFE9 50%, #F6ECEF 100%);
  overflow: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.preloader-glow-1 { width: 380px; height: 380px; background: rgba(201,160,166,0.4); top: -120px; left: -80px; animation: floatGlow 6s ease-in-out infinite; }
.preloader-glow-2 { width: 320px; height: 320px; background: rgba(194,168,120,0.3); bottom: -110px; right: -70px; animation: floatGlow 8s ease-in-out infinite reverse; }
.preloader-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.preloader-ring {
  width: 96px; height: 96px; border-radius: 50%;
  border: 2px solid rgba(176,137,143,0.2); position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(176,137,143,0.2);
}
.preloader-ring::before {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--rose-deep); border-right-color: var(--rose-deep);
  animation: spinRing 1s linear infinite;
}
.preloader-mark {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--ink);
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: markPulse 1.6s ease-in-out infinite;
}
.preloader-brand {
  font-family: var(--display); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.34em;
  color: var(--ink); margin-top: 22px; padding-left: 0.34em;
  background: linear-gradient(90deg, var(--ink) 0%, var(--rose-deep) 50%, var(--ink) 100%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; animation: shimmer 2s linear infinite;
}
.preloader-bar { width: 160px; height: 3px; border-radius: 3px; background: rgba(176,137,143,0.18); margin-top: 20px; overflow: hidden; }
.preloader-bar i { display: block; height: 100%; width: 40%; border-radius: 3px; background: linear-gradient(90deg, var(--rose), var(--rose-deep)); animation: loaderSlide 1.2s ease-in-out infinite; }
@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes markPulse { 0%,100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes loaderSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--champagne); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 460px;
}

.section-header { max-width: 560px; margin: 0 auto 48px; text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }
.section-header-row {
  max-width: var(--max);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  margin: 0 auto 40px;
}
.section-header-row .section-subtitle { margin: 12px 0 0; }

/* ============ BUTTONS ============ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 0.82rem;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.btn-primary:hover {
  background: linear-gradient(120deg, var(--rose-deep), var(--rose));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(176,137,143,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-sm { padding: 11px 22px; font-size: 0.74rem; }
.btn-lg { padding: 17px 38px; font-size: 0.86rem; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.82rem;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

/* ============ HEADER ============ */
.glass-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 1600px;
  z-index: 1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(43,35,38,0.07);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding: 0 22px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
}
.logo-text {
  font-family: var(--display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--ink);
}
.header-nav { display: flex; gap: 30px; }
.header-nav a {
  font-family: var(--display); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.05em; color: var(--ink-soft); position: relative;
  padding: 4px 0; transition: color 0.3s var(--ease);
}
.header-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--rose-deep); transition: width 0.3s var(--ease);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a:hover::after { width: 100%; }
.nav-auth { display: none; }
.header-right { display: flex; align-items: center; gap: 4px; position: relative; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: var(--blush); color: var(--ink); }
.cart-btn, .wishlist-btn { position: relative; }
.cart-count {
  position: absolute; top: 5px; right: 5px;
  background: var(--rose-deep); color: #fff;
  font-family: var(--display); font-size: 0.6rem; font-weight: 600;
  min-width: 16px; height: 16px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: 4px;
}
.hamburger span { width: 22px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.shop-now-btn { display: inline-flex; align-items: center; margin-left: 6px; }

/* ============ LIVE SEARCH ============ */
.search-widget { display: flex; align-items: center; flex: none; }
.search-dropdown {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: 380px; max-width: 86vw;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(43,35,38,0.16);
  padding: 14px; z-index: 1100;
  animation: searchPop 0.25s var(--ease);
}
@keyframes searchPop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.search-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; background: var(--blush); }
.search-bar-icon { width: 18px; height: 18px; color: var(--rose-deep); flex: none; }
.search-bar input {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--display); font-size: 0.92rem; color: var(--ink); letter-spacing: 0.02em;
}
.search-bar input::placeholder { color: var(--muted); }
.search-clear { border: none; background: none; cursor: pointer; color: var(--ink-soft); font-size: 1.3rem; line-height: 1; padding: 0 2px; }
.search-results { max-height: 360px; overflow-y: auto; margin-top: 10px; }
.search-result {
  display: flex; align-items: center; gap: 12px; padding: 9px 8px; border-radius: var(--radius);
  text-decoration: none; color: var(--ink); transition: background 0.2s var(--ease);
}
.search-result:hover { background: var(--blush); }
.search-result img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex: none; background: var(--blush); }
.search-result-meta { min-width: 0; }
.search-result-name { font-family: var(--display); font-size: 0.86rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-sub { font-family: var(--display); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
.search-result-price { margin-left: auto; font-family: var(--display); font-size: 0.84rem; font-weight: 600; color: var(--rose-deep); white-space: nowrap; }
.search-empty, .search-hint { padding: 18px 8px; text-align: center; color: var(--muted); font-family: var(--display); font-size: 0.84rem; }
.search-more { display: block; text-align: center; margin-top: 6px; padding: 10px; border-radius: var(--radius); background: var(--blush); color: var(--rose-deep); font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.06em; text-decoration: none; transition: background 0.2s var(--ease); }
.search-more:hover { background: var(--rose); color: #fff; }

/* ============ HERO ============ */
.hero { padding: calc(var(--header-h) + 44px) 16px 56px; max-width: 1600px; margin: 0 auto; }
.hero-container { display: grid; grid-template-columns: 1.7fr 1fr; gap: 22px; align-items: stretch; }
.hero-left, .hero-right { height: 380px; border-radius: var(--radius-lg); overflow: hidden; }
.hero-image-wrapper { position: relative; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(43,35,38,0.62) 0%, rgba(43,35,38,0.18) 42%, rgba(43,35,38,0) 70%);
}
.hero-content {
  position: absolute; top: 0; left: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 36px 46px; max-width: 560px;
}
.hero-eyebrow {
  font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 10px;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600; line-height: 1.1; color: #fff; letter-spacing: -0.015em;
}
.hero-subtitle {
  font-size: 0.9rem; color: rgba(255,255,255,0.9); margin: 12px 0 22px; line-height: 1.6;
}
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-right { position: relative; height: 380px; }
.hero-right-image { position: relative; width: 100%; height: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.hero-right-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,35,38,0) 40%, rgba(43,35,38,0.55) 100%); }
.glass-soft {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-right-content { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; padding: 12px 14px; border-radius: var(--radius-md); }
.hero-right-badge { font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; opacity: 0.85; }
.hero-right-title { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: #fff; margin: 3px 0 2px; }
.hero-right-subtitle { font-size: 0.72rem; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.hero-right-price {
  display: inline-block; background: #fff; color: var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 0.7rem;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; letter-spacing: 0.04em;
}

/* ===== Hero banner slider (hero-left, multiple banners) ===== */
.hero-slider { position: relative; width: 100%; height: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.hero-slides { display: flex; width: 100%; height: 100%; transition: transform .6s ease; will-change: transform; }
.hero-slide { position: relative; flex: 0 0 100%; width: 100%; height: 100%; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border: none; border-radius: 50%; background: rgba(255,255,255,0.82); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.18); transition: background .2s ease; }
.hero-nav:hover { background: #fff; }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.55); cursor: pointer; padding: 0; transition: background .2s ease, width .2s ease; }
.hero-dot.active { background: #fff; width: 22px; border-radius: 5px; }

/* Below best sellers banner keeps .promo-banner base */
.banner-below_best_sellers { margin: 20px 16px; }

/* Per-device visibility for banner text & buttons */
/* Default: text/buttons are visible. Media queries hide them when requested. */

/* Text visibility (base: visible) */
.hide-text-mobile .promo-eyebrow,
.hide-text-mobile .promo-title,
.hide-text-mobile .hero-eyebrow,
.hide-text-mobile .hero-title,
.hide-text-mobile .hero-right-badge,
.hide-text-mobile .hero-right-title,
.hide-text-mobile .hero-right-subtitle,
.hide-text-mobile .hero-right-price,
.hide-text-desktop .promo-eyebrow,
.hide-text-desktop .promo-title,
.hide-text-desktop .hero-eyebrow,
.hide-text-desktop .hero-title,
.hide-text-desktop .hero-right-badge,
.hide-text-desktop .hero-right-title,
.hide-text-desktop .hero-right-subtitle,
.hide-text-desktop .hero-right-price { display: block; }

/* Button visibility (base: visible) */
.hide-btn-mobile a.btn-primary,
.hide-btn-mobile a.btn-outline,
.hide-btn-desktop a.btn-primary,
.hide-btn-desktop a.btn-outline { display: inline-flex; }

@media (max-width: 768px) {
  .hide-text-mobile .promo-eyebrow,
  .hide-text-mobile .promo-title,
  .hide-text-mobile .hero-eyebrow,
  .hide-text-mobile .hero-title,
  .hide-text-mobile .hero-right-badge,
  .hide-text-mobile .hero-right-title,
  .hide-text-mobile .hero-right-subtitle,
  .hide-text-mobile .hero-right-price { display: none; }

  .hide-btn-mobile a.btn-primary,
  .hide-btn-mobile a.btn-outline { display: none; }
}

@media (min-width: 769px) {
  .hide-text-desktop .promo-eyebrow,
  .hide-text-desktop .promo-title,
  .hide-text-desktop .hero-eyebrow,
  .hide-text-desktop .hero-title,
  .hide-text-desktop .hero-right-badge,
  .hide-text-desktop .hero-right-title,
  .hide-text-desktop .hero-right-subtitle,
  .hide-text-desktop .hero-right-price { display: none; }

  .hide-btn-desktop a.btn-primary,
  .hide-btn-desktop a.btn-outline { display: none; }
}

@media (max-width: 768px) {
  .hero-slide .hero-content { padding: 24px 18px 30px; }
}

/* ============ CATEGORIES ============ */
.categories { padding: 56px 0 28px; overflow: hidden; }
.categories-track-wrapper { position: relative; padding: 0 16px; }
.categories-viewport {
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.categories-viewport::-webkit-scrollbar { display: none; }
.categories-track {
  display: flex; justify-content: center; gap: 14px;
  padding: 6px 0 16px;
}
.categories-track > * { scroll-snap-align: start; }
.cat-card {
  flex: 0 0 auto; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 18px; width: 130px;
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); cursor: pointer;
  text-decoration: none;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), 
              border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(176,137,143,0.22);
  border-color: var(--rose-deep);
  background: linear-gradient(180deg, rgba(201,160,166,0.05) 0%, var(--white) 100%);
}
.cat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F6ECEF 0%, #FDF2F4 100%);
  color: var(--rose-deep);
  box-shadow: 0 4px 14px rgba(176,137,143,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cat-icon svg { width: 30px; height: 30px; transition: transform 0.4s var(--ease); }
.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 10px 30px rgba(176,137,143,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.cat-card:hover .cat-icon svg { transform: scale(1.1) rotate(6deg); }
.cat-card span:last-child {
  font-family: var(--display); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.02em; color: var(--ink); text-align: center;
  transition: color 0.3s var(--ease);
  display: block; line-height: 1.3; margin-top: 2px;
}
.cat-card:hover span:last-child { color: var(--rose-deep); }

@media (max-width: 1024px) {
  .categories { padding: 44px 0 20px; }
  .categories-track { gap: 10px; padding: 6px 0 16px; }
  .cat-card { width: 120px; padding: 18px 12px; }
  .cat-icon { width: 52px; height: 52px; }
  .cat-icon svg { width: 26px; height: 26px; }
  .cat-card span:last-child { font-size: 0.74rem; }
}
@media (max-width: 620px) {
  .categories { padding: 36px 0 16px; }
  .categories-track { gap: 8px; padding: 4px 0 14px; }
  .cat-card { width: 100px; padding: 14px 10px; border-radius: 14px; }
  .cat-icon { width: 44px; height: 44px; }
  .cat-icon svg { width: 22px; height: 22px; }
  .cat-card span:last-child { font-size: 0.66rem; }
}

/* ============ PRODUCT SECTIONS ============ */
.products-section { padding: 28px 16px 64px; max-width: var(--max); margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--line-soft); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--beige); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--display); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px; color: #fff;
  background: rgba(43,35,38,0.75); backdrop-filter: blur(6px);
}
.product-tag.sale { background: var(--rose-deep); }
.product-wishlist {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.product-wishlist svg { width: 18px; height: 18px; color: var(--ink-soft); transition: 0.3s var(--ease); }
.product-wishlist:hover { transform: scale(1.08); }
.product-wishlist:hover svg { color: var(--rose-deep); fill: var(--rose-deep); }
.product-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.product-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: auto; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin: 10px 0; }
.product-price { font-family: var(--display); font-size: 0.81rem; font-weight: 600; color: var(--ink); }
.product-price s { color: var(--ink-mute); font-weight: 400; font-size: 0.7rem; margin-right: 6px; }
.product-rating { font-size: 0.72rem; color: var(--ink-mute); display: flex; align-items: center; gap: 3px; }
.product-rating b { color: var(--rose-deep); font-weight: 600; }
.add-to-cart {
  width: 100%; padding: 10px; font-family: var(--display); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  background: var(--beige); border: 1px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.add-to-cart:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.view-all { font-family: var(--display); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--rose-deep); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s var(--ease); }
.view-all:hover { gap: 12px; }
.view-all .arrow { transition: transform 0.3s var(--ease); }
.view-all:hover .arrow { transform: translateX(3px); }

/* ============ PROMO BANNER ============ */
.promo-banner {
  position: relative; margin: 32px 16px; max-width: var(--max); margin-left: auto; margin-right: auto;
  border-radius: var(--radius-lg); overflow: hidden; min-height: 380px;
  display: flex; align-items: center;
}
.promo-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(43,35,38,0.66) 0%, rgba(43,35,38,0.2) 55%, rgba(43,35,38,0) 80%); }
.promo-content { position: relative; z-index: 2; padding: 60px 56px; max-width: 580px; }
.promo-eyebrow { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 14px; display: block; }
.promo-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: #fff; line-height: 1.12; }
.promo-subtitle { font-size: 0.98rem; color: rgba(255,255,255,0.9); margin: 16px 0 28px; }

/* ============ WHY CHOOSE US ============ */
.why-choose-us { padding: 64px 16px; max-width: var(--max); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-card {
  padding: 30px 22px; border-radius: var(--radius-md); text-align: center;
  background: var(--paper); border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.why-icon { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--rose-deep); }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-family: var(--display); font-size: 0.86rem; font-weight: 500; color: var(--ink); letter-spacing: 0.02em; margin-bottom: 6px; }
.why-card p { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.55; }

/* ============ BRAND SHOWCASE ============ */
.brand-showcase { padding: 48px 0; background: var(--beige); }
.brand-showcase .section-header { margin-bottom: 30px; }
.brand-showcase .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.brands-track-wrapper { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands-track { display: flex; gap: 56px; width: max-content; animation: scrollBrands 34s linear infinite; }
@keyframes scrollBrands { to { transform: translateX(-50%); } }
.brand-item { display: flex; align-items: center; padding: 6px 0; filter: grayscale(1); opacity: 0.4; transition: filter 0.4s var(--ease), opacity 0.4s var(--ease); }
.brand-item:hover { filter: grayscale(0); opacity: 1; }
.brand-item span { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: 0.14em; color: var(--ink); white-space: nowrap; }

/* ============ FEATURED COLLECTIONS ============ */
.featured-collections { padding: 64px 16px; max-width: var(--max); margin: 0 auto; }
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.collection-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.collection-card:hover img { transform: scale(1.07); }
.collection-overlay {
  position: absolute; inset: auto 0 0 0; padding: 24px 20px;
  background: linear-gradient(180deg, rgba(43,35,38,0) 0%, rgba(43,35,38,0.7) 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  transition: background 0.4s var(--ease);
}
.collection-overlay h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: #fff; }
.collection-overlay p { font-size: 0.76rem; color: rgba(255,255,255,0.82); margin-bottom: 12px; }
.collection-overlay .btn-primary { background: #fff; color: var(--ink); }
.collection-overlay .btn-primary:hover { background: linear-gradient(120deg, var(--rose-deep), var(--rose)); color: #fff; }

/* ============ BEAUTY TIPS ============ */
.beauty-tips { padding: 64px 16px; max-width: var(--max); margin: 0 auto; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tip-card {
  border-radius: var(--radius-md); overflow: hidden; background: var(--white);
  border: 1px solid var(--line-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tip-media { aspect-ratio: 16/10; overflow: hidden; }
.tip-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tip-card:hover .tip-media img { transform: scale(1.06); }
.tip-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.tip-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; font-family: var(--display); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.tip-category { color: var(--rose-deep); font-weight: 500; }
.tip-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.tip-body p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.6; }
.tip-readmore { margin-top: auto; padding-top: 14px; font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--rose-deep); display: inline-flex; align-items: center; gap: 6px; }
.tip-card:hover .tip-readmore { gap: 12px; }

/* ============ COMPARISON ============ */
.comparison-section { padding: 64px 16px; max-width: 760px; margin: 0 auto; }
.comparison-slider { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; user-select: none; cursor: ew-resize; box-shadow: var(--shadow-md); }
.comparison-left, .comparison-right { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.comparison-left { left: 0; width: 50%; z-index: 2; }
.comparison-right { left: 0; width: 100%; }
.comparison-img { width: 100%; height: 100%; object-fit: cover; }
.comparison-left .comparison-img { width: 200%; }
.comparison-right .comparison-img { width: 100%; }
.comparison-label {
  position: absolute; bottom: 16px; padding: 5px 14px; border-radius: 50px;
  font-family: var(--display); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); color: var(--ink); z-index: 3;
}
.comparison-left .comparison-label { left: 16px; }
.comparison-label-after { right: 16px; }
.comparison-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: #fff; z-index: 4; transform: translateX(-50%); cursor: ew-resize; box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
.handle-line {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.handle-line::before, .handle-line::after {
  content: ''; position: absolute; top: 50%; width: 0; height: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent; transform: translateY(-50%);
}
.handle-line::before { left: 12px; border-right: 7px solid var(--ink-soft); }
.handle-line::after { right: 12px; border-left: 7px solid var(--ink-soft); }

/* ============ INSTAGRAM ============ */
.instagram-gallery { padding: 64px 16px; max-width: var(--max); margin: 0 auto; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay { position: absolute; inset: 0; background: rgba(43,35,38,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s var(--ease); }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span { color: #fff; font-family: var(--display); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em; }

/* ============ REVIEWS ============ */
.reviews { padding: 64px 16px; max-width: var(--max); margin: 0 auto; overflow: hidden; }
.review-stats { display: flex; justify-content: center; gap: 64px; margin-bottom: 46px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--rose-deep); line-height: 1; }
.stat-label { font-family: var(--display); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; display: block; }
.reviews-track-wrapper { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); padding: 8px 0; }
.reviews-track { display: flex; gap: 22px; width: max-content; animation: scrollReviews 46s linear infinite; }
@keyframes scrollReviews { to { transform: translateX(-50%); } }
.review-card {
  flex: 0 0 auto; width: 340px; padding: 26px; border-radius: var(--radius-md);
  background: var(--paper); border: 1px solid var(--line-soft);
}
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-stars { color: #C9A24B; font-size: 0.95rem; letter-spacing: 2px; }
.review-badge { font-family: var(--display); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #1f8a4c; background: rgba(31,138,76,0.1); padding: 4px 10px; border-radius: 50px; }
.review-text { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--rose); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 0.8rem; }
.review-author strong { font-family: var(--display); font-size: 0.82rem; font-weight: 500; color: var(--ink); display: block; }
.review-author span { font-size: 0.72rem; color: var(--ink-mute); }

/* ============ FAQ ============ */
.faq { padding: 64px 16px; max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line-soft); overflow: hidden; transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.faq-item:hover { border-color: var(--line); }
.faq-item.active { box-shadow: var(--shadow-sm); border-color: var(--rose); }
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--display); font-size: 0.9rem; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; text-align: left; gap: 16px;
}
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-mute); transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--rose-deep); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item.active .faq-answer { max-height: 240px; }
.faq-answer p { padding: 0 24px 22px; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.7; }

/* ============ NEWSLETTER ============ */
.newsletter {
  position: relative; margin: 32px 16px; max-width: var(--max); margin-left: auto; margin-right: auto;
  border-radius: var(--radius-lg); overflow: hidden; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blush), var(--beige));
}
.newsletter-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.newsletter-glow-1 { width: 320px; height: 320px; background: rgba(201,160,166,0.4); top: -90px; right: -60px; animation: floatGlow 7s ease-in-out infinite; }
.newsletter-glow-2 { width: 260px; height: 260px; background: rgba(194,168,120,0.3); bottom: -80px; left: -50px; animation: floatGlow 9s ease-in-out infinite reverse; }
@keyframes floatGlow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(24px,-24px); } }
.newsletter-content { position: relative; z-index: 2; text-align: center; padding: 60px 24px; max-width: 520px; }
.newsletter-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.newsletter-subtitle { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 26px; }
.newsletter-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 15px 22px; border: 1px solid rgba(43,35,38,0.12); border-radius: 50px; font-family: var(--body); font-size: 0.88rem; outline: none; background: rgba(255,255,255,0.7); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.newsletter-form input:focus { border-color: var(--rose-deep); box-shadow: 0 0 0 3px rgba(176,137,143,0.15); }
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-note { font-size: 0.72rem; color: var(--ink-mute); margin-top: 16px; }

/* ============ FINAL CTA ============ */
.final-cta { padding: 110px 16px; text-align: center; max-width: var(--max); margin: 0 auto; }
.final-cta-content { max-width: 620px; margin: 0 auto; }
.final-cta-title { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: var(--ink); margin: 10px 0 16px; letter-spacing: -0.015em; }
.final-cta-subtitle { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 34px; }

/* ============ FOOTER ============ */
.footer {
  position: relative;
  background: linear-gradient(160deg, #2B2326 0%, #3A2C30 45%, #4A353B 100%);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 72px 16px 0;
  margin-top: 48px;
  overflow: hidden;
}
.footer-aura { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5; }
.footer-aura-1 { width: 420px; height: 420px; background: rgba(201,160,166,0.35); top: -160px; left: -120px; }
.footer-aura-2 { width: 380px; height: 380px; background: rgba(194,168,120,0.28); bottom: -160px; right: -100px; }
.footer-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; }
.footer .logo-text { color: #fff; }
.footer .logo-mark { background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; }
.footer-about { font-size: 0.84rem; color: rgba(255,255,255,0.62); margin-top: 18px; line-height: 1.7; max-width: 300px; }
.footer-subscribe { display: flex; gap: 8px; margin-top: 22px; max-width: 300px; }
.footer-subscribe input {
  flex: 1; padding: 12px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06); color: #fff; font-family: var(--body); font-size: 0.82rem; outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.45); }
.footer-subscribe input:focus { border-color: var(--rose); background: rgba(255,255,255,0.1); }
.footer-subscribe button { width: 46px; height: 46px; flex-shrink: 0; padding: 0; font-size: 1.1rem; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-ico {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; overflow: visible;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
}

/* Rose gradient — fades in smoothly on hover */
.social-ico::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 0;
}

/* Minimal ring — expands from center on hover */
.social-ico::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,166,0.5);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.45s var(--ease), opacity 0.35s ease;
  z-index: -1;
  pointer-events: none;
}

.social-ico svg {
  width: 20px; height: 20px; display: block;
  position: relative; z-index: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Hover state (minimalist) --- */
.social-ico:hover {
  transform: translateY(-4px);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(201,160,166,0.3);
}

/* Ring expands */
.social-ico:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Gradient fills */
.social-ico:hover::before {
  opacity: 1;
}

/* Icon gently lifts */
.social-ico:hover svg {
  transform: scale(1.06);
}

.social-ico:focus-visible {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(201,160,166,0.35);
}
.footer-col h4 {
  font-family: var(--display); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 1px; background: linear-gradient(90deg, var(--rose), transparent); }
.footer-col a { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: rgba(255,255,255,0.6); padding: 6px 0; transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.c-ico { color: var(--rose); font-size: 0.9rem; line-height: 1; }

.footer-bottom { position: relative; z-index: 2; padding: 26px 0 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.01em; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }

/* ============ MOBILE BOTTOM NAV ============ */
.mobile-bottom-nav {
  position: fixed; left: 50%; bottom: 14px; transform: translateX(-50%);
  z-index: 1200; width: calc(100% - 24px); max-width: 560px;
  display: none; align-items: stretch; justify-content: space-around; gap: 4px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(43,35,38,0.08);
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(43,35,38,0.14);
}
.mobile-bottom-nav .mb-nav-btn {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  background: none; border: none; cursor: pointer; padding: 6px 2px; border-radius: 14px;
  color: var(--ink-mute); font-family: var(--display); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.25s var(--ease);
}
.mobile-bottom-nav .mb-nav-btn:active { transform: scale(0.92); }
.mobile-bottom-nav .mb-nav-ico { position: relative; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.mobile-bottom-nav .mb-nav-ico svg { width: 23px; height: 23px; }
.mobile-bottom-nav .mb-nav-btn.active { color: var(--rose-deep); background: rgba(176,137,143,0.10); }
.mobile-bottom-nav .mb-nav-btn.active .mb-nav-ico { transform: translateY(-1px); }
.mobile-bottom-nav .mb-nav-label { line-height: 1; }
.mobile-bottom-nav .mb-nav-badge {
  position: absolute; top: -5px; right: -9px;
  background: var(--rose-deep); color: #fff; font-family: var(--display); font-weight: 600; font-size: 0.55rem;
  min-width: 16px; height: 16px; border-radius: 9px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px rgba(255,255,255,0.85);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 104px; }
  .hero-left, .hero-right, .hero-image-wrapper, .hero-right-image { height: 300px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex; flex-direction: column; position: absolute; top: calc(var(--header-h) + 10px); left: 16px; right: 16px;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-radius: var(--radius-md);
    padding: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft); gap: 14px;
  }
  .header-nav .nav-auth {
    display: flex; flex-direction: column; gap: 14px; margin-top: 6px; padding-top: 16px;
    border-top: 1px solid var(--line-soft);
  }
  .header-nav .nav-auth a, .header-nav .nav-logout {
    font-family: var(--display); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
    color: var(--rose-deep); background: none; border: none; padding: 4px 0; text-align: left; cursor: pointer;
  }
  .header-nav .nav-auth a:hover, .header-nav .nav-logout:hover { color: var(--ink); }
  .header-nav .nav-auth .inline-logout { margin-left: 0; }
  .hamburger { display: flex; }
  .header-extra { display: none; }
  .header-right .inline-logout { display: none; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .review-stats { gap: 32px; }
}
@media (max-width: 768px) {
  .glass-header { top: 10px; width: calc(100% - 20px); padding: 0 12px; }
  .hero { padding: calc(var(--header-h) + 24px) 12px 24px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { height: 230px; }
  .hero-image-wrapper { height: 100%; min-height: 230px; }
  .categories { padding-top: 28px; }
  .products-section { padding: 18px 16px 44px; }
  .why-choose-us, .featured-collections, .beauty-tips, .instagram-gallery, .reviews, .faq, .comparison-section { padding: 40px 16px; }
  .promo-banner, .newsletter { margin: 20px 12px; }
  .final-cta { padding: 56px 16px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .section-header { margin-bottom: 28px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-body { padding: 10px 10px 12px; }
  .product-cat { font-size: 0.52rem; margin-bottom: 3px; }
  .product-title { font-size: 0.92rem; }
  .product-meta { flex-direction: row; align-items: center; justify-content: space-between; margin: 8px 0; gap: 6px; }
  .product-price { font-size: 0.86rem; }
  .product-rating { font-size: 0.64rem; }
  .add-to-cart { padding: 9px; font-size: 0.66rem; }
  .promo-content { display: none; }
  .promo-banner { min-height: 240px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .review-stats { flex-direction: column; gap: 18px; }
  .review-card { width: 280px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 22px; padding-bottom: 40px; }
  .footer-col.brand-col { grid-column: 1 / -1; }
  .footer-col.brand-col .footer-about { max-width: 480px; }
  .footer-subscribe { max-width: 400px; }
  .footer-social { margin-top: 20px; }
  .footer-col:last-child {
    grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 28px; row-gap: 0; align-content: start;
  }
  .footer-col:last-child h4 { grid-column: 1 / -1; }
  .footer-col a { padding: 5px 0; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-body { padding: 9px 9px 11px; }
  .product-title { font-size: 0.9rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-card { padding: 22px 14px; }
  .collections-grid { grid-template-columns: 1fr; }
  .hero-left, .hero-image-wrapper { height: 200px; }
  .promo-banner { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track, .reviews-track { animation: none; }
  .reveal, .reveal-stagger > * { transition: none; opacity: 1; transform: none; }
}

/* ===================== DARK MODE ===================== */
html.theme-dark {
  --white: #1a1a1e;
  --paper: #151316;
  --blush: #2a2226;
  --nude: #1e1a1d;
  --beige: #241f22;
  --rose: #9a7a80;
  --rose-deep: #c49a9f;
  --gold: #a08850;
  --champagne: #6b5d4f;
  --ink: #f0ebed;
  --ink-soft: #b0a8aa;
  --ink-mute: #7a7274;
  --line: rgba(255,255,255,0.08);
  --line-soft: rgba(255,255,255,0.04);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.5);
}

html.theme-dark body { background: var(--paper); color: var(--ink); }
html.theme-dark .glass-header { background: rgba(21,19,22,0.85); border-bottom-color: var(--line); }
html.theme-dark .glass-header.scrolled { background: rgba(21,19,22,0.95); }
html.theme-dark .header-nav a, html.theme-dark .header-right a, html.theme-dark .header-right button { color: var(--ink-soft); }
html.theme-dark .header-right .icon-btn { background: rgba(255,255,255,0.04); }
html.theme-dark .header-right .icon-btn:hover { background: rgba(255,255,255,0.08); }
html.theme-dark .logo-text { color: var(--ink); }

html.theme-dark .hero { background: var(--paper); }
html.theme-dark .hero-left h1, html.theme-dark .hero-left p { color: var(--ink); }
html.theme-dark .section-title, html.theme-dark .section-sub { color: var(--ink); }
html.theme-dark .section-sub { color: var(--ink-soft); }

html.theme-dark .product-card { background: var(--white); border-color: var(--line); }
html.theme-dark .product-card:hover { box-shadow: var(--shadow-md); }
html.theme-dark .product-title { color: var(--ink); }
html.theme-dark .product-cat { color: var(--ink-mute); }
html.theme-dark .product-price { color: var(--ink); }
html.theme-dark .product-rating { color: var(--gold); }
html.theme-dark .product-meta .product-rating b { color: var(--ink); }
html.theme-dark .add-to-cart { background: var(--rose-deep); color: #fff; }
html.theme-dark .add-to-cart:hover { background: var(--ink); }
html.theme-dark .product-wishlist { background: rgba(255,255,255,0.06); color: var(--ink-soft); }

html.theme-dark .panel, html.theme-dark .feature-card, html.theme-dark .why-card, html.theme-dark .testimonial-card { background: var(--white); border-color: var(--line); }
html.theme-dark .why-card h4, html.theme-dark .feature-card h4, html.theme-dark .testimonial-card h4 { color: var(--ink); }
html.theme-dark .why-card p, html.theme-dark .feature-card p { color: var(--ink-soft); }
html.theme-dark .testimonial-text { color: var(--ink-soft); }
html.theme-dark .testimonial-name { color: var(--ink); }

html.theme-dark .footer { background: #0e0c0e; color: var(--ink-soft); }
html.theme-dark .footer a { color: var(--ink-soft); }
html.theme-dark .footer h4, html.theme-dark .footer .footer-brand { color: var(--ink); }

html.theme-dark .mobile-bottom-nav { background: rgba(21,19,22,0.95); border-top-color: var(--line); }
html.theme-dark .mb-nav-btn { color: var(--ink-mute); }
html.theme-dark .mb-nav-btn.active { color: var(--rose-deep); }

html.theme-dark .btn-primary { background: var(--rose-deep); color: #fff; }
html.theme-dark .btn-primary:hover { background: var(--ink); color: var(--paper); }

html.theme-dark input.f-input, html.theme-dark textarea.f-input, html.theme-dark select.f-input {
  background: var(--nude); border-color: var(--line); color: var(--ink);
}
html.theme-dark input.f-input::placeholder, html.theme-dark textarea.f-input::placeholder { color: var(--ink-mute); }

html.theme-dark .announce-bar { background: var(--rose-deep); color: #fff; }
html.theme-dark .toast { background: var(--white); color: var(--ink); box-shadow: var(--shadow-md); }

html.theme-dark .search-dropdown { background: var(--white); border-color: var(--line); }
html.theme-dark .search-result { border-bottom-color: var(--line-soft); }
html.theme-dark .search-result-name { color: var(--ink); }
html.theme-dark .search-result-sub { color: var(--ink-mute); }
html.theme-dark .search-result-price { color: var(--rose-deep); }

html.theme-dark .floating-cart { background: var(--rose-deep); color: #fff; }
html.theme-dark .floating-cart-label { background: var(--white); color: var(--ink); border-color: var(--line); }

html.theme-dark .chat-float .chat-bubble { background: var(--rose-deep); }
html.theme-dark .chat-greeting { background: var(--white); color: var(--ink); box-shadow: var(--shadow-md); }

/* Dark mode for pages.css components */
html.theme-dark .page-hero { background: linear-gradient(135deg, var(--nude), var(--blush)); }
html.theme-dark .page-hero h1 { color: var(--ink); }
html.theme-dark .breadcrumb a { color: var(--ink-soft); }
html.theme-dark .filter-panel { background: var(--white); border-color: var(--line); }
html.theme-dark .filter-panel select { background: var(--nude); color: var(--ink); border-color: var(--line); }
html.theme-dark .shop-grid { color: var(--ink); }
html.theme-dark .cart-summary { background: var(--white); border-color: var(--line); }
html.theme-dark .cart-row { border-bottom-color: var(--line); }
html.theme-dark .cart-row .product-title { color: var(--ink); }
html.theme-dark .summary-total { color: var(--ink); }
html.theme-dark .checkout-form { background: var(--white); border-color: var(--line); }
html.theme-dark .ship-option, html.theme-dark .pay-method { background: var(--nude); border-color: var(--line); }
html.theme-dark .ship-option.active, html.theme-dark .pay-method.active { border-color: var(--rose-deep); background: var(--blush); }
html.theme-dark .account-panel { background: var(--white); border-color: var(--line); }
html.theme-dark .account-nav button { color: var(--ink-soft); }
html.theme-dark .account-nav button.active { color: var(--ink); border-color: var(--rose-deep); }
html.theme-dark .toggle-switch input:checked + .toggle-track { background: var(--rose-deep); }
html.theme-dark .faq-answer { color: var(--ink-soft); }

/* Dark mode for extras.css components */
html.theme-dark .product-detail-info h1 { color: var(--ink); }
html.theme-dark .product-detail-price { color: var(--ink); }
html.theme-dark .product-detail-desc { color: var(--ink-soft); }
html.theme-dark .review-card { background: var(--white); border-color: var(--line); }
html.theme-dark .review-card .review-name { color: var(--ink); }
html.theme-dark .review-form { background: var(--white); border-color: var(--line); }
html.theme-dark .tab-btn { color: var(--ink-soft); }
html.theme-dark .tab-btn.active { color: var(--ink); border-color: var(--rose-deep); }
html.theme-dark .tab-panel { color: var(--ink-soft); }
html.theme-dark .comparison-slider { background: var(--nude); }

/* Theme toggle button styling */
#themeToggle { cursor: pointer; transition: 0.2s; }
#themeToggle:hover { transform: rotate(15deg); }

/* Additional dark mode coverage */
html.theme-dark .product-tag { background: var(--rose-deep); color: #fff; }
html.theme-dark .product-tag.sale { background: #c0392b; }
html.theme-dark .product-card s { color: var(--ink-mute); }

html.theme-dark .hero-slider { background: var(--nude); }
html.theme-dark .hero-dot { background: rgba(255,255,255,0.2); }
html.theme-dark .hero-dot.active { background: var(--rose-deep); }
html.theme-dark .hero-prev, html.theme-dark .hero-next { background: rgba(255,255,255,0.06); color: var(--ink); }
html.theme-dark .hero-prev:hover, html.theme-dark .hero-next:hover { background: rgba(255,255,255,0.12); }

html.theme-dark .promo-banner { background: var(--blush); color: var(--ink); }
html.theme-dark .promo-banner h2, html.theme-dark .promo-banner h3 { color: var(--ink); }

html.theme-dark .collections-grid .collection-card { background: var(--white); border-color: var(--line); }
html.theme-dark .collection-card h3 { color: var(--ink); }
html.theme-dark .collection-card .collection-overlay { background: rgba(21,19,22,0.4); }

html.theme-dark .brands-section { background: var(--nude); }
html.theme-dark .brands-track .brand-logo { filter: brightness(0) invert(0.7); }

html.theme-dark .feature-icon { background: var(--blush); color: var(--rose-deep); }

html.theme-dark .newsletter { background: var(--blush); }
html.theme-dark .newsletter h2, html.theme-dark .newsletter h3 { color: var(--ink); }
html.theme-dark .newsletter p { color: var(--ink-soft); }
html.theme-dark .newsletter input { background: var(--white); color: var(--ink); border-color: var(--line); }

html.theme-dark .checkout-success { background: var(--white); border-color: var(--line); }
html.theme-dark .checkout-success h1, html.theme-dark .checkout-success h2 { color: var(--ink); }
html.theme-dark .checkout-success p { color: var(--ink-soft); }

html.theme-dark .order-status-pill { background: var(--nude); color: var(--ink-soft); }
html.theme-dark .order-status-pill.ok { background: rgba(16,185,129,0.12); color: #10b981; }
html.theme-dark .order-card { background: var(--white); border-color: var(--line); }
html.theme-dark .order-card h4 { color: var(--ink); }
html.theme-dark .order-item-name { color: var(--ink); }
html.theme-dark .order-item-price { color: var(--ink-soft); }

html.theme-dark .wishlist-page .product-card { background: var(--white); }
html.theme-dark .cart-empty { color: var(--ink-soft); }
html.theme-dark .cart-empty h2 { color: var(--ink); }

html.theme-dark .pagination a, html.theme-dark .pagination span { background: var(--white); color: var(--ink-soft); border-color: var(--line); }
html.theme-dark .pagination .active a { background: var(--rose-deep); color: #fff; }

html.theme-dark .preloader { background: var(--paper); }
html.theme-dark .preloader-brand { color: var(--ink); }
html.theme-dark .preloader-mark { color: var(--rose-deep); }
html.theme-dark .preloader-bar i { background: var(--rose-deep); }

html.theme-dark .cookie-banner { background: var(--white); color: var(--ink); border-color: var(--line); }

html.theme-dark ::-webkit-scrollbar { width: 8px; }
html.theme-dark ::-webkit-scrollbar-track { background: var(--paper); }
html.theme-dark ::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
html.theme-dark ::-webkit-scrollbar-thumb:hover { background: var(--ink-mute); }