/* ============================================================
   LEPS — "Liquid Gold" Design System
   Modern luxury jewelry e-commerce
   ============================================================ */

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

:root {
  --black: #0D0D0D;
  --white: #FFFFFF;
  --bg: #FAF8F5;
  --bg-warm: #F5F0EB;
  --charcoal: #1A1A1A;
  --gray: #7A7A72;
  --gray-light: #E8E4DF;
  --gray-lighter: #F2EEEA;
  --gold: #C4A265;
  --gold-light: #D4B77A;
  --gold-dark: #A68B4B;
  --gold-glow: rgba(196, 162, 101, 0.15);
  --cream: #FAF8F5;
  --shadow-sm: 0 1px 3px rgba(13,13,13,0.04);
  --shadow-md: 0 4px 16px rgba(13,13,13,0.06);
  --shadow-lg: 0 8px 32px rgba(13,13,13,0.08);
  --shadow-gold: 0 8px 32px rgba(196, 162, 101, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ==================== TYPOGRAPHY ==================== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 500;
  line-height: 1.4;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: clamp(0.65rem, 0.72vw, 0.72rem);
  color: var(--gold);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 480px;
  margin: -36px auto 56px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  line-height: 1.75;
  font-weight: 400;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border: 1.5px solid var(--charcoal);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.68rem;
  transition: all var(--transition);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-light);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 18px 48px; font-size: 0.72rem; min-height: 56px; }
.btn-sm { padding: 10px 22px; font-size: 0.62rem; min-height: 40px; }

.btn-text {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  min-height: auto;
  border-radius: 0;
  position: relative;
}
.btn-text::after {
  content: ' →';
  transition: transform var(--transition);
  display: inline-block;
}
.btn-text:hover::after { transform: translateX(4px); }
.btn-text:hover { color: var(--gold); }

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.announcement-bar a { text-decoration: underline; font-weight: 600; text-underline-offset: 2px; }
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.12), transparent);
  animation: shimmer 4s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 0;
}
.header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.header.header-hidden { transform: translateY(-100%); }
.has-announcement .header { top: 38px; }
.has-announcement .header.scrolled { top: 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  transition: var(--transition);
  text-transform: lowercase;
}
.logo span { color: var(--gold); font-weight: 800; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  position: relative;
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.cart-btn:hover { color: var(--gold-dark); }
.cart-btn svg { transition: var(--transition); }
.cart-btn:hover svg { stroke: var(--gold-dark); }

.cart-count {
  position: absolute;
  top: 0;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.58rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  display: block;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient orb */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
}

.hero h1 {
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: -0.04em;
}
.hero h1 .accent {
  color: var(--gold-dark);
  font-weight: 300;
}
.hero p {
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: var(--gray);
  margin-bottom: 44px;
  max-width: 400px;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-circle {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

/* ==================== HERO FULL-WIDTH ==================== */
.hero-fullwidth {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
}
.has-announcement .hero-fullwidth { margin-top: 0; }
.hero-fullwidth-img {
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-fullwidth-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}
.hero-fullwidth-content {
  text-align: center;
  color: var(--white);
  max-width: 600px;
}
.hero-fullwidth-content h1 { color: var(--white); margin-bottom: 16px; font-weight: 300; }
.hero-fullwidth-content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 0.9rem; }

/* ==================== SECTIONS ==================== */
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 128px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark .section-title { color: var(--gold-light); }
.section-dark .section-title::after { background: var(--gold-light); }

/* ==================== CATEGORY SECTIONS ==================== */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 0;
}
.category-header h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 300; letter-spacing: -0.03em; }
.category-header .btn-text { margin-bottom: 4px; }

/* ==================== PRODUCT CARDS ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: none;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.product-card-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background-color: var(--gray-lighter);
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Hover image swap */
.product-card-img .img-primary,
.product-card-img .img-hover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card-img .img-hover { opacity: 0; transform: scale(1.05); }
.product-card:hover .product-card-img .img-primary { opacity: 0; transform: scale(1.05); }
.product-card:hover .product-card-img .img-hover { opacity: 1; transform: scale(1); }

/* Fallback for single-image cards */
.product-card-img[style*="background"] .img-primary,
.product-card-img[style*="background"] .img-hover { display: none; }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 2;
  text-transform: uppercase;
}
.product-badge.sale {
  left: auto;
  right: 14px;
  background: var(--gold-dark);
}

.product-card-body {
  padding: 18px 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card-name {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-card-desc {
  color: var(--gray);
  font-size: 0.82rem;
  flex: 1;
  margin-bottom: 12px;
  display: none;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-price { display: flex; align-items: center; gap: 8px; }
.current-price { font-weight: 600; font-size: clamp(0.92rem, 1.05vw, 1.05rem); }
.old-price { text-decoration: line-through; color: var(--gray); font-size: 0.78rem; }
.product-card-rating { color: var(--gold); font-size: 0.72rem; }
.rating-count { color: var(--gray); font-size: 0.62rem; margin-left: 2px; }

.product-card-action { padding: 4px 16px 16px; }
.btn-add-to-cart {
  width: 100%;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}

/* ==================== MARQUEE ==================== */
.marquee-section { padding: 24px 0; background: var(--charcoal); overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 20s linear infinite; width: max-content; }
.marquee-item { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.4); white-space: nowrap; display: flex; align-items: center; gap: 12px; }
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==================== TRUST BAR ==================== */
.trust-bar { padding: 48px 0; background: var(--white); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.trust-bar-title { text-align: center; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray); margin-bottom: 28px; font-weight: 500; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; opacity: 0.35; }
.trust-logos span { font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; color: var(--charcoal); white-space: nowrap; }

/* ==================== BENEFITS ==================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
  border: 1px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-glow);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  color: var(--gold-dark);
}
.benefit-icon svg { stroke: var(--gold-dark); }

.benefit-card h3 { margin-bottom: 6px; font-size: 0.92rem; font-weight: 600; }
.benefit-card p { color: var(--gray); font-size: 0.82rem; line-height: 1.65; }

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-glow);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.88rem; letter-spacing: 3px; }
.testimonial-text { font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; color: var(--charcoal); font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.75rem;
}
.testimonial-name { font-weight: 600; font-size: 0.82rem; }
.testimonial-product { font-size: 0.7rem; color: var(--gold-dark); font-weight: 500; }

/* Single testimonial */
.testimonial-single { text-align: center; max-width: 680px; margin: 0 auto; }
.testimonial-single .testimonial-stars { font-size: 1.1rem; letter-spacing: 4px; }
.testimonial-single .testimonial-text {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 300;
  line-height: 1.65;
  font-style: italic;
  letter-spacing: -0.01em;
}
.testimonial-single .testimonial-author { justify-content: center; }

/* ==================== VALUES GRID ==================== */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-light);
}
.value-item {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
}
.value-item:last-child { border-right: none; }
.value-item h3 {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gold-dark);
}
.value-item p { color: var(--gray); font-size: 0.82rem; line-height: 1.75; max-width: 280px; margin: 0 auto; }

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.3);
}
.step-card h3 { margin-bottom: 10px; font-weight: 600; }
.step-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
  background: var(--charcoal);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.08), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.newsletter-section h2 { font-weight: 300; margin-bottom: 10px; color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 36px; }

.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.78rem;
  outline: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter-form .btn {
  white-space: nowrap;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.newsletter-form .btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A2520 100%);
  padding: 96px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.1), transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 14px; color: var(--white); font-weight: 300; }
.cta-banner p { opacity: 0.5; margin-bottom: 36px; font-size: 0.95rem; }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  color: #F1F1F1;
  padding: 88px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-about .logo { color: #F1F1F1; margin-bottom: 18px; display: inline-block; }
.footer-about .logo span { color: var(--gold); }
.footer-about p { color: rgba(255,255,255,0.35); font-size: 0.78rem; line-height: 1.85; }

.footer h4 {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 700;
}
.footer ul li { margin-bottom: 11px; }
.footer ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  transition: var(--transition);
  font-weight: 400;
}
.footer ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-dark); }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); }
.footer-social a:hover svg { stroke: var(--white); }

/* Footer payment icons */
.payment-icons { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.payment-icon {
  width: 46px;
  height: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ==================== CART DRAWER ==================== */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  background: var(--bg);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
}
#cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px;
  border-bottom: 1px solid var(--gray-light);
}
.cart-drawer-header h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 1;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
}
.cart-close:hover { background: var(--gray-lighter); }

#cart-items { flex: 1; overflow-y: auto; padding: 16px 28px; }

#cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray);
  text-align: center;
  gap: 18px;
  padding: 28px;
}
#cart-empty svg { opacity: 0.15; }
#cart-empty p { font-size: 0.82rem; letter-spacing: 0.04em; }

.cart-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
}
.cart-item-img { width: 68px; height: 68px; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.88rem; margin-bottom: 3px; font-weight: 500; }
.cart-item-size { font-size: 0.72rem; color: var(--gray); margin-bottom: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }

.qty-btn {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gray-light);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-remove { background: none; border: none; font-size: 1.2rem; color: var(--gray); transition: var(--transition); }
.cart-item-remove:hover { color: var(--charcoal); }
.cart-item-price { font-weight: 600; font-size: 0.88rem; }

#cart-footer { padding: 28px; border-top: 1px solid var(--gray-light); }
#cart-total { margin-bottom: 18px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.82rem; color: var(--gray); }
.cart-summary-total {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.05rem;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  margin-top: 8px;
}

.cart-free-shipping {
  background: var(--gold-glow);
  color: var(--gold-dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  text-align: center;
  margin: 10px 0;
  font-weight: 500;
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==================== PRODUCT DETAIL ==================== */
.product-hero { padding: 130px 0 48px; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.product-main-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--gray-lighter);
  box-shadow: var(--shadow-md);
}

.product-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.product-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.5;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  padding: 0;
}
.product-thumb.active, .product-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

.breadcrumb { font-size: 0.72rem; color: var(--gray); margin-bottom: 20px; letter-spacing: 0.03em; }
.breadcrumb a:hover { color: var(--gold-dark); }

.product-category-label {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.product-info h1 { margin-bottom: 18px; font-weight: 300; }
.product-rating-full {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.82rem;
}
.product-rating-full .stars { color: var(--gold); font-size: 0.95rem; }

.product-price-full { margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.product-price-full .current-price { font-size: 1.8rem; font-weight: 300; letter-spacing: -0.02em; }
.product-price-full .old-price { font-size: 1.05rem; }

.product-desc-full { color: var(--gray); line-height: 1.85; margin-bottom: 28px; font-size: 0.92rem; }
.product-meta { display: flex; gap: 28px; margin-bottom: 32px; font-size: 0.82rem; color: var(--gray); }

.product-actions { display: flex; gap: 14px; margin-bottom: 32px; }
.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--gray-light);
  border-radius: 100px;
  padding: 4px 12px;
}
.qty-selector input { width: 40px; text-align: center; border: none; background: none; font-weight: 600; }

.product-benefits-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--gray);
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}
.product-benefits-mini div { display: flex; align-items: center; gap: 10px; }
.product-benefits-mini svg { color: var(--gold-dark); stroke: var(--gold-dark); }

/* Tabs */
.product-tabs-section { padding: 48px 0 96px; }
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 36px;
}
.tab {
  padding: 18px 32px;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--gray);
  position: relative;
  transition: var(--transition);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.tab.active { color: var(--charcoal); }
.tab.active::after { transform: scaleX(1); }
.tab:hover { color: var(--charcoal); }

.tab-content { display: none; line-height: 1.85; font-size: 0.92rem; }
.tab-content.active { display: block; }
.tab-content h3 { margin-bottom: 18px; font-weight: 600; font-size: 1.05rem; }
.tab-content ul { margin: 16px 0; padding-left: 20px; list-style: disc; }
.tab-content li { margin-bottom: 10px; }

.ingredients-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ingredient-badge {
  padding: 7px 16px;
  background: var(--gold-glow);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.review-item { padding: 24px 0; border-bottom: 1px solid var(--gray-light); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-header .stars { color: var(--gold); font-size: 0.88rem; }
.review-date { color: var(--gray); font-size: 0.72rem; }

/* ==================== SHOP PAGE ==================== */
.shop-hero { padding: 140px 0 48px; text-align: center; }
.shop-hero h1 { font-weight: 300; }

.shop-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 11px 28px;
  border: 1.5px solid var(--gray-light);
  border-radius: 100px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.65rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ==================== CHECKOUT ==================== */
.checkout-section { padding: 130px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.checkout-form h2 { margin-bottom: 36px; font-weight: 300; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  background: var(--white);
  font-size: 0.92rem;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section { margin-bottom: 44px; }
.form-section h3 {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.checkout-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 100px;
  border: 1px solid var(--gray-light);
}
.checkout-sidebar h3 { margin-bottom: 22px; font-weight: 600; }
.checkout-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.checkout-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); flex-shrink: 0; }
.checkout-item-info h4 { font-size: 0.88rem; font-weight: 500; }
.checkout-item-info p { font-size: 0.78rem; color: var(--gray); }
.checkout-item-price { margin-left: auto; font-weight: 600; font-size: 0.88rem; }

.payment-methods { display: flex; gap: 10px; margin-bottom: 22px; }
.payment-method {
  flex: 1;
  padding: 15px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  font-size: 0.88rem;
}
.payment-method:hover, .payment-method.active { border-color: var(--gold); }
.payment-method input { display: none; }

.order-success { text-align: center; padding: 80px 0; }
.success-icon { margin-bottom: 28px; }
.order-number { color: var(--gray); margin: 18px 0 36px; font-size: 1rem; }

.empty-cart-checkout { text-align: center; padding: 80px 0; }
.empty-cart-checkout h2 { margin-bottom: 18px; font-weight: 300; }
.empty-cart-checkout p { color: var(--gray); margin-bottom: 36px; }

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}
@keyframes spinner { to { transform: rotate(360deg); } }

/* ==================== ABOUT PAGE ==================== */
.about-hero { padding: 150px 0 64px; text-align: center; }
.about-hero h1 { font-weight: 300; }
.about-hero p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.8;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 44px 28px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--gold-glow);
}
.value-card h3 { margin-bottom: 12px; font-weight: 600; }
.value-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; }

.timeline { max-width: 600px; margin: 0 auto; }
.timeline-item { display: flex; gap: 28px; margin-bottom: 44px; }
.timeline-year {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-dark);
  min-width: 60px;
  letter-spacing: -0.01em;
}
.timeline-content h3 { margin-bottom: 6px; font-weight: 600; }
.timeline-content p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* ==================== CONTACT PAGE ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.contact-icon svg { stroke: var(--gold-dark); }
.contact-card h4 { margin-bottom: 4px; font-weight: 600; font-size: 0.92rem; }
.contact-card p { color: var(--gray); font-size: 0.88rem; }

/* ==================== FAQ ==================== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 22px; color: var(--gray); line-height: 1.8; font-size: 0.92rem; }

/* ==================== RATING HIGHLIGHT ==================== */
.rating-highlight { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 0; }
.rating-highlight .stars { color: var(--gold); font-size: 1.05rem; }
.rating-highlight .rating-text { font-weight: 600; font-size: 0.88rem; }
.rating-highlight .rating-sub { color: var(--gray); font-size: 0.78rem; }

/* ==================== ANIMATIONS ==================== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in:nth-child(2) { transition-delay: 0.08s; }
.animate-in:nth-child(3) { transition-delay: 0.16s; }
.animate-in:nth-child(4) { transition-delay: 0.24s; }
.animate-in:nth-child(5) { transition-delay: 0.32s; }

.stagger-child { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger-child.visible { opacity: 1; transform: translateY(0); }
.reveal-text { clip-path: inset(0 100% 0 0); transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-text.revealed { clip-path: inset(0 0% 0 0); }

/* ==================== PRODUCT CARD HOVER ==================== */
.product-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
}

/* ==================== GUARANTEE STRIP ==================== */
.guarantee-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
  flex-wrap: wrap;
  font-size: 0.68rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.guarantee-strip span { display: flex; align-items: center; gap: 10px; }
.guarantee-strip svg { color: var(--gold); stroke: var(--gold); flex-shrink: 0; }

/* ==================== STICKY ADD TO CART (mobile) ==================== */
.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 14px 24px;
  z-index: 1500;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  border-top: 1px solid var(--gray-light);
}
.sticky-atc-inner { display: flex; align-items: center; gap: 16px; max-width: 600px; margin: 0 auto; }
.sticky-atc-info { flex: 1; }
.sticky-atc-info h4 { font-size: 0.88rem; margin-bottom: 2px; font-weight: 500; }
.sticky-atc-info .price { font-weight: 600; }
.sticky-atc .btn { white-space: nowrap; }

/* ==================== FREE SHIPPING PROGRESS BAR ==================== */
.shipping-progress { background: var(--gray-lighter); height: 4px; border-radius: 2px; margin: 8px 0 4px; overflow: hidden; }
.shipping-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transition: width 0.4s ease; border-radius: 2px; }

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 22px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.06);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-content p { font-size: 0.82rem; color: var(--gray); flex: 1; min-width: 280px; line-height: 1.65; }
.cookie-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ==================== FOCUS & ACCESSIBILITY ==================== */
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  resize: vertical;
}
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.filter-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.cart-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
::selection { background: var(--gold-glow); color: var(--charcoal); }

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1500;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress { display: none; }

/* ==================== PAGE LOAD ==================== */
body { opacity: 0; transition: opacity 0.5s ease; }
body.loaded { opacity: 1; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { max-width: 560px; text-align: center; margin: 0 auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-product-circle { max-width: 400px; }
  .product-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-main-img { max-height: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-row { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .value-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn-lg { width: 100%; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; letter-spacing: 0.08em; }
  .burger { display: flex; z-index: 1001; }
  #cart-drawer { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .tabs { overflow-x: auto; }
  .tab { white-space: nowrap; padding: 14px 22px; }
  .category-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-fullwidth-img { height: 60vh; min-height: 400px; }
  .guarantee-strip { gap: 24px; }
  .trust-logos { gap: 32px; }
  .header-inner { padding: 18px 20px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-grid-3, .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { padding: 28px 18px; }
  .hero { min-height: auto; padding: 120px 0 56px; }
  .hero-product-circle { max-width: 300px; border-radius: var(--radius); }
  .section { padding: 72px 0; }
  .section-lg { padding: 88px 0; }
  .about-hero { padding: 120px 0 44px; }
  .shop-hero { padding: 120px 0 28px; }
  .product-hero { padding: 110px 0 36px; }
  .checkout-section { padding: 110px 0 64px; }
  .payment-methods { flex-direction: column; }
  .guarantee-strip { gap: 18px; flex-direction: column; align-items: center; }
  .announcement-bar { font-size: 0.55rem; padding: 9px 12px; }
  .sticky-atc.visible { display: block; }
  .sticky-atc.visible ~ .cookie-banner { bottom: 68px; }
  .back-to-top { bottom: 84px; }
  .cart-item-remove { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .qty-btn { min-width: 44px; min-height: 44px; }
  .filter-btn { padding: 10px 18px; }
  .faq-question { padding: 18px 0; min-height: 48px; }
  .product-card { border-radius: var(--radius-sm); }
  .product-card-img { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .product-card-body { padding: 14px 12px 0; }
  .product-card-action { padding: 4px 12px 14px; }
  .testimonial-card { padding: 28px; }
  .hero-tag { font-size: 0.58rem; padding: 5px 14px; }
}

/* ==================== ACCESSIBILITY & POPRAWKI 11/10 ==================== */

/* Skip to content link */
.skip-link { position: absolute; top: -48px; left: 8px; background: #1A1A1A; color: #fff; padding: 10px 18px; border-radius: 8px; z-index: 10000; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: top 0.2s; }
.skip-link:focus { top: 8px; outline: 2px solid var(--gold); outline-offset: 2px; }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Focus visible na wszystkich interaktywnych */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--gold, #C5A572); outline-offset: 2px; border-radius: 4px; }
.logo:focus-visible { outline: 2px solid var(--gold, #C5A572); outline-offset: 4px; }

/* Form validation */
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: #e74c3c !important; box-shadow: 0 0 0 3px rgba(231,76,60,0.12) !important; }
input:invalid:not(:placeholder-shown), textarea:invalid:not(:placeholder-shown) { border-color: #e74c3c; }
.field-error { color: #c0392b; font-size: 0.78rem; margin-top: 6px; display: block; }

/* Toast: error variant */
.toast-error { background: #c0392b !important; color: #fff !important; }
.toast-error svg { color: #fff; }

/* Cart drawer aria-hidden */
#cart-drawer[aria-hidden="true"] { /* zachowana istniejaca logika via .open */ }

/* Size selector */
.product-size-selector { border: none; padding: 0; margin: 18px 0 22px; }
.product-size-selector legend { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray, #6b6b6b); margin-bottom: 10px; padding: 0; font-weight: 600; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-option { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1.5px solid #e5e5e5; border-radius: 100px; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; font-weight: 500; background: #fff; min-height: 44px; }
.size-option:hover { border-color: #1A1A1A; }
.size-option.active { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }
.size-option input { position: absolute; opacity: 0; pointer-events: none; }
.size-option:focus-within { outline: 2px solid var(--gold, #C5A572); outline-offset: 3px; }

/* Product benefits list */
.product-benefits-mini { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 8px; }
.product-benefits-mini li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray, #6b6b6b); }

/* Lazy background placeholder - uzywa background-color, nie opacity (zeby nie kolidowac z hover swap) */
.lazy-bg { background-color: #f3f0ea; }
.lazy-bg.loaded { background-color: transparent; }

/* Cookie banner ulepszony */
.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid #e5e5e5; border-radius: 16px; padding: 20px 22px; box-shadow: 0 20px 60px rgba(0,0,0,0.18); z-index: 9998; opacity: 0; transform: translateY(20px); transition: opacity 0.4s, transform 0.4s; }
.cookie-banner.visible { opacity: 1; transform: translateY(0); }
.cookie-banner p { margin: 0 0 14px; font-size: 0.82rem; line-height: 1.55; color: #333; }
.cookie-banner p strong { color: #1A1A1A; font-size: 0.92rem; display: inline-block; margin-bottom: 4px; }
.cookie-banner a { color: #1A1A1A; text-decoration: underline; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-buttons .btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.cookie-buttons .btn-text { background: transparent; color: #6b6b6b; border: none; text-decoration: underline; cursor: pointer; }
.cookie-buttons .btn-text:hover { color: #1A1A1A; }

/* RODO consent checkbox */
.consent-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.78rem; line-height: 1.5; color: var(--gray, #6b6b6b); cursor: pointer; margin-top: 12px; }
.consent-checkbox input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: #1A1A1A; }
.consent-checkbox a { color: #1A1A1A; text-decoration: underline; }

/* Skeleton loader */
.skeleton { background: linear-gradient(90deg, #f0ece5 25%, #faf8f4 50%, #f0ece5 75%); background-size: 200% 100%; animation: skeleton-shimmer 1.5s infinite; border-radius: 8px; }
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* In-stock indicator */
.in-stock { color: #27ae60; font-weight: 600; }

/* Cart free shipping success */
.cart-free-shipping.success { background: #d4edda; color: #155724; }

/* Cart item removal animation */
.cart-item.removing { animation: slideOutRight 0.28s ease forwards; }
@keyframes slideOutRight { to { opacity: 0; transform: translateX(40px); } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* High contrast support */
@media (prefers-contrast: more) {
  :root { --gray: #4a4a4a; }
  .btn-primary { border: 2px solid #000; }
}

/* Print */
@media print {
  .header, .footer, .cart-drawer, .announcement-bar, .back-to-top, .cookie-banner, .sticky-atc, .scroll-progress, #cart-overlay { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ==================== SHOP FILTERS + SORT + BUNDLE ==================== */
.shop-sort { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin: -6px 0 22px; font-size: 0.82rem; color: var(--gray, #6b6b6b); }
.shop-sort select { padding: 8px 14px; border-radius: 100px; border: 1.5px solid #e5e5e5; background: #fff; font-family: inherit; font-size: 0.82rem; cursor: pointer; }
.shop-sort select:focus-visible { outline: 2px solid var(--gold, #C5A572); outline-offset: 2px; }

.cart-summary-row.bundle-discount { color: #27ae60; font-weight: 600; }
.cart-summary-row.bundle-discount span:last-child { font-variant-numeric: tabular-nums; }

/* ==================== PERFUME-SPECIFIC STYLES ==================== */

/* Serif accent (hero h1 accent) */
.serif-accent {
  font-family: 'Cormorant Garamond', 'Plus Jakarta Sans', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Hero — perfume variant */
.hero-perfume .hero-product-circle {
  border-radius: 16px;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .hero-perfume .hero-product-circle { aspect-ratio: 1/1; }
}

/* Mood grid (index editorial) */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .mood-grid { grid-template-columns: 1fr; } }

.mood-card {
  position: relative;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mood-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mood-card .mood-link { display: flex; flex-direction: column; color: inherit; }
.mood-card .mood-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mood-card:hover .mood-img { transform: scale(1.04); }
.mood-card .mood-content { padding: 24px 28px 32px; }
.mood-card .mood-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.mood-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.mood-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.mood-card .btn-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  font-weight: 600;
}

/* Notes pyramid (product detail) */
.notes-pyramid {
  margin: 24px 0;
  padding: 22px 24px;
  background: var(--bg-warm, #F5F0EB);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.notes-pyramid .note-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 10px 0;
  align-items: start;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.notes-pyramid .note-row:last-child { border-bottom: none; }
.notes-pyramid .note-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  padding-top: 2px;
}
.notes-pyramid .note-list {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 500;
}

/* Volume selector */
.volume-options .size-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 0.9rem;
}
.volume-options .size-option .vol-label { font-weight: 600; }
.volume-options .size-option .vol-price {
  color: var(--gray);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.volume-options .size-option.active .vol-price {
  color: var(--charcoal);
  font-weight: 600;
}

/* Hero buttons — secondary ghost variant */
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 14px 26px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-ghost.btn-lg { padding: 17px 36px; font-size: 0.82rem; }

/* CTA tag (above heading on discovery banner) */
.cta-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light, #D4B77A);
  margin-bottom: 14px;
  font-weight: 600;
}

/* Enhanced current-price (for dynamic volume switching) */
#current-price, #atc-price {
  transition: color 0.2s ease;
}

/* products-grid-3 for shop */
.products-grid.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .products-grid.products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px) { .products-grid.products-grid-3 { grid-template-columns: 1fr; } }

/* Hero — two buttons layout */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Product badges — nicer for perfumes */
.product-badge {
  background: var(--charcoal);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

/* Product category label on product detail (slightly larger + italic serif feel) */
.product-category-label {
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* Hero p body adjusted */
.hero-perfume p { max-width: 480px; }

/* Footer — slightly darker for perfume brand */
.footer { background: #0D0D0D; }

/* Polish announcement bar */
.announcement-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Breadcrumb accent */
.breadcrumb a:hover { color: var(--gold); }

/* Product h1 — italic serif touch */
.product-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin: 10px 0 14px;
}

/* Ingredient/spec badges */
.ingredients-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ingredient-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--bg-warm, #F5F0EB);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}


/* ============================================================
   LEPS v2 — MFK EDITORIAL LAYER
   Overrides for franciskurkdjian.com aesthetic
   ============================================================ */

:root {
  --ink: #1A1612;
  --ink-soft: #2A2520;
  --bg-cream: #F5F0E8;
  --bg-paper: #FAF6EF;
  --bronze: #9A7B47;
  --bronze-soft: #C4A265;
  --hairline: rgba(26,22,18,0.12);
}

body.mfk,
body.has-announcement.mfk,
.mfk body {
  background: var(--bg-cream);
  color: var(--ink);
}

/* Typography: Cormorant Garamond for display (Didot-like), sans for body */
.mfk h1, .mfk h2, .mfk h3,
.mfk-display {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* All-caps tracked labels (MFK signature) */
.mfk-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

/* Header — centered logo, split nav */
body.mfk .header {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: none;
}
body.mfk .header.scrolled {
  background: var(--bg-cream);
  box-shadow: none;
  border-bottom: 1px solid var(--hairline);
}
body.mfk .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 32px;
  max-width: none;
}
body.mfk .logo {
  grid-column: 2;
  justify-self: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding-left: 0.32em; /* compensate letter-spacing */
}
body.mfk .logo span { display: none; }
body.mfk .nav-links {
  grid-column: 1;
  justify-self: start;
  gap: 36px;
  display: flex;
}
body.mfk .nav-links a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
body.mfk .nav-links a.active,
body.mfk .nav-links a:hover {
  border-bottom-color: var(--ink);
}
body.mfk .header-actions {
  grid-column: 3;
  justify-self: end;
}

/* Announcement bar — quieter, refined */
body.mfk .announcement-bar {
  background: var(--ink);
  color: var(--bg-cream);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: 400;
}
body.mfk .announcement-bar a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* HERO — editorial, full-bleed */
body.mfk .hero,
body.mfk .hero-perfume {
  background: var(--bg-cream);
  padding: 0;
  min-height: auto;
  overflow: hidden;
}
body.mfk .hero .container,
body.mfk .hero-perfume .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  padding: 0;
  max-width: none;
  align-items: center;
  min-height: calc(100vh - 120px);
}
body.mfk .hero-content {
  padding: 80px 8vw;
  max-width: 640px;
}
body.mfk .hero-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  padding: 0;
  margin-bottom: 28px;
  display: inline-block;
  font-weight: 500;
}
body.mfk .hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
body.mfk .hero h1 .accent,
body.mfk .hero h1 .serif-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-top: 0.1em;
}
body.mfk .hero p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}
body.mfk .hero-visual {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
body.mfk .hero-product-circle {
  border-radius: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 90vh;
  box-shadow: none;
}
body.mfk .hero-buttons {
  gap: 16px;
  flex-wrap: wrap;
}

/* MFK buttons — minimal outline, no rounded pills */
body.mfk .btn {
  border-radius: 0;
  padding: 16px 36px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
body.mfk .btn-primary {
  background: var(--ink);
  color: var(--bg-cream);
  border: 1px solid var(--ink);
}
body.mfk .btn-primary:hover {
  background: transparent;
  color: var(--ink);
}
body.mfk .btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
body.mfk .btn-secondary:hover {
  background: var(--ink);
  color: var(--bg-cream);
}
body.mfk .btn-ghost,
body.mfk .btn-white {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
}
body.mfk .btn-ghost:hover,
body.mfk .btn-white:hover {
  background: var(--ink);
  color: var(--bg-cream);
}
body.mfk .btn-lg { padding: 18px 44px; font-size: 0.74rem; }

/* Mobile hamburger visibility */
body.mfk .burger { background: transparent; }
body.mfk .burger span { background: var(--ink); }

/* Cart button */
body.mfk .cart-btn { color: var(--ink); }
body.mfk .cart-count {
  background: var(--ink);
  color: var(--bg-cream);
}

/* Section defaults */
body.mfk .section {
  padding: 120px 0;
  background: var(--bg-cream);
}
body.mfk .section-alt {
  background: var(--bg-paper);
}
body.mfk .section-title {
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}
body.mfk .section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

/* PRODUCT CARDS — MFK minimal */
body.mfk .products-grid {
  gap: 72px 48px;
}
body.mfk .products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  body.mfk .products-grid-3 { grid-template-columns: 1fr; gap: 56px; }
}

body.mfk .mfk-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
body.mfk .mfk-card .product-card-link {
  display: block;
  color: inherit;
  background: transparent;
}
body.mfk .mfk-card-img {
  background: var(--bg);
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  border-radius: 0;
}
body.mfk .mfk-card-img .img-primary,
body.mfk .mfk-card-img .img-hover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s, transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
body.mfk .mfk-card-img .img-hover { opacity: 0; }
body.mfk .mfk-card:hover .img-primary { transform: scale(1.04); }
body.mfk .mfk-card:hover .img-hover { opacity: 1; }

body.mfk .mfk-card-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.mfk .mfk-card-code {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
body.mfk .mfk-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
body.mfk .mfk-card-family {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-top: 2px;
  font-weight: 400;
}
body.mfk .mfk-card-price {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 500;
  margin-top: 12px;
  text-transform: uppercase;
}

/* Hide old card-action button */
body.mfk .mfk-card .product-card-action { display: none; }

/* Mood grid — editorial */
body.mfk .mood-grid { gap: 48px; }
body.mfk .mood-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
body.mfk .mood-card:hover { transform: none; box-shadow: none; }
body.mfk .mood-card .mood-img {
  aspect-ratio: 3/4;
  border-radius: 0;
}
body.mfk .mood-card .mood-content { padding: 24px 0 0; text-align: left; }
body.mfk .mood-card .mood-tag {
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  font-weight: 500;
}
body.mfk .mood-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--ink);
}
body.mfk .mood-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
body.mfk .mood-card .btn-text {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

/* PRODUCT DETAIL — MFK signature bg */
body.mfk .mfk-product-hero {
  background: var(--sig-bg, var(--bg-cream));
  color: var(--sig-ink, var(--ink));
  padding: 60px 0 100px;
  min-height: auto;
}
body.mfk .mfk-product-hero .container {
  max-width: 1240px;
  padding: 0 48px;
}
body.mfk .mfk-product-hero .breadcrumb {
  color: var(--sig-ink);
  opacity: 0.6;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
body.mfk .mfk-product-hero .breadcrumb a { color: inherit; }
body.mfk .mfk-product-hero .product-grid {
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
body.mfk .mfk-product-hero .product-main-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  box-shadow: none;
}
body.mfk .mfk-product-hero .product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
}
body.mfk .mfk-product-hero .product-thumb {
  width: 72px;
  height: 90px;
  border: 1px solid transparent;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s;
  border-radius: 0;
}
body.mfk .mfk-product-hero .product-thumb.active,
body.mfk .mfk-product-hero .product-thumb:hover {
  opacity: 1;
  border-color: var(--sig-ink);
}
body.mfk .mfk-product-hero .product-info {
  padding: 40px 0;
  max-width: 480px;
}
body.mfk .mfk-product-hero .product-category-label {
  color: var(--sig-ink);
  opacity: 0.7;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
body.mfk .mfk-product-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--sig-ink);
  margin: 16px 0 8px;
  line-height: 1.0;
}
body.mfk .mfk-product-hero .product-rating-full {
  color: var(--sig-ink);
  opacity: 0.7;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
body.mfk .mfk-product-hero .product-price-full {
  color: var(--sig-ink);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 32px;
}
body.mfk .mfk-product-hero .product-price-full .current-price { font-weight: 500; }
body.mfk .mfk-product-hero .product-desc-full {
  color: var(--sig-ink);
  opacity: 0.85;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Notes pyramid — MFK minimal */
body.mfk .mfk-product-hero .notes-pyramid {
  background: transparent;
  border-left: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding: 24px 0 0;
  margin: 32px 0;
}
body.mfk .mfk-product-hero .notes-pyramid .note-row {
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 16px 0;
  grid-template-columns: 120px 1fr;
  gap: 24px;
}
body.mfk .mfk-product-hero .notes-pyramid .note-label {
  color: var(--sig-ink);
  opacity: 0.6;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 500;
}
body.mfk .mfk-product-hero .notes-pyramid .note-list {
  color: var(--sig-ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Volume selector — elegant pill row */
body.mfk .mfk-product-hero .product-size-selector { margin: 32px 0 24px; }
body.mfk .mfk-product-hero .product-size-selector legend {
  color: var(--sig-ink);
  opacity: 0.7;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
body.mfk .mfk-product-hero .size-options.volume-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
body.mfk .mfk-product-hero .volume-options .size-option {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.25);
  color: var(--sig-ink);
  border-radius: 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s;
}
body.mfk .mfk-product-hero .volume-options .size-option.active {
  background: var(--sig-ink);
  color: var(--sig-bg);
  border-color: var(--sig-ink);
}
body.mfk .mfk-product-hero .volume-options .size-option input { position: absolute; opacity: 0; }
body.mfk .mfk-product-hero .volume-options .size-option .vol-label { font-weight: 500; letter-spacing: 0.04em; }
body.mfk .mfk-product-hero .volume-options .size-option .vol-price { font-size: 0.85rem; opacity: 0.8; }

body.mfk .mfk-product-hero .product-meta {
  margin: 24px 0;
  color: var(--sig-ink);
  opacity: 0.75;
  font-size: 0.85rem;
  line-height: 1.8;
}

body.mfk .mfk-product-hero .product-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  align-items: stretch;
}
body.mfk .mfk-product-hero .qty-selector {
  border: 1px solid var(--sig-ink);
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
}
body.mfk .mfk-product-hero .qty-btn {
  background: transparent;
  color: var(--sig-ink);
  border: none;
  padding: 0 14px;
  font-size: 1.1rem;
  cursor: pointer;
}
body.mfk .mfk-product-hero #qty-input {
  background: transparent;
  color: var(--sig-ink);
  border: none;
  text-align: center;
  width: 40px;
  padding: 12px 0;
  font-weight: 500;
}
body.mfk .mfk-product-hero #add-to-cart-btn {
  background: var(--sig-ink);
  color: var(--sig-bg);
  border: 1px solid var(--sig-ink);
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 28px;
  cursor: pointer;
}
body.mfk .mfk-product-hero #add-to-cart-btn:hover {
  background: transparent;
  color: var(--sig-ink);
}

body.mfk .mfk-product-hero .product-benefits-mini {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 24px;
}
body.mfk .mfk-product-hero .product-benefits-mini li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--sig-ink);
  opacity: 0.8;
  font-size: 0.85rem;
  line-height: 1.5;
}
body.mfk .mfk-product-hero .product-benefits-mini svg { flex-shrink: 0; opacity: 0.7; }

/* Tabs section — minimal */
body.mfk .product-tabs-section {
  background: var(--bg-cream);
  padding: 80px 0;
}
body.mfk .product-tabs-section .tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 40px;
  overflow-x: auto;
}
body.mfk .product-tabs-section .tab {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 18px 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 500;
}
body.mfk .product-tabs-section .tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

body.mfk .product-tabs-section .tab-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
body.mfk .ingredients-badges { margin-top: 24px; gap: 8px; }
body.mfk .ingredient-badge {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink);
  border-radius: 0;
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
body.mfk .review-item {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
}
body.mfk .review-item .stars { color: var(--bronze); }

/* Shop — editorial hero */
body.mfk .shop-hero {
  background: var(--bg-cream);
  padding: 100px 0 60px;
  text-align: center;
}
body.mfk .shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
body.mfk .shop-hero .breadcrumb {
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

body.mfk .shop-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
  margin: 40px 0;
  flex-wrap: wrap;
}
body.mfk .filter-btn {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 24px;
  cursor: pointer;
  font-weight: 500;
  font-family: var(--font-body);
  position: relative;
}
body.mfk .filter-btn:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 14px;
  width: 1px;
  background: var(--hairline);
  transform: translateY(-50%);
}
body.mfk .filter-btn.active {
  color: var(--ink);
  font-weight: 600;
}
body.mfk .shop-sort select {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink);
  border-radius: 0;
  padding: 10px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* About / Story */
body.mfk .about-hero {
  background: var(--bg-cream);
  padding: 120px 0 80px;
  text-align: center;
}
body.mfk .about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  max-width: 900px;
  margin: 20px auto 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
body.mfk .about-hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
body.mfk .timeline-item {
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}
body.mfk .timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
}
body.mfk .timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
body.mfk .timeline-content p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.95rem;
}

body.mfk .values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  border-top: 1px solid var(--hairline);
  padding-top: 60px;
}
@media (max-width: 900px) { body.mfk .values-row { grid-template-columns: 1fr; gap: 48px; } }
body.mfk .value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--ink);
}
body.mfk .value-item p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Benefits grid — minimal */
body.mfk .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
@media (max-width: 900px) { body.mfk .benefits-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
body.mfk .benefit-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
body.mfk .benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 16px 0 8px;
}
body.mfk .benefit-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
body.mfk .benefit-icon { color: var(--ink); margin: 0 auto; }

/* Testimonials — editorial */
body.mfk .testimonial-single {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px;
}
body.mfk .testimonial-single .testimonial-stars { color: var(--bronze); margin-bottom: 24px; letter-spacing: 0.3em; }
body.mfk .testimonial-single .testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
body.mfk .testimonials-grid { gap: 48px; }
body.mfk .testimonial-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}
body.mfk .testimonial-card .testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
}

/* CTA banner — cream not dark */
body.mfk .cta-banner {
  background: var(--bg-paper);
  color: var(--ink);
  padding: 120px 0;
  text-align: center;
}
body.mfk .cta-banner .cta-tag {
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  font-weight: 500;
}
body.mfk .cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
}
body.mfk .cta-banner p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Newsletter */
body.mfk .newsletter-section {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 100px 0;
  text-align: center;
}
body.mfk .newsletter-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-cream);
  margin-bottom: 16px;
}
body.mfk .newsletter-section p {
  color: rgba(245,240,232,0.7);
  margin-bottom: 32px;
}
body.mfk .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}
body.mfk .newsletter-form .form-row { display: flex; gap: 10px; }
body.mfk .newsletter-form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,240,232,0.3);
  color: var(--bg-cream);
  padding: 14px 0;
  font-size: 0.95rem;
  flex: 1;
  font-family: inherit;
}
body.mfk .newsletter-form input[type="email"]::placeholder { color: rgba(245,240,232,0.5); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; }
body.mfk .newsletter-form input[type="email"]:focus {
  outline: none;
  border-bottom-color: var(--bg-cream);
}
body.mfk .newsletter-form button {
  background: transparent;
  color: var(--bg-cream);
  border: 1px solid var(--bg-cream);
  padding: 14px 32px;
  border-radius: 0;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
body.mfk .newsletter-form button:hover {
  background: var(--bg-cream);
  color: var(--ink);
}
body.mfk .consent-checkbox {
  color: rgba(245,240,232,0.7);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 12px;
}
body.mfk .consent-checkbox a { color: var(--bg-cream); text-decoration: underline; }

/* Footer — minimal MFK */
body.mfk .footer {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 100px 0 40px;
}
body.mfk .footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245,240,232,0.15);
}
@media (max-width: 900px) {
  body.mfk .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
body.mfk .footer-about .logo {
  color: var(--bg-cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}
body.mfk .footer-about p {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 20px 0;
  max-width: 320px;
}
body.mfk .footer h4 {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bg-cream);
  margin-bottom: 20px;
  font-weight: 500;
}
body.mfk .footer ul li { margin-bottom: 12px; }
body.mfk .footer ul a {
  color: rgba(245,240,232,0.7);
  font-size: 0.88rem;
  transition: color 0.3s;
}
body.mfk .footer ul a:hover { color: var(--bg-cream); }
body.mfk .footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(245,240,232,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
body.mfk .footer-social { display: flex; gap: 16px; }
body.mfk .footer-social a {
  color: var(--bg-cream);
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,240,232,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
body.mfk .footer-social a:hover { background: var(--bg-cream); color: var(--ink); }
body.mfk .footer-social a svg { width: 16px; height: 16px; }

body.mfk .payment-icons {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
body.mfk .payment-icon {
  background: rgba(245,240,232,0.08);
  color: rgba(245,240,232,0.7);
  border: 1px solid rgba(245,240,232,0.15);
  padding: 6px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 0;
}

/* Cart drawer refinement */
body.mfk #cart-drawer {
  background: var(--bg-cream);
  color: var(--ink);
  border-left: 1px solid var(--hairline);
}
body.mfk .cart-drawer-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
}
body.mfk .cart-close { color: var(--ink); }
body.mfk .cart-item { border-bottom: 1px solid var(--hairline); }

/* Mobile adjustments */
@media (max-width: 900px) {
  body.mfk .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 16px 20px;
  }
  body.mfk .logo {
    grid-column: 2;
    font-size: 1.3rem;
    letter-spacing: 0.26em;
  }
  body.mfk .nav-links {
    grid-column: 1;
    grid-row: 2;
    display: none;
  }
  body.mfk .header-actions { grid-column: 3; }
  body.mfk .burger { display: inline-flex; }

  body.mfk .hero .container,
  body.mfk .hero-perfume .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  body.mfk .hero-content { padding: 60px 24px; order: 2; }
  body.mfk .hero-visual { min-height: 70vh; order: 1; }
  body.mfk .hero-product-circle { min-height: 70vh; }

  body.mfk .mfk-product-hero .container { padding: 0 20px; }
  body.mfk .mfk-product-hero .product-grid { grid-template-columns: 1fr; gap: 40px; }
  body.mfk .section { padding: 80px 0; }
}
