/*
Theme Name:   Fizzloo
Theme URI:    https://fizzloo.com
Description:  Thème e-commerce premium pour Fizzloo — bombes de bain pour enfants. Standalone, WooCommerce optimisé, 100% responsive, sans dépendance.
Author:       Fizzloo / NASSARA NEXELIUM
Author URI:   https://fizzloo.com
Version:      1.0.0
Requires PHP: 7.4
Requires at least: 6.0
License:      GNU General Public License v2 or later
Text Domain:  fizzloo
Tags:         e-commerce, woocommerce, responsive, custom-colors, custom-logo
*/

/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* =====================================================
   CSS VARIABLES — MODIFIABLE VIA CUSTOMIZER
===================================================== */
:root {
  --fz-coral:      #E8604A;
  --fz-coral-l:    #F5D5CF;
  --fz-sage:       #7A9E7E;
  --fz-sage-l:     #D9EBD9;
  --fz-sky:        #6B9FBF;
  --fz-sky-l:      #D4E8F5;
  --fz-gold:       #C9A84C;
  --fz-ink:        #1C1917;
  --fz-ink60:      rgba(28,25,23,0.6);
  --fz-ink30:      rgba(28,25,23,0.3);
  --fz-ink10:      rgba(28,25,23,0.08);
  --fz-cream:      #FAF7F2;
  --fz-warm:       #FDFCFA;
  --fz-border:     rgba(28,25,23,0.1);
  --fz-font-head:  'Fraunces', Georgia, serif;
  --fz-font-body:  'DM Sans', system-ui, sans-serif;
  --fz-r:          16px;
  --fz-r-lg:       24px;
  --fz-r-xl:       32px;
  --fz-nav-h:      64px;
  --fz-ann-h:      36px;
  --fz-shadow:     0 4px 24px rgba(28,25,23,0.08);
  --fz-shadow-lg:  0 20px 60px rgba(28,25,23,0.12);
}

/* =====================================================
   RESET + BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fz-font-body);
  background: var(--fz-cream);
  color: var(--fz-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--fz-coral); text-decoration: none; transition: color .2s; }
a:hover { color: var(--fz-ink); }
ul, ol { list-style: none; }
button { font-family: var(--fz-font-body); cursor: pointer; }
input, textarea, select { font-family: var(--fz-font-body); }

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fz-font-head);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--fz-ink);
}
h1 { font-size: clamp(32px, 5vw, 64px); }
h2 { font-size: clamp(26px, 4vw, 50px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: clamp(17px, 2vw, 24px); }
p { line-height: 1.75; color: var(--fz-ink60); }
.fz-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fz-ink60);
  margin-bottom: 12px;
}
em { color: var(--fz-coral); font-style: italic; }

/* =====================================================
   LAYOUT
===================================================== */
.fz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.fz-section { padding: 72px 0; }
.fz-section-warm { background: var(--fz-warm); }
.fz-section-ink { background: var(--fz-ink); }
.fz-section-sage { background: var(--fz-sage-l); }

/* =====================================================
   BUTTONS
===================================================== */
.fz-btn,
.fz-btn-primary,
button.fz-btn-primary,
a.fz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--fz-ink);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background .3s, transform .3s, box-shadow .3s;
  text-decoration: none;
  white-space: nowrap;
}
.fz-btn:hover,
.fz-btn-primary:hover { background: var(--fz-coral); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,96,74,.3); color: #fff !important; }
.fz-btn-coral,
a.fz-btn-coral { background: var(--fz-coral) !important; color: #fff !important; border: none; border-radius: 50px; padding: 14px 28px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: background .3s, transform .3s; text-decoration: none; }
.fz-btn-coral:hover { background: #d45236 !important; transform: translateY(-2px); }
.fz-btn-ghost {
  background: transparent;
  color: var(--fz-ink) !important;
  border: 1.5px solid var(--fz-border);
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  text-decoration: none;
}
.fz-btn-ghost:hover { border-color: var(--fz-ink); transform: translateY(-1px); }
.fz-btn-sage { background: var(--fz-sage) !important; color: #fff !important; border: none; border-radius: 50px; padding: 12px 22px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; transition: background .25s; }
.fz-btn-sage:hover { background: #5d8661 !important; }

/* =====================================================
   CURSOR (desktop only)
===================================================== */
@media (hover: hover) {
  body { cursor: none; }
  #fz-cursor { width: 10px; height: 10px; background: var(--fz-coral); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: width .3s, height .3s; top: 0; left: 0; }
  #fz-cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--fz-coral); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); top: 0; left: 0; transition: width .3s, height .3s; }
  a:hover ~ #fz-cursor, button:hover ~ #fz-cursor { width: 6px; height: 6px; }
}

/* =====================================================
   ANNOUNCE BAR
===================================================== */
#fz-announce {
  background: var(--fz-ink);
  height: var(--fz-ann-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
#fz-announce.hidden { display: none; }
.fz-announce-track {
  display: inline-flex;
  gap: 60px;
  animation: fzMarquee 30s linear infinite;
  white-space: nowrap;
}
.fz-announce-track span { color: var(--fz-coral); }
.fz-announce-item { display: flex; align-items: center; gap: 12px; padding: 0 20px; }
.fz-announce-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fz-coral); flex-shrink: 0; }
@keyframes fzMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =====================================================
   NAVIGATION
===================================================== */
#fz-nav {
  position: sticky;
  top: 0;
  z-index: 800;
  height: var(--fz-nav-h);
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--fz-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 12px;
  overflow: visible;
}
/* Logo */
.fz-logo { text-decoration: none; display: flex; flex-direction: column; align-items: center; flex-shrink: 0; line-height: 1; position: absolute; left: 50%; transform: translateX(-50%); }
.fz-logo-img-wrap { display: flex; align-items: center; justify-content: center; }
.fz-logo-img-wrap img,
.fz-logo-img-wrap .custom-logo-link,
.fz-logo-img-wrap .custom-logo-link img { max-height: 100% !important; width: auto !important; height: auto !important; max-width: 180px !important; object-fit: contain; display: block; }
.fz-logo-text { font-family: var(--fz-font-head); font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--fz-ink); line-height: 1; white-space: nowrap; }
.fz-logo-text span { color: var(--fz-coral); }
.fz-logo-sub { font-size: 8px; font-weight: 600; letter-spacing: .2em; color: var(--fz-ink60); text-transform: uppercase; margin-top: 3px; display: block; white-space: nowrap; text-align: center; }
/* Footer logo */
.fz-footer-logo img,
.fz-footer-logo .custom-logo-link img { max-height: 100% !important; width: auto !important; height: auto !important; max-width: 160px !important; }
/* Footer logo */
.fz-footer-logo img,
.fz-footer-logo .custom-logo-link img { max-height: 100% !important; width: auto !important; height: auto !important; max-width: 160px !important; }
/* Desktop links */
.fz-nav-links { display: flex; align-items: center; gap: 2px; }
.fz-nav-links a {
  font-size: 13px; font-weight: 600; color: var(--fz-ink);
  padding: 7px 12px; border-radius: 10px; transition: all .2s; white-space: nowrap;
}
.fz-nav-links a:hover,
.fz-nav-links a.current-menu-item,
.fz-nav-links a.active { color: var(--fz-coral); background: var(--fz-coral-l); }
/* Nav right */
.fz-nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.fz-nav-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--fz-border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: 14px; color: var(--fz-ink);
  position: relative; flex-shrink: 0;
}
.fz-nav-icon:hover { background: var(--fz-ink); color: white; }
.fz-nav-icon svg { pointer-events: none; }
/* Cart badge */
.fz-cart-count {
  position: absolute; top: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--fz-coral); color: white;
  font-size: 9px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.fz-cart-count.visible { display: flex; }
/* Lang switch */
.fz-lang { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; cursor: pointer; padding: 6px 10px; border: 1px solid var(--fz-border); border-radius: 50px; color: var(--fz-ink60); }
.fz-lang .fz-lang-active { color: var(--fz-coral); }
/* Hamburger */
.fz-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.fz-hamburger span { width: 22px; height: 2px; background: var(--fz-ink); border-radius: 2px; transition: all .3s; display: block; }
.fz-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.fz-hamburger.open span:nth-child(2) { opacity: 0; }
.fz-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile menu */
.fz-mobile-menu {
  position: fixed; top: calc(var(--fz-nav-h) + var(--fz-ann-h));
  left: 0; right: 0; bottom: 0;
  background: var(--fz-warm); z-index: 700; padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(-100%); transition: transform .35s cubic-bezier(.32,.72,0,1);
  overflow-y: auto;
}
.fz-mobile-menu.open { transform: translateX(0); }
.fz-mobile-menu a {
  font-family: var(--fz-font-head); font-size: 26px; font-weight: 700; color: var(--fz-ink);
  padding: 14px 0; border-bottom: 1px solid var(--fz-border); display: block; transition: color .2s;
}
.fz-mobile-menu a:hover { color: var(--fz-coral); }
.fz-mobile-menu .fz-btn-primary { margin-top: 20px; width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* =====================================================
   POPUP MINI — BOTTOM LEFT NON-BLOCKING
===================================================== */
#fz-popup {
  position: fixed; bottom: 20px; left: 20px; z-index: 900;
  width: 300px; max-width: calc(100vw - 40px);
  background: var(--fz-warm);
  border-radius: var(--fz-r-lg);
  box-shadow: 0 16px 48px rgba(28,25,23,.18);
  border: 1px solid var(--fz-border);
  transform: translateY(120%); opacity: 0;
  transition: transform .5s cubic-bezier(.17,.67,.3,1.2), opacity .4s ease;
  pointer-events: none;
}
#fz-popup.fz-popup-visible { transform: translateY(0); opacity: 1; pointer-events: all; }
#fz-popup.fz-popup-minimized .fz-popup-body { display: none; }
.fz-popup-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px 10px; }
.fz-popup-badge { background: var(--fz-coral); color: white; font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 50px; letter-spacing: .06em; text-transform: uppercase; }
.fz-popup-controls { display: flex; gap: 6px; }
.fz-popup-controls button { width: 24px; height: 24px; border-radius: 50%; border: none; background: var(--fz-ink10); cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.fz-popup-controls button:hover { background: var(--fz-border); }
.fz-popup-body { padding: 0 14px 14px; }
.fz-popup-product { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.fz-popup-img { width: 56px; height: 72px; background: var(--fz-coral-l); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; overflow: hidden; }
.fz-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.fz-popup-info h4 { font-family: var(--fz-font-head); font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--fz-ink); }
.fz-popup-info p { font-size: 11px; color: var(--fz-ink60); line-height: 1.4; margin-bottom: 5px; }
.fz-popup-price { font-family: var(--fz-font-head); font-size: 18px; font-weight: 700; color: var(--fz-ink); }
.fz-popup-price del { font-size: 12px; color: var(--fz-ink30); font-weight: 400; font-family: var(--fz-font-body); text-decoration: line-through; }
.fz-popup-body .fz-btn-coral { width: 100%; justify-content: center; padding: 11px; font-size: 13px; border-radius: 50px; }

/* =====================================================
   CART DRAWER
===================================================== */
#fz-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(28,25,23,.4); z-index: 1800;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#fz-cart-overlay.open { opacity: 1; pointer-events: all; }
#fz-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--fz-warm); z-index: 1900;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.32,.72,0,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(28,25,23,.15);
}
#fz-cart-drawer.open { transform: translateX(0); }
.fz-cart-head { padding: 20px 24px; border-bottom: 1px solid var(--fz-border); display: flex; align-items: center; justify-content: space-between; }
.fz-cart-head h3 { font-family: var(--fz-font-head); font-size: 20px; font-weight: 700; color: var(--fz-ink); }
.fz-cart-close { width: 32px; height: 32px; border-radius: 50%; background: var(--fz-ink10); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s; }
.fz-cart-close:hover { background: var(--fz-ink); color: white; }
.fz-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
/* Free shipping bar */
.fz-cart-ship-bar { background: var(--fz-sage-l); border-radius: var(--fz-r); padding: 10px 14px; margin-bottom: 14px; }
.fz-cart-ship-bar p { font-size: 12px; font-weight: 700; color: var(--fz-sage); margin-bottom: 7px; }
.fz-cart-ship-bar p span { color: var(--fz-ink); }
.fz-ship-progress { height: 4px; background: rgba(122,158,126,.25); border-radius: 2px; }
.fz-ship-fill { height: 100%; background: var(--fz-sage); border-radius: 2px; transition: width .5s ease; }
/* Urgency badges */
.fz-cart-urgency { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.fz-cart-urgency span { background: var(--fz-ink10); border: 1px solid var(--fz-border); border-radius: 50px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--fz-ink60); display: flex; align-items: center; gap: 5px; }
.fz-cart-urgency .urgent { background: #FEF2F2; border-color: #FCA5A5; color: #DC2626; }
/* Cart item */
.fz-cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--fz-border); }
.fz-cart-item-img { width: 56px; height: 72px; background: var(--fz-cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; overflow: hidden; }
.fz-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.fz-cart-item-name { font-size: 13px; font-weight: 700; color: var(--fz-ink); margin-bottom: 3px; }
.fz-cart-item-meta { font-size: 11px; color: var(--fz-ink60); margin-bottom: 6px; }
.fz-cart-item-price { font-size: 15px; font-weight: 700; color: var(--fz-ink); }
.fz-cart-item-remove { background: none; border: none; cursor: pointer; color: var(--fz-ink30); font-size: 12px; font-weight: 700; padding: 2px 6px; align-self: flex-start; transition: color .2s; }
.fz-cart-item-remove:hover { color: var(--fz-coral); }
/* Cart empty */
.fz-cart-empty { text-align: center; padding: 50px 20px; }
.fz-cart-empty .fz-cart-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.fz-cart-empty h4 { font-family: var(--fz-font-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--fz-ink); }
.fz-cart-empty p { font-size: 13px; color: var(--fz-ink60); }
/* Cart foot */
.fz-cart-foot { padding: 16px 24px; border-top: 1px solid var(--fz-border); }
.fz-cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.fz-cart-total-label { font-size: 13px; color: var(--fz-ink60); }
.fz-cart-total-val { font-family: var(--fz-font-head); font-size: 24px; font-weight: 700; color: var(--fz-ink); }
.fz-cart-note { font-size: 11px; color: var(--fz-ink60); margin-bottom: 12px; }
.fz-btn-checkout { width: 100%; padding: 15px; background: var(--fz-ink); color: white; border: none; border-radius: 50px; font-family: var(--fz-font-body); font-size: 15px; font-weight: 700; cursor: pointer; transition: all .25s; }
.fz-btn-checkout:hover { background: var(--fz-coral); }
.fz-cart-trust-row { display: flex; justify-content: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.fz-cart-trust-row span { font-size: 10px; font-weight: 600; color: var(--fz-ink60); display: flex; align-items: center; gap: 4px; }

/* =====================================================
   HERO
===================================================== */
.fz-hero {
  min-height: calc(100svh - var(--fz-nav-h) - var(--fz-ann-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.fz-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vw,80px) clamp(24px,5vw,64px);
  background: var(--fz-cream);
  position: relative; z-index: 2;
}
.fz-hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.fz-hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fz-coral); animation: fzPulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes fzPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.6); } }
.fz-hero-tag-text { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fz-ink60); }
.fz-hero h1 { font-size: clamp(32px,4.5vw,62px); margin-bottom: 18px; }
.fz-hero-p { font-size: clamp(14px,1.6vw,16px); color: var(--fz-ink60); max-width: 420px; margin-bottom: 32px; }
.fz-hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.fz-hero-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fz-proof-avs { display: flex; }
.fz-proof-av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--fz-cream); margin-left: -7px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; }
.fz-proof-av:first-child { margin-left: 0; }
.fz-proof-text { font-size: 12px; color: var(--fz-ink60); line-height: 1.4; }
.fz-proof-text strong { color: var(--fz-ink); font-weight: 700; }
.fz-proof-stars { color: var(--fz-gold); font-size: 11px; letter-spacing: 1px; }
/* Hero right / packaging */
.fz-hero-right { position: relative; overflow: hidden; background: var(--fz-coral-l); }
.fz-hero-scene { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.fz-pack-wrap { position: relative; width: clamp(280px,35vw,400px); height: clamp(340px,45vw,480px); }
.fz-pack { position: absolute; background: white; border-radius: 20px; box-shadow: 20px 20px 60px rgba(28,25,23,.18); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.fz-pack-main { width: clamp(150px,18vw,200px); height: clamp(210px,26vw,280px); top: 50%; left: 50%; transform: translate(-50%,-56%) rotate(-4deg); animation: fzFloat1 5s ease-in-out infinite; }
.fz-pack-b { width: clamp(108px,13vw,145px); height: clamp(148px,18vw,198px); bottom: 20px; right: 10px; transform: rotate(6deg); animation: fzFloat2 5s ease-in-out .8s infinite; }
.fz-pack-c { width: clamp(94px,11vw,125px); height: clamp(128px,15vw,170px); top: 15px; left: 15px; transform: rotate(-7deg); animation: fzFloat3 5s ease-in-out .4s infinite; }
@keyframes fzFloat1 { 0%,100% { transform: translate(-50%,-56%) rotate(-4deg) translateY(0); } 50% { transform: translate(-50%,-56%) rotate(-4deg) translateY(-14px); } }
@keyframes fzFloat2 { 0%,100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-9px); } }
@keyframes fzFloat3 { 0%,100% { transform: rotate(-7deg) translateY(0); } 50% { transform: rotate(-7deg) translateY(-11px); } }
.fz-pack-band { position: absolute; top: 0; left: 0; right: 0; border-radius: 20px 20px 0 0; }
.fz-pack-logo { font-family: var(--fz-font-head); font-weight: 700; color: white; position: absolute; top: 0; left: 0; right: 0; text-align: center; }
.fz-pack-emoji { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.fz-pack-name { font-family: var(--fz-font-head); font-weight: 600; color: var(--fz-ink); text-align: center; padding: 0 10px; line-height: 1.3; }
.fz-pack-qty { color: var(--fz-ink60); text-align: center; font-weight: 600; letter-spacing: .06em; }
.fz-hero-chip { position: absolute; background: white; border-radius: 50px; font-size: clamp(9px,1vw,11px); font-weight: 700; color: var(--fz-ink); box-shadow: 0 8px 24px rgba(28,25,23,.12); white-space: nowrap; padding: 6px 12px; }
/* Hero animation */
.fz-hero-left > * { opacity: 0; transform: translateY(24px); animation: fzHeroIn .7s ease forwards; }
.fz-hero-tag { animation-delay: .1s !important; }
.fz-hero h1 { animation-delay: .2s !important; }
.fz-hero-p { animation-delay: .3s !important; }
.fz-hero-actions { animation-delay: .4s !important; }
.fz-hero-proof { animation-delay: .5s !important; }
@keyframes fzHeroIn { to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   TICKER
===================================================== */
.fz-ticker { border-top: 1px solid var(--fz-border); border-bottom: 1px solid var(--fz-border); background: var(--fz-warm); overflow: hidden; padding: 12px 0; }
.fz-ticker-track { display: flex; animation: fzTicker 28s linear infinite; width: max-content; }
.fz-ticker-item { padding: 0 40px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fz-ink60); display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.fz-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fz-coral); flex-shrink: 0; }
@keyframes fzTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =====================================================
   SLIDER
===================================================== */
.fz-slider-wrap { position: relative; overflow: hidden; border-radius: var(--fz-r-xl); aspect-ratio: 16 / 7; }
@media (max-width: 600px) { .fz-slider-wrap { aspect-ratio: 4 / 3; } }
.fz-slider-track { display: flex; transition: transform .6s cubic-bezier(.32,.72,0,1); height: 100%; }
.fz-slide { flex-shrink: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.fz-slide-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.fz-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,25,23,.78) 0%, transparent 65%); }
.fz-slide-content { position: absolute; inset: 0; display: flex; align-items: center; padding: clamp(20px,4vw,64px); z-index: 2; }
.fz-slide-text { color: white; max-width: 440px; }
.fz-slide-text h3 { font-family: var(--fz-font-head); font-size: clamp(20px,2.8vw,36px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; color: white; }
.fz-slide-text p { font-size: clamp(12px,1.4vw,15px); opacity: .75; line-height: 1.6; margin-bottom: 20px; color: white; }
.fz-slide-emoji { position: absolute; right: clamp(20px,8vw,120px); font-size: clamp(60px,12vw,160px); opacity: .25; pointer-events: none; }
.fz-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; z-index: 3; transition: all .2s; }
.fz-slider-btn:hover { background: white; transform: translateY(-50%) scale(1.1); }
.fz-slider-btn.prev { left: 12px; }
.fz-slider-btn.next { right: 12px; }
.fz-slider-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.fz-slider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fz-border); cursor: pointer; transition: all .3s; border: none; }
.fz-slider-dot.active { background: var(--fz-coral); transform: scale(1.3); }

/* =====================================================
   BESTSELLERS GRID
===================================================== */
.fz-incont-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.fz-incont-card { border-radius: var(--fz-r-lg); overflow: hidden; position: relative; aspect-ratio: 3 / 4; cursor: pointer; transition: transform .4s cubic-bezier(.17,.67,.3,1.05); }
.fz-incont-card:hover { transform: scale(1.02); }
.fz-incont-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: clamp(50px,8vw,80px); }
.fz-incont-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fz-incont-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,23,.85) 0%, rgba(28,25,23,.2) 50%, transparent 100%); }
.fz-incont-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; }
.fz-incont-sub { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 5px; }
.fz-incont-name { font-family: var(--fz-font-head); font-size: clamp(14px,1.8vw,18px); font-weight: 700; color: white; margin-bottom: 10px; line-height: 1.2; }
.fz-incont-cta { display: inline-flex; align-items: center; gap: 5px; background: white; color: var(--fz-ink); font-size: 11px; font-weight: 700; padding: 7px 12px; border-radius: 50px; transition: all .25s; cursor: pointer; border: none; }
.fz-incont-cta:hover { background: var(--fz-coral); color: white; }
.fz-incont-stars { display: flex; align-items: center; gap: 5px; margin-top: 8px; }
.fz-incont-stars .stars { color: var(--fz-gold); font-size: 11px; }
.fz-incont-stars small { color: rgba(255,255,255,.7); font-size: 10px; font-weight: 600; }

/* =====================================================
   HOW IT WORKS
===================================================== */
.fz-how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--fz-border); border-radius: var(--fz-r-lg); overflow: hidden; }
.fz-how-step { background: var(--fz-warm); padding: clamp(20px,2.5vw,32px) clamp(16px,2vw,24px); transition: background .25s; }
.fz-how-step:hover { background: var(--fz-cream); }
.fz-how-num { font-family: var(--fz-font-head); font-size: 44px; font-weight: 300; font-style: italic; color: var(--fz-ink30); line-height: 1; margin-bottom: 14px; }
.fz-how-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.fz-how-title { font-family: var(--fz-font-head); font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--fz-ink); }
.fz-how-text { font-size: 12px; color: var(--fz-ink60); line-height: 1.6; }

/* =====================================================
   REVIEWS
===================================================== */
.fz-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fz-review-card { background: var(--fz-warm); border-radius: var(--fz-r-lg); padding: clamp(20px,2.5vw,28px); border: 1px solid var(--fz-border); transition: all .3s; }
.fz-review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(28,25,23,.08); }
.fz-review-stars { color: var(--fz-gold); font-size: 13px; margin-bottom: 10px; }
.fz-review-quote { font-family: var(--fz-font-head); font-size: 15px; font-style: italic; line-height: 1.65; color: var(--fz-ink); margin-bottom: 16px; }
.fz-review-author { display: flex; align-items: center; gap: 10px; }
.fz-review-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.fz-review-name { font-size: 13px; font-weight: 700; color: var(--fz-ink); }
.fz-review-meta { font-size: 11px; color: var(--fz-ink60); }
.fz-review-verified { color: var(--fz-sage); font-weight: 700; }

/* =====================================================
   INGREDIENTS
===================================================== */
.fz-ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); }
.fz-ing-item { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(28,25,23,.12); }
.fz-ing-item:first-child { border-top: 1px solid rgba(28,25,23,.12); }
.fz-ing-left { display: flex; align-items: center; gap: 12px; }
.fz-ing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fz-sage); flex-shrink: 0; }
.fz-ing-name { font-size: 14px; font-weight: 600; color: var(--fz-ink); }
.fz-ing-badge { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--fz-sage); border: 1px solid var(--fz-sage); border-radius: 50px; padding: 2px 8px; white-space: nowrap; }
.fz-cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.fz-cert-card { background: white; border-radius: var(--fz-r); padding: 16px; display: flex; align-items: flex-start; gap: 10px; }
.fz-cert-icon { font-size: 20px; flex-shrink: 0; }
.fz-cert-title { font-size: 12px; font-weight: 700; margin-bottom: 3px; color: var(--fz-ink); }
.fz-cert-desc { font-size: 11px; color: var(--fz-ink60); line-height: 1.5; }

/* =====================================================
   TRUST BAR
===================================================== */
.fz-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.fz-trust-item { padding: clamp(24px,3vw,36px) clamp(16px,2.5vw,28px); border-right: 1px solid rgba(255,255,255,.08); }
.fz-trust-item:last-child { border-right: none; }
.fz-trust-icon { font-size: 22px; margin-bottom: 8px; }
.fz-trust-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 5px; }
.fz-trust-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.55; }

/* =====================================================
   BLOG GRID
===================================================== */
.fz-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fz-blog-card { background: var(--fz-warm); border-radius: var(--fz-r-lg); overflow: hidden; cursor: pointer; transition: all .3s; border: 1px solid var(--fz-border); text-decoration: none; }
.fz-blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(28,25,23,.1); }
.fz-blog-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--fz-cream); }
.fz-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fz-blog-card:hover .fz-blog-img img { transform: scale(1.04); }
.fz-blog-body { padding: 20px; }
.fz-blog-cat { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--fz-coral); margin-bottom: 6px; }
.fz-blog-title { font-family: var(--fz-font-head); font-size: 17px; font-weight: 600; color: var(--fz-ink); margin-bottom: 7px; letter-spacing: -.02em; line-height: 1.3; }
.fz-blog-excerpt { font-size: 12px; color: var(--fz-ink60); line-height: 1.6; margin-bottom: 12px; }
.fz-blog-meta { font-size: 11px; color: var(--fz-ink60); display: flex; align-items: center; gap: 6px; }
.fz-blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fz-ink30); }

/* =====================================================
   PAGE HEADERS
===================================================== */
.fz-page-header { padding: clamp(40px,6vw,60px) 0; }
.fz-page-header-dark { background: var(--fz-ink); }
.fz-page-header-dark .fz-eyebrow { color: rgba(255,255,255,.35); }
.fz-page-header-dark h1,
.fz-page-header-dark h1 em { color: white; }
.fz-page-header-dark p { color: rgba(255,255,255,.5); max-width: 440px; }

/* =====================================================
   FILTERS
===================================================== */
.fz-filters { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.fz-filter-btn { background: var(--fz-warm); border: 1.5px solid var(--fz-border); border-radius: 50px; padding: 8px 18px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all .2s; color: var(--fz-ink); font-family: var(--fz-font-body); }
.fz-filter-btn.active, .fz-filter-btn:hover { background: var(--fz-ink); color: white; border-color: var(--fz-ink); }

/* =====================================================
   PRODUCT GRID
===================================================== */
.fz-prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fz-prod-card { border-radius: var(--fz-r-lg); overflow: hidden; background: var(--fz-warm); cursor: pointer; transition: transform .4s cubic-bezier(.17,.67,.3,1.05), box-shadow .4s ease; border: 1px solid var(--fz-border); text-decoration: none; display: block; color: inherit; }
.fz-prod-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(28,25,23,.12); }
.fz-prod-img { aspect-ratio: 4 / 5; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fz-prod-img-bg { position: absolute; inset: 0; }
.fz-prod-thumb { position: relative; z-index: 2; transition: transform .4s ease; width: clamp(90px,11vw,120px); height: clamp(126px,15vw,170px); background: white; border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,.15); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.fz-prod-card:hover .fz-prod-thumb { transform: scale(1.06) rotate(-2deg); }
.fz-prod-thumb-band { position: absolute; top: 0; left: 0; right: 0; height: 22%; border-radius: 16px 16px 0 0; display: flex; align-items: center; justify-content: center; }
.fz-prod-thumb-band span { font-family: var(--fz-font-head); font-size: 10px; font-weight: 700; color: white; }
.fz-prod-thumb-emoji { font-size: clamp(22px,3.5vw,34px); margin-top: 20%; }
.fz-prod-thumb-name { font-family: var(--fz-font-head); font-size: 10px; font-weight: 700; color: var(--fz-ink); text-align: center; padding: 0 8px; margin-top: 5px; line-height: 1.3; }
.fz-prod-badge { position: absolute; top: 12px; left: 12px; z-index: 3; background: var(--fz-ink); color: white; border-radius: 50px; padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.fz-prod-badge.hot { background: var(--fz-coral); }
.fz-prod-badge.sale { background: var(--fz-sage); }
.fz-prod-badge.new { background: var(--fz-sky); }
.fz-prod-body { padding: 18px 20px 20px; }
.fz-prod-cat { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fz-ink60); margin-bottom: 4px; }
.fz-prod-name { font-family: var(--fz-font-head); font-size: 18px; font-weight: 700; color: var(--fz-ink); margin-bottom: 4px; letter-spacing: -.02em; }
.fz-prod-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 7px; }
.fz-prod-rating .stars { color: var(--fz-gold); font-size: 11px; }
.fz-prod-rating small { font-size: 11px; color: var(--fz-ink60); font-weight: 600; }
.fz-prod-desc { font-size: 12px; color: var(--fz-ink60); line-height: 1.6; margin-bottom: 12px; }
.fz-prod-footer { display: flex; align-items: center; justify-content: space-between; }
.fz-prod-price { font-family: var(--fz-font-head); font-size: 20px; font-weight: 700; color: var(--fz-ink); }
.fz-prod-price del { font-size: 12px; color: var(--fz-ink30); font-weight: 400; font-family: var(--fz-font-body); }
.fz-btn-atc-round { width: 36px; height: 36px; border-radius: 50%; background: var(--fz-ink); color: white; border: none; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all .25s; flex-shrink: 0; }
.fz-btn-atc-round:hover { background: var(--fz-coral); transform: scale(1.1); }

/* =====================================================
   SINGLE PRODUCT PAGE
===================================================== */
.fz-product-wrap { padding: 48px 0; }
.fz-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.fz-product-gallery { position: sticky; top: calc(var(--fz-nav-h) + var(--fz-ann-h) + 12px); }
.fz-gallery-main { aspect-ratio: 1 / 1; border-radius: var(--fz-r-xl); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(28,25,23,.1); background: linear-gradient(135deg, var(--fz-coral-l), var(--fz-cream)); }
.fz-gallery-main img { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; }
.fz-gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.fz-gallery-thumb { aspect-ratio: 1 / 1; border-radius: 12px; cursor: pointer; border: 2px solid transparent; transition: all .2s; background: var(--fz-cream); overflow: hidden; }
.fz-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fz-gallery-thumb.active { border-color: var(--fz-ink); }
/* Product info */
.fz-product-info { padding-top: 8px; }
.fz-breadcrumb { font-size: 12px; color: var(--fz-ink60); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fz-breadcrumb a { color: var(--fz-ink60); }
.fz-breadcrumb a:hover { color: var(--fz-coral); }
.fz-prod-badge-lg { display: inline-flex; align-items: center; gap: 6px; background: var(--fz-coral); color: white; font-size: 11px; font-weight: 700; padding: 5px 13px; border-radius: 50px; margin-bottom: 12px; letter-spacing: .04em; }
.fz-prod-detail-name { font-size: clamp(28px,3.5vw,42px); margin-bottom: 6px; }
.fz-prod-detail-sub { font-size: 14px; color: var(--fz-ink60); margin-bottom: 14px; }
.fz-prod-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.fz-prod-stars { color: var(--fz-gold); font-size: 15px; letter-spacing: 1px; }
.fz-prod-rating-score { font-size: 14px; font-weight: 700; color: var(--fz-ink); }
.fz-prod-rating-count { font-size: 13px; color: var(--fz-ink60); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.fz-prod-rating-count:hover { color: var(--fz-coral); }
.fz-stock-badge { font-size: 11px; font-weight: 700; color: #166534; background: #f0fdf4; padding: 4px 10px; border-radius: 50px; border: 1px solid #bbf7d0; }
.fz-stock-low { color: #92400e; background: #fffbeb; border-color: #fde68a; }
.fz-prod-detail-price { font-family: var(--fz-font-head); font-size: clamp(28px,3vw,38px); font-weight: 700; color: var(--fz-ink); margin-bottom: 4px; }
.fz-prod-detail-price del { font-size: 18px; color: var(--fz-ink30); font-weight: 400; font-family: var(--fz-font-body); }
.fz-save-badge { display: inline-block; background: var(--fz-coral-l); color: var(--fz-coral); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 18px; }
.fz-short-desc { font-size: 14px; color: var(--fz-ink60); line-height: 1.75; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--fz-border); }
/* Variants */
.fz-variants-section { margin-bottom: 18px; }
.fz-variants-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fz-ink60); margin-bottom: 9px; display: block; }
.fz-variants-options { display: flex; gap: 7px; flex-wrap: wrap; }
.fz-variant-btn { padding: 8px 16px; border-radius: 50px; border: 1.5px solid var(--fz-border); background: transparent; font-family: var(--fz-font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--fz-ink); }
.fz-variant-btn.active { background: var(--fz-ink); color: white; border-color: var(--fz-ink); }
.fz-variant-btn:hover:not(.active) { border-color: var(--fz-ink); }
.fz-color-options { display: flex; gap: 8px; }
.fz-color-dot { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all .2s; }
.fz-color-dot.active, .fz-color-dot:hover { border-color: var(--fz-ink); transform: scale(1.1); }
/* Qty */
.fz-qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.fz-qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--fz-border); border-radius: 50px; overflow: hidden; flex-shrink: 0; }
.fz-qty-btn { width: 36px; height: 36px; background: transparent; border: none; font-size: 18px; cursor: pointer; transition: background .15s; font-weight: 500; color: var(--fz-ink); font-family: var(--fz-font-body); }
.fz-qty-btn:hover { background: var(--fz-ink10); }
.fz-qty-num { width: 36px; text-align: center; font-size: 15px; font-weight: 700; color: var(--fz-ink); }
.fz-btn-atc { flex: 1; min-width: 140px; padding: 13px 20px; background: var(--fz-coral); color: white; border: none; border-radius: 50px; font-family: var(--fz-font-body); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .25s; }
.fz-btn-atc:hover { background: #d45236; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,96,74,.3); }
.fz-btn-buy-now { padding: 13px 20px; background: var(--fz-ink); color: white; border: none; border-radius: 50px; font-family: var(--fz-font-body); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .25s; flex: 1; min-width: 120px; }
.fz-btn-buy-now:hover { background: var(--fz-coral); }
/* 4 trust icons 48px */
.fz-trust-icons { display: flex; gap: 0; padding: 16px 0; margin-bottom: 12px; border-top: 1px solid var(--fz-border); border-bottom: 1px solid var(--fz-border); }
.fz-trust-icon-item { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.fz-trust-icon-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--fz-cream); display: flex; align-items: center; justify-content: center; font-size: 18px; border: 1.5px solid var(--fz-border); overflow: hidden; }
.fz-trust-icon-circle img { width: 100%; height: 100%; object-fit: contain; }
.fz-trust-icon-label { font-size: 10px; font-weight: 600; color: var(--fz-ink60); text-align: center; line-height: 1.3; }
/* Payment badges */
.fz-payment-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.fz-secure-label { font-size: 11px; font-weight: 600; color: var(--fz-ink60); display: flex; align-items: center; gap: 4px; margin-right: 4px; }
.fz-payment-badge { background: white; border: 1.5px solid var(--fz-border); border-radius: 8px; padding: 5px 10px; font-size: 10px; font-weight: 800; color: var(--fz-ink); display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 28px; box-shadow: 0 1px 3px rgba(28,25,23,.06); transition: border-color .2s; letter-spacing: .02em; }
.fz-payment-badge img { height: 18px; width: auto; max-width: 52px; object-fit: contain; display: block; }
.fz-payment-row img { height: 20px; width: auto; border-radius: 4px; }
/* Promo band */
.fz-promo-band { background: linear-gradient(135deg, var(--fz-coral), #c8503a); border-radius: var(--fz-r); padding: 14px 18px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fz-promo-band p { color: white; font-size: 13px; font-weight: 700; }
.fz-promo-band small { color: rgba(255,255,255,.8); font-size: 11px; }
/* Bundle */
.fz-bundle-box { background: var(--fz-warm); border: 1.5px solid var(--fz-border); border-radius: var(--fz-r-lg); padding: 18px; margin-bottom: 14px; }
.fz-bundle-title { font-size: 13px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--fz-ink); }
.fz-bundle-save-chip { background: var(--fz-coral-l); color: var(--fz-coral); font-size: 10px; padding: 3px 9px; border-radius: 50px; font-weight: 700; }
.fz-bundle-items { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.fz-bundle-item { display: flex; align-items: center; gap: 7px; background: var(--fz-cream); border-radius: 50px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--fz-ink); }
.fz-bundle-plus { color: var(--fz-ink60); font-size: 16px; font-weight: 300; }
.fz-bundle-price-row { display: flex; align-items: center; justify-content: space-between; }
.fz-bundle-price { font-family: var(--fz-font-head); font-size: 20px; font-weight: 700; color: var(--fz-ink); }
.fz-bundle-price small { font-size: 11px; color: var(--fz-ink60); font-family: var(--fz-font-body); font-weight: 400; display: block; }
.fz-bundle-save-badge { font-size: 11px; color: var(--fz-sage); font-weight: 700; background: var(--fz-sage-l); padding: 3px 10px; border-radius: 50px; }
/* Description tabs */
.fz-desc-tabs { display: flex; border-bottom: 2px solid var(--fz-border); margin-bottom: 20px; margin-top: 36px; overflow-x: auto; }
.fz-desc-tab { padding: 11px 18px; font-size: 13px; font-weight: 700; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; color: var(--fz-ink60); white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--fz-font-body); }
.fz-desc-tab.active { border-bottom-color: var(--fz-ink); color: var(--fz-ink); }
.fz-desc-panel { display: none; }
.fz-desc-panel.active { display: block; }
.fz-desc-panel p { font-size: 14px; color: var(--fz-ink60); line-height: 1.8; margin-bottom: 12px; }
.fz-desc-panel ul { display: flex; flex-direction: column; gap: 7px; }
.fz-desc-panel ul li { font-size: 14px; color: var(--fz-ink60); display: flex; align-items: flex-start; gap: 8px; list-style: none; }
.fz-desc-panel ul li::before { content: '✓'; color: var(--fz-sage); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
/* Upsell */
.fz-upsell-section { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--fz-border); }
.fz-upsell-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.fz-upsell-card { background: var(--fz-warm); border-radius: var(--fz-r); padding: 14px; display: flex; gap: 12px; align-items: center; cursor: pointer; border: 1px solid var(--fz-border); transition: all .25s; text-decoration: none; }
.fz-upsell-card:hover { border-color: var(--fz-coral); transform: translateY(-2px); }
.fz-upsell-img { width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; overflow: hidden; }
.fz-upsell-img img { width: 100%; height: 100%; object-fit: cover; }
.fz-upsell-name { font-size: 13px; font-weight: 700; color: var(--fz-ink); margin-bottom: 3px; }
.fz-upsell-price { font-size: 14px; font-weight: 700; color: var(--fz-coral); }
/* Product reviews */
.fz-reviews-section { margin-top: 48px; }
.fz-reviews-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; }
.fz-reviews-score { font-family: var(--fz-font-head); font-size: 52px; font-weight: 700; letter-spacing: -.05em; line-height: 1; color: var(--fz-ink); }
.fz-reviews-list { display: flex; flex-direction: column; gap: 14px; }
.fz-review-single { background: var(--fz-warm); border-radius: var(--fz-r); padding: 20px; border: 1px solid var(--fz-border); }
.fz-review-single-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }

/* =====================================================
   FAQ
===================================================== */
.fz-faq-wrap { max-width: 720px; margin: 0 auto; }
.fz-faq-item { border-bottom: 1px solid var(--fz-border); }
.fz-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--fz-ink); gap: 12px; background: none; border: none; width: 100%; text-align: left; font-family: var(--fz-font-body); }
.fz-faq-q:hover { color: var(--fz-coral); }
.fz-faq-arrow { font-size: 18px; transition: transform .3s; flex-shrink: 0; }
.fz-faq-item.open .fz-faq-arrow { transform: rotate(180deg); }
.fz-faq-a { font-size: 14px; color: var(--fz-ink60); line-height: 1.75; padding-bottom: 18px; display: none; }
.fz-faq-item.open .fz-faq-a { display: block; }

/* =====================================================
   TRACKING / ORDER STATUS
===================================================== */
.fz-tracking-card { max-width: 560px; margin: 0 auto; background: var(--fz-warm); border-radius: var(--fz-r-xl); padding: clamp(28px,5vw,48px); border: 1px solid var(--fz-border); }
.fz-tracking-card h2 { font-size: clamp(22px,3vw,32px); margin-bottom: 6px; }
.fz-form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fz-ink60); margin-bottom: 7px; }
.fz-form-input { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--fz-border); background: var(--fz-cream); font-family: var(--fz-font-body); font-size: 14px; color: var(--fz-ink); transition: border-color .2s; outline: none; margin-bottom: 16px; }
.fz-form-input:focus { border-color: var(--fz-ink); }
.fz-track-result { margin-top: 24px; padding: 20px; background: var(--fz-sage-l); border-radius: var(--fz-r); display: none; }
.fz-track-status { font-family: var(--fz-font-head); font-size: 20px; font-weight: 700; margin-bottom: 5px; color: var(--fz-ink); }
.fz-track-eta { font-size: 13px; color: var(--fz-ink60); margin-bottom: 16px; }
/* Ludic steps */
.fz-track-steps { display: flex; flex-direction: column; gap: 0; }
.fz-track-step { display: flex; align-items: center; gap: 16px; padding: 12px 0; position: relative; }
.fz-track-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; width: 2px; height: calc(100% - 20px); background: var(--fz-border); }
.fz-track-step.done::after { background: var(--fz-sage); }
.fz-track-step-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--fz-border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; z-index: 1; transition: all .3s; }
.fz-track-step.done .fz-track-step-icon { background: var(--fz-sage); box-shadow: 0 4px 12px rgba(122,158,126,.3); }
.fz-track-step.current .fz-track-step-icon { background: var(--fz-coral); box-shadow: 0 4px 12px rgba(232,96,74,.3); animation: fzPulse 1.5s ease-in-out infinite; }
.fz-track-step-label { font-size: 13px; color: var(--fz-ink60); }
.fz-track-step.done .fz-track-step-label,
.fz-track-step.current .fz-track-step-label { color: var(--fz-ink); font-weight: 700; }
.fz-track-step-time { font-size: 11px; color: var(--fz-ink30); margin-top: 2px; }

/* =====================================================
   CONTACT
===================================================== */
.fz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); padding: 72px 0; } /* legacy */
.fz-contact-method { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--fz-warm); border-radius: var(--fz-r); border: 1px solid var(--fz-border); margin-bottom: 10px; cursor: pointer; transition: all .2s; text-decoration: none; }
.fz-contact-method:hover { border-color: var(--fz-coral); }
.fz-contact-icon { font-size: 20px; flex-shrink: 0; }
.fz-contact-method-title { font-size: 13px; font-weight: 700; color: var(--fz-ink); }
.fz-contact-method-val { font-size: 12px; color: var(--fz-ink60); }
textarea.fz-form-input { height: 120px; resize: none; }

/* =====================================================
   ABOUT / STORY
===================================================== */
.fz-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: center; }
.fz-story-visual { border-radius: var(--fz-r-xl); overflow: hidden; background: var(--fz-sage-l); aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; }
.fz-story-visual img { width: 100%; height: 100%; object-fit: cover; }
.fz-story-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--fz-border); border: 1px solid var(--fz-border); border-radius: var(--fz-r); overflow: hidden; margin-top: 36px; }
.fz-story-stat { background: var(--fz-warm); padding: 20px 16px; text-align: center; }
.fz-stat-num { font-family: var(--fz-font-head); font-size: 32px; font-weight: 700; letter-spacing: -.04em; display: block; color: var(--fz-ink); }
.fz-stat-label { font-size: 11px; color: var(--fz-ink60); font-weight: 600; margin-top: 3px; display: block; }
.fz-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 56px; }
.fz-value-card { background: var(--fz-warm); border-radius: var(--fz-r-lg); padding: clamp(22px,3vw,32px); border: 1px solid var(--fz-border); }
.fz-value-num { font-family: var(--fz-font-head); font-size: 13px; font-style: italic; color: var(--fz-ink30); margin-bottom: 14px; }
.fz-value-title { font-family: var(--fz-font-head); font-size: 19px; font-weight: 700; margin-bottom: 9px; color: var(--fz-ink); }
.fz-value-text { font-size: 13px; color: var(--fz-ink60); line-height: 1.7; }

/* =====================================================
   LIVE CHAT
===================================================== */
#fz-chat-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 860;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--fz-ink); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 6px 24px rgba(28,25,23,.25); transition: all .3s;
}
#fz-chat-btn:hover { background: var(--fz-coral); transform: scale(1.1); }
#fz-chat-btn .fz-chat-unread { position: absolute; top: -3px; right: -3px; width: 18px; height: 18px; border-radius: 50%; background: var(--fz-coral); color: white; font-size: 10px; font-weight: 700; display: none; align-items: center; justify-content: center; border: 2px solid white; }
#fz-chat-btn .fz-chat-unread.visible { display: flex; }
#fz-chat-window {
  position: fixed; bottom: 84px; right: 20px; z-index: 859;
  width: 320px; max-width: calc(100vw - 40px);
  background: var(--fz-warm); border-radius: var(--fz-r-lg);
  box-shadow: 0 16px 48px rgba(28,25,23,.18); border: 1px solid var(--fz-border);
  display: flex; flex-direction: column;
  transform: scale(.9) translateY(10px); opacity: 0;
  transition: all .3s cubic-bezier(.17,.67,.3,1.2);
  pointer-events: none; max-height: 460px;
}
#fz-chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.fz-chat-head { background: var(--fz-ink); border-radius: var(--fz-r-lg) var(--fz-r-lg) 0 0; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.fz-chat-agent-av { width: 36px; height: 36px; border-radius: 50%; background: var(--fz-coral); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; overflow: hidden; }
.fz-chat-agent-av img { width: 100%; height: 100%; object-fit: cover; }
.fz-chat-agent-name { font-size: 14px; font-weight: 700; color: white; }
.fz-chat-agent-status { font-size: 11px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 5px; }
.fz-chat-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.fz-chat-head-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: 18px; padding: 2px 6px; transition: color .2s; }
.fz-chat-head-close:hover { color: white; }
.fz-chat-messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; max-height: 280px; }
.fz-chat-msg { max-width: 80%; padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.5; }
.fz-chat-msg.agent { background: var(--fz-cream); color: var(--fz-ink); align-self: flex-start; border-radius: 4px 16px 16px 16px; }
.fz-chat-msg.user { background: var(--fz-ink); color: white; align-self: flex-end; border-radius: 16px 4px 16px 16px; }
.fz-chat-msg-time { font-size: 10px; color: var(--fz-ink30); margin-top: 3px; }
.fz-chat-typing { display: flex; gap: 4px; padding: 10px 14px; background: var(--fz-cream); border-radius: 4px 16px 16px 16px; width: fit-content; }
.fz-chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--fz-ink30); animation: fzTyping 1.2s ease-in-out infinite; }
.fz-chat-typing span:nth-child(2) { animation-delay: .2s; }
.fz-chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes fzTyping { 0%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-5px); } }
.fz-chat-form { padding: 12px 14px; border-top: 1px solid var(--fz-border); display: flex; gap: 8px; }
.fz-chat-input { flex: 1; padding: 10px 14px; border-radius: 50px; border: 1.5px solid var(--fz-border); background: var(--fz-cream); font-family: var(--fz-font-body); font-size: 13px; color: var(--fz-ink); outline: none; transition: border-color .2s; }
.fz-chat-input:focus { border-color: var(--fz-ink); }
.fz-chat-send { width: 36px; height: 36px; border-radius: 50%; background: var(--fz-ink); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; flex-shrink: 0; }
.fz-chat-send:hover { background: var(--fz-coral); }

/* =====================================================
   NEWSLETTER FOOTER
===================================================== */
.fz-newsletter-form { display: flex; gap: 8px; max-width: 320px; }
.fz-newsletter-input { flex: 1; padding: 11px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); font-family: var(--fz-font-body); font-size: 13px; color: white; outline: none; }
.fz-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.fz-newsletter-input:focus { border-color: rgba(255,255,255,.35); }
.fz-newsletter-btn { padding: 11px 18px; border-radius: 50px; background: var(--fz-coral); color: white; border: none; font-family: var(--fz-font-body); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; white-space: nowrap; }
.fz-newsletter-btn:hover { background: #d45236; }

/* =====================================================
   FOOTER
===================================================== */
#fz-footer { background: var(--fz-ink); color: white; padding: 56px 0 24px; }
.fz-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px,4vw,48px); margin-bottom: 48px; }
.fz-footer-logo { font-family: var(--fz-font-head); font-size: 28px; font-weight: 700; margin-bottom: 12px; color: white; letter-spacing: -.02em; display: block; }
.fz-footer-logo span { color: var(--fz-coral); }
.fz-footer-logo img { max-height: 44px; width: auto; margin-bottom: 12px; display: block; filter: brightness(0) invert(1); }
.fz-footer-logo img { max-height: 36px; width: auto; margin-bottom: 10px; }
.fz-footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 260px; margin-bottom: 18px; }
.fz-footer-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.fz-footer-badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: 5px 11px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .05em; }
.fz-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.fz-social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s; color: rgba(255,255,255,.5); }
.fz-social-link:hover { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.3); }
.fz-footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; display: block; }
.fz-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.fz-footer-col a:hover { color: white; }
.fz-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; gap: 12px; }
.fz-footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.fz-footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fz-footer-legal-link { font-size: 11px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.fz-footer-legal-link:hover { color: rgba(255,255,255,.7); }
.fz-payment-logos { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.fz-payment-logo { height: 22px; border-radius: 4px; overflow: hidden; }
.fz-payment-logo img { height: 100%; width: auto; }
.fz-payment-logo-text { height: 22px; background: rgba(255,255,255,.1); border-radius: 4px; padding: 0 8px; display: flex; align-items: center; font-size: 9px; font-weight: 700; color: rgba(255,255,255,.45); }

/* =====================================================
   CUSTOMER ACCOUNT
===================================================== */
.fz-account-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 48px 0; align-items: start; }
.fz-account-sidebar { background: var(--fz-warm); border-radius: var(--fz-r-lg); padding: 24px; border: 1px solid var(--fz-border); position: sticky; top: calc(var(--fz-nav-h) + var(--fz-ann-h) + 12px); }
.fz-account-sidebar-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--fz-coral); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: white; margin-bottom: 12px; overflow: hidden; }
.fz-account-sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fz-account-name { font-family: var(--fz-font-head); font-size: 18px; font-weight: 700; color: var(--fz-ink); margin-bottom: 4px; }
.fz-account-email { font-size: 12px; color: var(--fz-ink60); margin-bottom: 20px; }
.fz-account-menu a { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--fz-ink60); padding: 10px 12px; border-radius: var(--fz-r); transition: all .2s; margin-bottom: 2px; text-decoration: none; }
.fz-account-menu a:hover, .fz-account-menu a.active { background: var(--fz-coral-l); color: var(--fz-coral); }
.fz-account-content { background: var(--fz-warm); border-radius: var(--fz-r-lg); padding: 28px; border: 1px solid var(--fz-border); }
/* Order card */
.fz-order-card { border: 1px solid var(--fz-border); border-radius: var(--fz-r-lg); overflow: hidden; margin-bottom: 16px; }
.fz-order-head { background: var(--fz-cream); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.fz-order-num { font-family: var(--fz-font-head); font-size: 16px; font-weight: 700; color: var(--fz-ink); }
.fz-order-status { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.fz-order-status.processing { background: #FEF9C3; color: #854D0E; }
.fz-order-status.shipped { background: var(--fz-sky-l); color: #1d4ed8; }
.fz-order-status.delivered { background: var(--fz-sage-l); color: #166534; }
/* Ludic order progress */
.fz-order-progress { padding: 20px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.fz-order-progress::before { content: ''; position: absolute; top: 50%; left: 10%; right: 10%; height: 2px; background: var(--fz-border); z-index: 0; transform: translateY(-50%); }
.fz-progress-fill { position: absolute; top: 50%; left: 10%; height: 2px; background: var(--fz-sage); z-index: 0; transform: translateY(-50%); transition: width .8s ease; }
.fz-order-step { display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 1; flex: 1; }
.fz-order-step-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--fz-border); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .3s; border: 2px solid white; }
.fz-order-step.done .fz-order-step-icon { background: var(--fz-sage); }
.fz-order-step.active .fz-order-step-icon { background: var(--fz-coral); animation: fzPulse 1.5s ease-in-out infinite; }
.fz-order-step-label { font-size: 10px; font-weight: 600; color: var(--fz-ink60); text-align: center; white-space: nowrap; }
.fz-order-step.done .fz-order-step-label, .fz-order-step.active .fz-order-step-label { color: var(--fz-ink); font-weight: 700; }
.fz-order-items { padding: 14px 20px; border-top: 1px solid var(--fz-border); }
.fz-order-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.fz-order-item-img { width: 44px; height: 44px; border-radius: 8px; background: var(--fz-cream); overflow: hidden; flex-shrink: 0; }
.fz-order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.fz-order-item-name { font-size: 13px; font-weight: 600; color: var(--fz-ink); }
.fz-order-item-price { font-size: 13px; font-weight: 700; color: var(--fz-coral); margin-left: auto; }

/* =====================================================
   WOOCOMMERCE OVERRIDES
===================================================== */
/* Remove default WC styles, replace with ours */
.woocommerce-notices-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top: none !important; border-left: none !important; background: var(--fz-sage-l) !important; border-radius: var(--fz-r) !important; padding: 14px 20px !important; font-family: var(--fz-font-body) !important; font-size: 14px !important; color: var(--fz-ink) !important; margin-bottom: 20px !important; }
.woocommerce-error { background: #FEF2F2 !important; color: #DC2626 !important; }
/* One-page checkout */
.fz-checkout-wrap { display: grid; grid-template-columns: 1fr 420px; gap: 32px; padding: 48px 0; align-items: start; }
.fz-checkout-form { background: var(--fz-warm); border-radius: var(--fz-r-xl); padding: 32px; border: 1px solid var(--fz-border); }
.fz-checkout-form h2 { font-size: 20px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--fz-border); }
.fz-checkout-section { margin-bottom: 28px; }
.fz-checkout-section-title { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fz-ink60); margin-bottom: 16px; }
.fz-checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fz-checkout-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fz-checkout-field label { font-size: 12px; font-weight: 700; color: var(--fz-ink60); letter-spacing: .04em; }
.fz-checkout-trust { display: flex; gap: 12px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--fz-border); margin-top: 16px; }
.fz-checkout-trust span { font-size: 11px; font-weight: 600; color: var(--fz-ink60); display: flex; align-items: center; gap: 5px; }
/* Order summary */
.fz-checkout-summary { background: var(--fz-warm); border-radius: var(--fz-r-xl); padding: 28px; border: 1px solid var(--fz-border); position: sticky; top: calc(var(--fz-nav-h) + var(--fz-ann-h) + 12px); }
.fz-checkout-summary h3 { font-size: 18px; margin-bottom: 20px; }
.fz-checkout-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--fz-border); }
.fz-checkout-item-img { width: 50px; height: 64px; border-radius: 10px; background: var(--fz-cream); overflow: hidden; flex-shrink: 0; }
.fz-checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.fz-checkout-item-name { font-size: 13px; font-weight: 700; color: var(--fz-ink); margin-bottom: 3px; }
.fz-checkout-item-price { font-size: 15px; font-weight: 700; color: var(--fz-ink); }
.fz-checkout-totals { margin-top: 14px; }
.fz-checkout-total-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--fz-ink60); }
.fz-checkout-total-row.grand { border-top: 1px solid var(--fz-border); padding-top: 12px; margin-top: 6px; font-size: 16px; font-weight: 700; color: var(--fz-ink); }
.fz-checkout-incentive { background: var(--fz-sage-l); border-radius: var(--fz-r); padding: 12px 16px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--fz-sage); display: flex; align-items: center; gap: 8px; }

/* =====================================================
   SCROLL REVEAL
===================================================== */
.fz-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fz-reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   TOAST NOTIFICATION
===================================================== */
#fz-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--fz-ink); color: white;
  border-radius: 50px; padding: 12px 22px;
  font-size: 13px; font-weight: 600;
  z-index: 9999; transition: transform .4s cubic-bezier(.17,.67,.3,1.3);
  pointer-events: none; white-space: nowrap;
  max-width: calc(100vw - 40px); text-align: center;
}
#fz-toast.show { transform: translateX(-50%) translateY(0); }

/* =====================================================
   RESPONSIVE — TABLET ≤ 900px
===================================================== */
@media (max-width: 900px) {
  .fz-nav-links { display: none; }
  .fz-hamburger { display: flex; }
  .fz-hero { grid-template-columns: 1fr; min-height: auto; }
  .fz-hero-right { min-height: 320px; }
  .fz-incont-grid { grid-template-columns: repeat(2,1fr); }
  .fz-how-grid { grid-template-columns: repeat(2,1fr); }
  .fz-reviews-grid { grid-template-columns: 1fr 1fr; }
  .fz-prod-grid { grid-template-columns: repeat(2,1fr); }
  .fz-product-grid { grid-template-columns: 1fr; gap: 32px; }
  .fz-product-gallery { position: static; }
  .fz-story-grid { grid-template-columns: 1fr; }
  .fz-story-visual { aspect-ratio: 16 / 9; }
  .fz-values-grid { grid-template-columns: 1fr 1fr; }
  .fz-contact-grid { grid-template-columns: 1fr; padding: 40px 0; }
  .fz-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .fz-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fz-footer-legal { gap: 12px; }
  .fz-ing-grid { grid-template-columns: 1fr; }
  .fz-trust-grid { grid-template-columns: repeat(2,1fr); }
  .fz-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .fz-upsell-grid { grid-template-columns: 1fr 1fr; }
  .fz-account-wrap { grid-template-columns: 1fr; }
  .fz-account-sidebar { position: static; }
  .fz-checkout-wrap { grid-template-columns: 1fr; }
  .fz-checkout-summary { position: static; }
}

/* =====================================================
   RESPONSIVE — MOBILE ≤ 600px
===================================================== */
@media (max-width: 600px) {
  :root { --fz-nav-h: 58px; --fz-ann-h: 32px; }
  .fz-btn-nav-desktop { display: none; }
  .fz-hero-right { min-height: 260px; }
  .fz-hero h1 { font-size: clamp(26px, 8vw, 38px); }
  .fz-incont-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .fz-how-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .fz-how-num { font-size: 32px; }
  .fz-reviews-grid { grid-template-columns: 1fr; }
  .fz-prod-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fz-prod-body { padding: 12px 14px 16px; }
  .fz-blog-grid { grid-template-columns: 1fr; }
  .fz-values-grid { grid-template-columns: 1fr; }
  .fz-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .fz-footer-col { padding-top: 0; }
  .fz-footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fz-footer-legal { flex-direction: column; gap: 10px; }
  .fz-footer-legal-link { font-size: 13px; }
  .fz-payment-logos { margin-top: 4px; }
  .fz-footer-grid > div:first-child { grid-column: 1 / -1; }
  .fz-trust-grid { grid-template-columns: 1fr 1fr; }
  .fz-cert-grid { grid-template-columns: 1fr; }
  .fz-upsell-grid { grid-template-columns: 1fr; }
  .fz-qty-row { gap: 7px; }
  .fz-btn-atc, .fz-btn-buy-now { font-size: 13px; padding: 11px 14px; }
  #fz-popup { left: 12px; bottom: 12px; width: calc(100vw - 24px); max-width: 320px; }
  #fz-chat-window { right: 12px; width: calc(100vw - 24px); }
  #fz-chat-btn { bottom: 16px; right: 16px; }
  .fz-checkout-row { grid-template-columns: 1fr; }
  .fz-hero-chip { display: none; }
  .fz-slider-btn { width: 32px; height: 32px; font-size: 13px; }
  .fz-track-steps { padding: 0; }
  .fz-order-progress { padding: 16px 8px; }
  .fz-order-step-label { font-size: 9px; }
}

/* =====================================================
   PRINT
===================================================== */
@media print {
  #fz-announce, #fz-nav, #fz-popup, #fz-chat-btn, #fz-chat-window, #fz-cart-overlay, #fz-cart-drawer, #fz-toast { display: none !important; }
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.fz-contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px,6vw,72px); align-items: start; }
.fz-contact-section-title { font-size: clamp(20px,2.2vw,28px); margin-bottom: 24px; }
.fz-contact-left {}
.fz-contact-right {}
.fz-contact-hint { background: var(--fz-sage-l); border-radius: var(--fz-r-lg); padding: 16px 20px; margin-top: 20px; }
.fz-contact-hint p { font-size: 13px; color: var(--fz-ink60); line-height: 1.6; margin: 0; }
.fz-contact-hint a { color: var(--fz-sage); font-weight: 700; }
.fz-contact-success { background: var(--fz-sage-l); border-radius: var(--fz-r); padding: 16px 20px; margin-bottom: 20px; font-weight: 700; color: #2d6a4f; font-size: 14px; }
.fz-contact-error { background: #FEF2F2; border-radius: var(--fz-r); padding: 16px 20px; margin-bottom: 20px; color: #DC2626; font-size: 14px; }
.fz-contact-form {}
.fz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.fz-form-textarea { height: 140px; resize: vertical; margin-bottom: 16px; }
.fz-btn-full { width: 100%; justify-content: center; padding: 15px; }

/* FAQ CTA */
.fz-faq-cta { text-align: center; margin-top: 48px; padding: 40px; background: var(--fz-warm); border-radius: var(--fz-r-xl); border: 1px solid var(--fz-border); }
.fz-faq-cta p { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: var(--fz-ink); }

@media (max-width: 768px) {
  .fz-contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .fz-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fz-contact-layout { gap: 24px; }
}

/* =====================================================
   PRODUCT CARD V2 — Collection page
===================================================== */
.fz-prod-card-v2 {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.17,.67,.3,1.05), box-shadow .35s ease;
  border: 1px solid var(--fz-border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
}
.fz-prod-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(28,25,23,.14);
  border-color: transparent;
}

/* Image zone */
.fz-card-img {
  position: relative;
  aspect-ratio: var(--fz-card-ratio, 3/4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fz-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.17,.67,.3,1.05);
  display: block;
}
.fz-prod-card-v2:hover .fz-card-photo { transform: scale(1.07); }
.fz-card-emoji-wrap { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.fz-card-emoji { font-size: 72px; }

/* Badge top-left */
.fz-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  color: white;
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Low stock chip */
.fz-card-stock-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  background: white;
  color: var(--fz-coral);
  border-radius: 50px;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  animation: fzPulse 2s ease-in-out infinite;
}

/* Hover overlay with Add to cart */
.fz-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 4;
}
.fz-prod-card-v2:hover .fz-card-hover-overlay { opacity: 1; }
.fz-card-quick-add {
  background: white;
  color: var(--fz-ink);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--fz-font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(8px);
  transition: transform .3s ease, background .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.fz-prod-card-v2:hover .fz-card-quick-add { transform: translateY(0); }
.fz-card-quick-add:hover { background: var(--fz-coral); color: white; }

/* Card body */
.fz-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Timer */
.fz-card-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FEF3C7;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 2px;
}
.fz-card-timer-count { font-variant-numeric: tabular-nums; font-weight: 700; }

/* Stars */
.fz-card-stars { display: flex; align-items: center; gap: 5px; }
.fz-card-stars-icons { color: var(--fz-gold); font-size: 13px; letter-spacing: 1px; }
.fz-card-stars-count { font-size: 11px; color: var(--fz-ink60); font-weight: 600; }

/* Name */
.fz-card-name {
  font-family: var(--fz-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fz-ink);
  letter-spacing: -.02em;
  line-height: 1.3;
}
.fz-card-sub { font-size: 12px; color: var(--fz-ink60); line-height: 1.5; margin: 0; }

/* Footer: price + ATC button */
.fz-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}
.fz-card-price {
  font-family: var(--fz-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fz-ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.fz-card-price del { font-size: 13px; color: var(--fz-ink30); font-weight: 400; font-family: var(--fz-font-body); }
.fz-card-discount {
  background: #DCFCE7;
  color: #166534;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  font-family: var(--fz-font-body);
}
.fz-card-atc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fz-ink);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 12px rgba(28,25,23,.2);
}
.fz-card-atc-btn:hover { background: var(--fz-coral); transform: scale(1.1); }
.fz-card-atc-btn svg { pointer-events: none; }

/* Responsive */
@media (max-width: 900px) {
  .fz-card-name { font-size: 15px; }
  .fz-card-price { font-size: 17px; }
}
@media (max-width: 600px) {
  .fz-card-hover-overlay { display: none; }
  .fz-card-img { aspect-ratio: 4/3; }
  .fz-card-body { padding: 12px 14px 14px; gap: 4px; }
  .fz-card-name { font-size: 14px; }
  .fz-card-price { font-size: 16px; }
  .fz-card-atc-btn { width: 36px; height: 36px; }
}

/* =====================================================
   REVIEWS — Product page tab
===================================================== */
.fz-reviews-section { max-width: 760px; }
.fz-reviews-head { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--fz-border); }
.fz-reviews-score-block { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.fz-reviews-score-num { font-family: var(--fz-font-head); font-size: 52px; font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--fz-ink); }
.fz-reviews-score-stars { color: var(--fz-gold); font-size: 20px; letter-spacing: 3px; }
.fz-reviews-score-count { font-size: 13px; color: var(--fz-ink60); font-weight: 600; }
.fz-reviews-verified { font-size: 11px; color: var(--fz-sage); font-weight: 700; }
.fz-reviews-list { display: flex; flex-direction: column; gap: 24px; }
.fz-review-single { background: var(--fz-warm); border: 1px solid var(--fz-border); border-radius: var(--fz-r-lg); padding: 20px 22px; }
.fz-review-single-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fz-review-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: white; flex-shrink: 0; }
.fz-review-meta { flex: 1; }
.fz-review-author-name { font-size: 14px; font-weight: 700; color: var(--fz-ink); }
.fz-review-loc { font-weight: 400; color: var(--fz-ink60); }
.fz-review-stars-row { font-size: 13px; display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.fz-review-verified-chip { background: #DCFCE7; color: #166534; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 50px; }
.fz-review-text { font-size: 14px; color: var(--fz-ink60); line-height: 1.75; font-style: italic; margin: 0; }

/* =====================================================
   INGREDIENTS TAB
===================================================== */
.fz-ingredients-wrap { max-width: 640px; }
.fz-ingredients-list { font-size: 14px; color: var(--fz-ink60); line-height: 1.8; margin-bottom: 16px; }
.fz-ingredients-note { display: inline-flex; align-items: center; gap: 8px; background: var(--fz-sage-l); color: var(--fz-sage); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 50px; }

/* HOW TO USE steps */
.fz-use-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; max-width: 600px; }
.fz-use-steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--fz-ink); line-height: 1.6; padding: 14px 18px; background: var(--fz-warm); border-radius: var(--fz-r); border: 1px solid var(--fz-border); }
.fz-use-steps li::before { content: counter(step); counter-increment: step; background: var(--fz-coral); color: white; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.fz-use-steps { counter-reset: step; }
