/* ==========================================================================
   FLIX CYCLE — main.css
   Production CSS. No prototype-only rules. No dev toolbar styles.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --fc-purple:       #3D2B8E;
  --fc-purple-dark:  #2A1E6A;
  --fc-purple-light: rgba(61, 43, 142, 0.1);
  --fc-gold:         #C6A87C;
  --fc-gold-mid:     #D9C3A1;
  --fc-gold-light:   #F4EAD8;
  --fc-ink:          #17151C;
  --fc-ink-80:       rgba(23, 21, 28, 0.8);
  --fc-ink-50:       rgba(23, 21, 28, 0.5);
  --fc-ink-20:       rgba(23, 21, 28, 0.2);
  --fc-ink-08:       rgba(23, 21, 28, 0.08);
  --fc-warm:         #FAF8F5;
  --fc-white:        #FFFFFF;
  --fc-success:      #22C55E;
  --fc-error:        #EF4444;
  --fc-ease:         cubic-bezier(0.25, 1, 0.5, 1);
  --font-serif:      'Instrument Serif', Georgia, serif;
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--fc-ink);
  background: var(--fc-warm);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; }
img, svg { max-width: 100%; display: block; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
[hidden] { display: none !important; }

/* 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;
}

/* Skip link */
.fc-skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--fc-purple);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
  font-weight: 500;
}
.fc-skip-link:focus-visible { top: 0; outline: 2px solid var(--fc-white); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { line-height: 1.6; }

/* --------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

.text-center { text-align: center; }
.fc-section  { padding: 80px 0; }
.fc-section--white  { background: var(--fc-white); }
.fc-section--dark   { background: var(--fc-ink);   color: var(--fc-white); }
.fc-section--purple { background: var(--fc-purple); color: var(--fc-white); }
.fc-section-title   { margin-bottom: 48px; }
.fc-section-header  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 48px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--fc-ease);
  min-height: 44px;
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--fc-purple);
  outline-offset: 2px;
}
.btn--lg { height: 56px; padding: 0 32px; font-size: 15px; }
.btn--primary   { background: var(--fc-purple); color: var(--fc-white); }
.btn--primary:hover  { background: var(--fc-purple-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(61,43,142,0.35); }
.btn--secondary { background: var(--fc-white); color: var(--fc-ink); border: 1.5px solid var(--fc-ink-20); }
.btn--secondary:hover { border-color: var(--fc-purple); color: var(--fc-purple); }
.btn--outline   { background: transparent; color: var(--fc-purple); border: 1.5px solid var(--fc-purple); }
.btn--outline:hover   { background: var(--fc-purple-light); }
.btn--gold      { background: var(--fc-gold); color: var(--fc-ink); }
.btn--gold:hover      { filter: brightness(1.05); transform: translateY(-2px); }

/* Chip / Filter Button */
.fc-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--fc-ink-20);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  color: var(--fc-ink);
}
.fc-chip:hover      { border-color: var(--fc-purple); color: var(--fc-purple); }
.fc-chip.is-active,
.fc-chip--active    { background: var(--fc-purple); color: white; border-color: var(--fc-purple); }
.fc-chip--light     { background: rgba(255,255,255,0.12); color: white; border: none; }

/* --------------------------------------------------------------------------
   6. CARDS
   -------------------------------------------------------------------------- */
.fc-card {
  background: var(--fc-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--fc-ink-08);
}

/* --------------------------------------------------------------------------
   7. ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.fc-announcement {
  background: var(--fc-ink);
  color: var(--fc-white);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.fc-announcement__track {
  display: inline-flex;
  width: max-content;
}
.fc-ticker {
  display: inline-flex;
  align-items: center;
  animation: tickerMove 32s linear infinite;
  will-change: transform;
}
.fc-announcement:hover .fc-ticker {
  animation-play-state: paused;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. HEADER
   -------------------------------------------------------------------------- */
.fc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fc-ink-08);
  transition: box-shadow 0.3s, background 0.3s;
}
.fc-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: rgba(250, 248, 245, 0.98);
}

/* Header inner layout — matches header.php structure */
.fc-header__inner {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  gap: 16px;
}
@media (min-width: 900px) {
  .fc-header__inner { grid-template-columns: auto 1fr auto; }
}
.fc-header__left  { display: flex; align-items: center; }
.fc-header__centre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.fc-header__right,
.fc-header__actions { display: flex; align-items: center; gap: 4px; }

/* Hamburger */
.fc-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.fc-hamburger:hover { background: var(--fc-ink-08); }
.fc-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--fc-ink); border-radius: 2px;
  transition: transform 0.2s;
}
@media (min-width: 900px) { .fc-hamburger { display: none; } }

/* Action buttons (search, account, wishlist, cart) */
.fc-action-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  position: relative;
  color: var(--fc-ink);
  flex-shrink: 0;
}
.fc-action-btn:hover { background: var(--fc-ink-08); }
.fc-action-btn:focus-visible { outline: 2px solid var(--fc-purple); outline-offset: 2px; }

.fc-cart-count {
  position: absolute; top: 3px; right: 3px;
  background: var(--fc-purple); color: white;
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.fc-cart-count:empty { display: none; }

/* Announcement bar (fc-announce used in header.php) */
.fc-announce {
  background: var(--fc-ink); color: var(--fc-white);
  font-size: 12px; font-weight: 500;
  padding: 10px 48px 10px 0;
  overflow: hidden; white-space: nowrap;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.fc-announce span {
  display: inline-block;
  animation: tickerMove 32s linear infinite;
}
.fc-announce__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; opacity: 0.6; transition: opacity 0.2s;
  color: white;
}
.fc-announce__close:hover { opacity: 1; }

/* fc-nav: desktop navigation links ONLY — always hidden on mobile */
.fc-nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 900px) { .fc-nav { display: flex; } }

.fc-nav-links {
  display: none;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
/* WP nav_menu wraps in <ul class="fc-nav-menu"> */
.fc-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-nav-menu li { display: flex; align-items: center; }
.fc-nav-menu li a,
.fc-nav-links > a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 8px 4px;
  margin: 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--fc-ink-80);
  transition: color 0.3s ease;
  text-decoration: none;
}
.fc-nav-menu li a::after,
.fc-nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--fc-ink);
  transition: width 0.3s ease, left 0.3s ease;
}
.fc-nav-menu li a:hover,
.fc-nav-links > a:hover,
.fc-nav-menu li.current-menu-item a { 
  color: var(--fc-ink); 
}
.fc-nav-menu li a:hover::after,
.fc-nav-links > a:hover::after,
.fc-nav-menu li.current-menu-item a::after {
  width: 100%;
  left: 0;
}
@media (min-width: 900px) { .fc-nav-links { display: flex; } }

.fc-logo-wrap { flex-shrink: 0; display: flex; align-items: center; }
.fc-logo-img  { width: 52px; height: 52px; object-fit: contain; }

.fc-nav-icons { display: flex; align-items: center; gap: 4px; }

.fc-icon-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  position: relative;
  flex-shrink: 0;
}
.fc-icon-btn:hover   { background: var(--fc-ink-08); }
.fc-icon-btn:focus-visible { outline: 2px solid var(--fc-purple); outline-offset: 2px; }

.fc-cart-badge {
  position: absolute;
  top: 3px; right: 3px;
  background: var(--fc-purple);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hide mobile menu button on desktop */
.fc-mobile-menu-btn { display: flex; }
@media (min-width: 900px) { .fc-mobile-menu-btn { display: none; } }

/* --------------------------------------------------------------------------
   9. MOBILE NAVIGATION DRAWER
   -------------------------------------------------------------------------- */
.fc-nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--fc-white);
  z-index: 500;
  transition: right 0.35s var(--fc-ease);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.fc-nav-drawer[aria-hidden="false"] { right: 0; }

.fc-nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--fc-ink-08);
}
.fc-nav-drawer__close {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fc-warm);
  transition: background 0.2s;
}
.fc-nav-drawer__close:hover { background: var(--fc-ink-08); }

.fc-nav-drawer__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 24px;
  gap: 4px;
}
.fc-nav-drawer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 18px;
  font-family: var(--font-serif);
  border-bottom: 1px solid var(--fc-ink-08);
  transition: color 0.2s, padding-left 0.2s;
}
.fc-nav-drawer__link:hover { color: var(--fc-purple); padding-left: 8px; }

.fc-nav-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--fc-ink-08);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fc-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.fc-nav-overlay.is-visible { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   10. SEARCH MODAL
   -------------------------------------------------------------------------- */
.fc-search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 600;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.25s;
}
.fc-search-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fc-search-modal__inner {
  background: var(--fc-white);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  padding: 40px;
  position: relative;
  cursor: default;
  transform: translateY(-16px);
  transition: transform 0.3s var(--fc-ease);
}
.fc-search-modal.is-active .fc-search-modal__inner {
  transform: translateY(0);
}

.fc-search-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fc-warm);
  transition: background 0.2s;
}
.fc-search-modal__close:hover { background: var(--fc-ink-08); }

.fc-search-modal__form { position: relative; margin-bottom: 24px; }
.fc-search-modal__input {
  width: 100%;
  font-size: 24px;
  font-family: var(--font-serif);
  border: none;
  border-bottom: 2px solid var(--fc-purple);
  padding: 12px 0;
  outline: none;
  background: transparent;
  color: var(--fc-ink);
}
.fc-search-modal__input::placeholder { color: var(--fc-ink-20); }

.fc-search-modal__results {
  background: var(--fc-warm);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  max-height: 320px;
  overflow-y: auto;
}
.fc-search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fc-ink-08);
  transition: background 0.2s;
  text-decoration: none;
}
.fc-search-result-item:hover { background: var(--fc-gold-light); }
.fc-search-result-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.fc-search-result-item__name { font-weight: 600; font-size: 14px; }
.fc-search-result-item__price { font-size: 13px; color: var(--fc-ink-50); }
.fc-search-empty { padding: 20px; text-align: center; color: var(--fc-ink-50); font-size: 14px; }

.fc-search-modal__suggestions { }
.fc-label-sm {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fc-ink-50);
  margin-bottom: 12px;
}
.fc-chips { display: flex; flex-wrap: wrap; gap: 8px; }

body.search-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   11. HERO SECTION
   -------------------------------------------------------------------------- */
.fc-hero { position: relative; overflow: hidden; }
.fc-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
  min-height: 80vh;
  min-height: 80svh;
  position: relative;
}
@media (min-width: 900px) {
  .fc-hero__inner {
    grid-template-columns: 55% 45%;
    min-height: 88vh;
    min-height: 88svh;
  }
}

.fc-hero__blob {
  position: absolute;
  top: 5%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(61,43,142,0.07) 0%, transparent 70%);
  animation: blobPulse 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.fc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-purple);
  margin-bottom: 20px;
}

/* Hero copy: always visible — never use fc-reveal on above-fold content */
.fc-hero__copy {
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  transform: none !important;
}
.fc-hero__heading { margin-bottom: 16px; }
.fc-hero__heading em { color: var(--fc-gold); font-style: italic; }
.fc-hero__subheadline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fc-purple);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.fc-hero__subtext {
  font-size: 1rem;
  color: var(--fc-ink-50);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.fc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fc-hero__social-proof  { display: flex; align-items: center; gap: 16px; }
.fc-avatar-stack        { display: flex; align-items: center; }
.fc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--fc-white);
  margin-right: -10px;
}
.fc-avatar--1     { background: #D9C3A1; }
.fc-avatar--2     { background: #2A1E6A; }
.fc-avatar--3     { background: #F4EAD8; }
.fc-avatar--count {
  background: var(--fc-ink);
  color: white;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-hero__trust   { display: flex; flex-direction: column; }
.fc-stars         { color: var(--fc-gold); font-size: 14px; }
.fc-hero__visual  { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; }

/* Orbiting nodes */
.fc-orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 5;
}
.fc-orb { position: absolute; }
.fc-orb span {
  display: block;
  background: var(--fc-white);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--fc-ink-08);
  white-space: nowrap;
}
.fc-orb--1 { animation: orbitCW 22s linear infinite; }
.fc-orb--1 span { transform: translate(130px, -60px); }
.fc-orb--2 { animation: orbitCCW 28s linear infinite; }
.fc-orb--2 span { transform: translate(-150px, 40px); }
.fc-orb--3 { animation: orbitCW 19s linear infinite 5s; }
.fc-orb--3 span { transform: translate(50px, -160px); }

@keyframes orbitCW  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.fc-bottle-float {
  position: relative;
  z-index: 10;
  animation: bottleFloat 6s ease-in-out infinite;
}
@keyframes bottleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* --------------------------------------------------------------------------
   12. CSS BOTTLE ART
   -------------------------------------------------------------------------- */
.btl-outer  { width: 96px; height: 240px; position: relative; margin: 0 auto; }
.btl-glass  {
  position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.24) 0%, rgba(220,158,60,.75) 8%, rgba(160,100,20,.88) 30%, rgba(110,65,10,.92) 60%, rgba(70,38,5,.95) 80%, rgba(45,22,3,.97) 100%);
  border-radius: 6px 6px 4px 4px;
  box-shadow: inset 1px 0 0 rgba(255,255,255,.18), inset -1px 0 0 rgba(0,0,0,.25), 0 20px 50px rgba(0,0,0,.3);
}
.btl-glass--amber { background: linear-gradient(110deg, rgba(255,255,255,.24) 0%, rgba(220,158,60,.75) 8%, rgba(160,100,20,.88) 30%, rgba(110,65,10,.92) 60%, rgba(70,38,5,.95) 80%, rgba(45,22,3,.97) 100%); }
.btl-glass--purple { background: linear-gradient(110deg, rgba(255,255,255,.18) 0%, rgba(80,50,160,.7) 10%, rgba(61,43,142,.88) 40%, rgba(42,30,106,.95) 100%); }
.btl-shine-l {
  position: absolute; top: 6px; left: 5px; width: 12px; bottom: 6px;
  background: linear-gradient(180deg,rgba(255,255,255,.52) 0%,rgba(255,255,255,.18) 40%,transparent 100%);
  border-radius: 4px;
  animation: glassShimmer 3.5s ease-in-out infinite;
}
.btl-label {
  position: absolute; top: 40px; left: 7px; right: 7px; height: 130px;
  background: rgba(252,250,246,.96);
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  overflow: hidden;
}
.btl-label::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: labelSheen 4s ease-in-out 2s infinite;
}
.btl-label--sm { top: 20px; height: 80px; }
.btl-label-brand { font-size: 8px; letter-spacing: .14em; color: var(--fc-purple); text-align: center; }
.btl-label-name  { font-size: 6.5px; color: var(--fc-ink); text-align: center; line-height: 1.4; margin: 4px 0; }
.btl-label-vol   { font-size: 5px; color: var(--fc-ink-50); margin-top: 4px; }
.btl-label-sep   { width: 36px; height: .5px; background: var(--fc-ink-20); }
.btl-ring     { position: absolute; bottom: 242px; left: 22px; right: 22px; height: 6px; background: linear-gradient(90deg,#A07830,#E8C87A,#C6A87C,#EDD898,#A07830); border-radius: 1px; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.btl-cap      { position: absolute; bottom: 246px; left: 20px; right: 20px; height: 34px; background: linear-gradient(110deg,#C9A84C,#EDD898,#B8902A,#F0D080,#A07828); border-radius: 4px 4px 2px 2px; box-shadow: 0 2px 8px rgba(0,0,0,.28); }
.btl-cap-shine { position: absolute; top: 4px; left: 4px; width: 6px; bottom: 4px; background: rgba(255,255,255,.3); border-radius: 2px; }
.btl-neck     { position: absolute; bottom: 278px; left: 30px; right: 30px; height: 20px; background: linear-gradient(110deg,rgba(255,255,255,.14),rgba(100,60,10,.9)); border-radius: 3px 3px 0 0; }
.btl-shoulder { position: absolute; bottom: 238px; left: 12px; right: 12px; height: 4px; background: rgba(0,0,0,.15); border-radius: 2px; }
.btl-dropper  { position: absolute; bottom: 296px; left: 50%; transform: translateX(-50%); width: 5px; height: 18px; background: linear-gradient(110deg,rgba(255,255,255,.4),rgba(180,180,200,.6)); border-radius: 2px 2px 1px 1px; }
.btl-bulb     { position: absolute; bottom: 312px; left: 50%; transform: translateX(-50%); width: 11px; height: 10px; background: radial-gradient(ellipse at 40% 30%,#3a3a50,#1a1a28); border-radius: 50%; }

/* Small bottle variant for product cards */
.btl-outer--sm { width: 54px; height: 140px; }

/* Bottle animations */
@keyframes glassShimmer { 0%,100% { opacity: .18; } 50% { opacity: .42; } }
@keyframes labelSheen  { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes blobPulse   { 0%,100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; } }

/* --------------------------------------------------------------------------
   13. TRUST STRIP
   -------------------------------------------------------------------------- */
.fc-trust-strip {
  background: var(--fc-white);
  border-top: 1px solid var(--fc-ink-08);
  border-bottom: 1px solid var(--fc-ink-08);
  padding: 48px 0;
}
.fc-trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 600px) {
  .fc-trust-strip__grid { grid-template-columns: repeat(3, 1fr); }
}
.fc-trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fc-trust-item__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--fc-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.fc-trust-item__title { font-family: var(--font-serif); font-size: 1.25rem; }
.fc-trust-item p { font-size: 14px; color: var(--fc-ink-50); max-width: 240px; }

/* --------------------------------------------------------------------------
   14. PRODUCT GRID
   -------------------------------------------------------------------------- */
.fc-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .fc-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .fc-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 600px) and (max-width: 767px) {
  .fc-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   15. PRODUCT CARD
   -------------------------------------------------------------------------- */
.fc-product-card {
  background: var(--fc-white);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--fc-ease), box-shadow 0.3s var(--fc-ease), border-color 0.3s;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
}
.fc-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--fc-gold-light);
}

.fc-product-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--fc-gold-light);
  color: var(--fc-gold);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fc-product-card__img-link { display: block; }
.fc-product-card__img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}
.fc-product-card__img { width: 100%; height: 100%; object-fit: cover; }
.fc-product-card__bottle-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.fc-product-card__body { display: flex; flex-direction: column; flex: 1; }
.fc-product-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.fc-product-card__title a { color: inherit; }
.fc-product-card__title a:hover { color: var(--fc-purple); }

.fc-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--fc-ink-50);
  margin-bottom: 10px;
}
.fc-product-card__rating .fc-stars { font-size: 12px; }
.fc-product-card__review-count { color: var(--fc-ink-50); }

.fc-product-card__price {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: auto;
}
.fc-product-card__price .amount { font-weight: 600; }
.fc-product-card__price del .amount { font-size: 13px; color: var(--fc-ink-50); font-weight: normal; margin-left: 6px; }

.fc-product-card__atc {
  width: 100%;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   16. SCANNER CTA
   -------------------------------------------------------------------------- */
.fc-scanner-cta { position: relative; overflow: hidden; }
.fc-scanner-cta__bg-orb {
  position: absolute;
  top: -40%; right: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(61,43,142,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.fc-scanner-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
}
@media (min-width: 900px) {
  .fc-scanner-cta__inner { grid-template-columns: 1fr 1fr; }
}
.fc-scanner-cta h2 { margin: 20px 0 24px; }
.fc-scanner-cta__desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.6; max-width: 420px; margin-bottom: 28px; }
.fc-scanner-cta__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.fc-scanner-cta__features li { display: flex; align-items: center; gap: 12px; color: white; font-size: 15px; }
.fc-scanner-cta__features svg { flex-shrink: 0; color: var(--fc-gold); }

/* Phone Mockup */
.fc-phone-mockup { display: flex; justify-content: center; }
.fc-phone {
  width: 260px; height: 520px;
  background: #0F0E13;
  border: 8px solid #2A2830;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.fc-phone__notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0F0E13;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.fc-phone__screen {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--fc-purple-dark), var(--fc-ink));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 24px;
}
.fc-phone__scan-ring {
  width: 150px; height: 150px;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.fc-phone__scan-beam {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--fc-gold);
  box-shadow: 0 0 12px var(--fc-gold);
  animation: scanBeam 2.5s linear infinite;
}
@keyframes scanBeam { 0% { top: 0; } 100% { top: 100%; } }
.fc-phone__label { color: white; font-size: 14px; font-weight: 500; }
.fc-phone__progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.fc-phone__progress-fill {
  width: 70%;
  height: 100%;
  background: var(--fc-gold);
  animation: progressPulse 2s ease-out infinite;
}
@keyframes progressPulse { 0%,100% { width: 65%; } 50% { width: 80%; } }

/* --------------------------------------------------------------------------
   17. INGREDIENTS
   -------------------------------------------------------------------------- */
.fc-ingredients__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .fc-ingredients__grid { grid-template-columns: repeat(4, 1fr); }
}
.fc-ingredient-card__icon { font-size: 40px; margin-bottom: 16px; }
.fc-ingredient-card h3  { font-size: 1.2rem; margin-bottom: 8px; }
.fc-ingredient-card p   { font-size: 13px; color: var(--fc-ink-50); }

/* --------------------------------------------------------------------------
   18. TESTIMONIALS
   -------------------------------------------------------------------------- */
.fc-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .fc-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}
.fc-testimonial { background: var(--fc-warm) !important; }
.fc-testimonial blockquote .fc-stars { font-size: 16px; margin-bottom: 12px; display: block; }
.fc-testimonial blockquote p { font-style: italic; line-height: 1.6; margin-bottom: 20px; }
.fc-testimonial__author { display: flex; align-items: center; gap: 12px; }
.fc-testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--fc-gold-mid); flex-shrink: 0; }
.fc-testimonial__author strong { display: block; font-size: 14px; }
.fc-testimonial__author span   { display: block; font-size: 12px; color: var(--fc-ink-50); }

/* --------------------------------------------------------------------------
   19. NEWSLETTER
   -------------------------------------------------------------------------- */
.fc-newsletter { background: var(--fc-gold-light); text-align: center; }
.fc-newsletter__inner { max-width: 600px; margin: 0 auto; }
.fc-newsletter h2 { margin-bottom: 12px; }
.fc-newsletter p  { color: var(--fc-ink-80); margin-bottom: 32px; }
.fc-newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.fc-newsletter__form .fc-input { flex: 1; min-width: 240px; }

/* Old footer css removed */

/* --------------------------------------------------------------------------
   21. FORM INPUTS
   -------------------------------------------------------------------------- */
.fc-input {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--fc-ink-20);
  border-radius: 8px;
  font-size: 15px;
  background: var(--fc-white);
  color: var(--fc-ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.fc-input:focus-visible { outline: 2px solid var(--fc-purple); outline-offset: 2px; border-color: var(--fc-purple); }
.fc-input::placeholder { color: var(--fc-ink-50); }

/* --------------------------------------------------------------------------
   22. MOBILE BOTTOM TABS — canonical styles in section 35
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   23. BACK TO TOP + CHAT BUTTON
   -------------------------------------------------------------------------- */
.fc-back-top {
  position: fixed;
  bottom: 130px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fc-white);
  color: var(--fc-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid var(--fc-ink-08);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  transform: translateY(10px);
}
.fc-back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (min-width: 900px) { .fc-back-top { bottom: 100px; right: 32px; } }

.fc-chat-btn {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--fc-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(61,43,142,0.4);
  z-index: 100;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fc-chat-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(61,43,142,0.5); }
@media (min-width: 900px) { .fc-chat-btn { bottom: 40px; right: 32px; } }

/* --------------------------------------------------------------------------
   24. TOAST NOTIFICATIONS — canonical styles in section 40
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   25. SCROLL REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.fc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--fc-ease), transform 0.75s var(--fc-ease);
}
.fc-reveal.is-visible { opacity: 1; transform: translateY(0); }

@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;
  }
  .fc-reveal, .fc-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   26. EMPTY STATE
   -------------------------------------------------------------------------- */
.fc-empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--fc-ink-50);
}
.fc-empty-state a { color: var(--fc-purple); text-decoration: underline; }

/* --------------------------------------------------------------------------
   27. LOGO 3D FLOAT ANIMATION
   -------------------------------------------------------------------------- */
.fc-logo-wrap {
  animation: logo3DFloat 8s cubic-bezier(0.45,0.05,0.55,0.95) infinite;
  transform-style: preserve-3d;
}
.fc-logo-wrap:hover {
  animation-play-state: paused;
  transform: perspective(600px) rotateY(12deg) rotateX(6deg) scale(1.08);
  transition: transform 0.4s var(--fc-ease);
}
@keyframes logo3DFloat {
  0%   { transform: perspective(600px) rotateY(0)    rotateX(0)    translateY(0);   }
  20%  { transform: perspective(600px) rotateY(10deg) rotateX(5deg)  translateY(-5px); }
  50%  { transform: perspective(600px) rotateY(-6deg) rotateX(-3deg) translateY(-8px); }
  80%  { transform: perspective(600px) rotateY(8deg)  rotateX(4deg)  translateY(-4px); }
  100% { transform: perspective(600px) rotateY(0)    rotateX(0)    translateY(0);   }
}

/* --------------------------------------------------------------------------
   28. WOOCOMMERCE GLOBAL OVERRIDES
   (Shop page, single product, cart, checkout, account — covered in woocommerce.css)
   -------------------------------------------------------------------------- */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.woocommerce-message { border-top-color: var(--fc-success); background: rgba(34,197,94,0.06); }
.woocommerce-error   { border-top-color: var(--fc-error);   background: rgba(239,68,68,0.06); }
.woocommerce-info    { border-top-color: var(--fc-purple);  background: rgba(61,43,142,0.06); }

/* --------------------------------------------------------------------------
   29. PAGE TEMPLATE
   -------------------------------------------------------------------------- */
/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.fc-page-hero {
  background: linear-gradient(135deg, var(--fc-purple) 0%, var(--fc-purple-dark) 100%);
  padding: 64px 0 48px;
  color: white;
  text-align: center;
}
.fc-page-hero__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.fc-page-hero .fc-eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.fc-page-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0; }
.fc-breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; list-style: none; font-size: 13px; color: var(--fc-ink-50); }
.fc-breadcrumb a { color: var(--fc-ink-50); transition: color 0.2s; }
.fc-breadcrumb a:hover { color: var(--fc-purple); }
.fc-breadcrumb__sep { opacity: 0.4; }
.fc-page-body { padding: 64px 0 80px; }
.fc-page-content { max-width: 800px; }
.fc-prose h2, .fc-prose h3, .fc-prose h4 { margin: 32px 0 16px; }
.fc-prose p  { margin-bottom: 16px; line-height: 1.7; }
.fc-prose ul, .fc-prose ol { margin: 0 0 16px 24px; }
.fc-prose li { margin-bottom: 8px; line-height: 1.6; }
.fc-prose ul { list-style: disc; }
.fc-prose ol { list-style: decimal; }
.fc-prose a  { color: var(--fc-purple); text-decoration: underline; }
.fc-prose a:hover { text-decoration: none; }
.fc-prose blockquote { border-left: 3px solid var(--fc-purple); padding-left: 20px; color: var(--fc-ink-80); font-style: italic; margin: 24px 0; }
.fc-prose img { border-radius: 12px; max-width: 100%; height: auto; margin: 24px 0; }
.fc-prose table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.fc-prose th, .fc-prose td { padding: 12px 16px; border: 1px solid var(--fc-ink-08); font-size: 14px; }
.fc-prose th { background: var(--fc-warm); font-weight: 600; }

/* --------------------------------------------------------------------------
   30. SEARCH PAGE
   -------------------------------------------------------------------------- */
.fc-search-hero { padding: 64px 0 48px; background: var(--fc-white); border-bottom: 1px solid var(--fc-ink-08); }
.fc-search-hero h1 { margin-bottom: 24px; font-size: clamp(1.8rem, 4vw, 3rem); }
.fc-search-hero em { color: var(--fc-purple); font-style: normal; }
.fc-search-bar { display: flex; gap: 12px; max-width: 600px; flex-wrap: wrap; }
.fc-search-bar .fc-input { flex: 1; min-width: 200px; }
.fc-search-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
@media (min-width: 768px) { .fc-search-results-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px)  { .fc-search-results-grid { grid-template-columns: 1fr; } }
.fc-search-result { display: flex; flex-direction: column; gap: 12px; }
.fc-search-result__title { font-size: 1.1rem; }
.fc-search-result__title a:hover { color: var(--fc-purple); }
.fc-search-result__excerpt { font-size: 14px; color: var(--fc-ink-50); flex: 1; }
.fc-search-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--fc-ink-20); font-size: 14px; margin: 0 4px; text-decoration: none; color: var(--fc-ink); transition: all 0.2s; }
.fc-search-pagination .page-numbers:hover { border-color: var(--fc-purple); color: var(--fc-purple); }
.fc-search-pagination .page-numbers.current { background: var(--fc-purple); color: white; border-color: var(--fc-purple); }

/* --------------------------------------------------------------------------
   31. 404 PAGE
   -------------------------------------------------------------------------- */
.fc-404 { min-height: 70vh; display: flex; align-items: center; }
.fc-404__inner { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; padding: 80px 24px; text-align: center; }
@media (min-width: 768px) { .fc-404__inner { grid-template-columns: 1fr 1fr; text-align: left; } }
.fc-404__visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fc-404__number { font-family: var(--font-serif); font-size: clamp(5rem, 15vw, 9rem); color: var(--fc-purple-light); line-height: 1; letter-spacing: -0.05em; position: relative; }
.fc-404__number::before { content: '404'; position: absolute; inset: 0; background: linear-gradient(135deg, var(--fc-purple), var(--fc-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fc-404__copy .fc-eyebrow { margin-bottom: 16px; }
.fc-404__copy h1 { margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.5rem); }
.fc-404__copy p  { color: var(--fc-ink-50); max-width: 440px; margin-bottom: 32px; }
.fc-404__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.fc-404__quick-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fc-ink-50); margin-bottom: 12px; }
.fc-404__quick-links { display: flex; gap: 8px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   32. BLOG CARD (index.php)
   -------------------------------------------------------------------------- */
.fc-blog-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .fc-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.fc-blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.fc-blog-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.fc-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fc-blog-card:hover .fc-blog-card__thumb img { transform: scale(1.04); }
.fc-blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.fc-blog-card__title { font-size: 1.1rem; font-weight: 600; }
.fc-blog-card__title a:hover { color: var(--fc-purple); }
.fc-blog-card__excerpt { font-size: 14px; color: var(--fc-ink-50); flex: 1; }

/* --------------------------------------------------------------------------
   33. NO RESULTS
   -------------------------------------------------------------------------- */
.fc-no-results { text-align: center; padding: 80px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fc-no-results__icon { font-size: 64px; }
.fc-no-results h2 { font-family: var(--font-serif); font-size: 2rem; }
.fc-no-results p  { color: var(--fc-ink-50); max-width: 400px; }
.fc-no-results__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* --------------------------------------------------------------------------
   34. RESPONSIVE — ALL BREAKPOINTS 320px–1920px
   -------------------------------------------------------------------------- */
@media (max-width: 375px) {
  .fc-hero__heading { font-size: 2.2rem; }
  .fc-hero__actions { flex-direction: column; }
  .fc-hero__actions .btn { width: 100%; justify-content: center; }
  .fc-scanner-cta__features { font-size: 14px; }
  .fc-ingredients__grid { grid-template-columns: 1fr; }
  .fc-testimonials__grid { grid-template-columns: 1fr; }
  .fc-product-grid { grid-template-columns: 1fr; }
  .fc-footer-grid { grid-template-columns: 1fr; }
  .fc-404__inner { padding: 48px 16px; }
}
@media (min-width: 376px) and (max-width: 430px) {
  .fc-hero__heading { font-size: 2.5rem; }
  .fc-ingredients__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 431px) and (max-width: 767px) {
  .fc-hero__inner { padding: 60px 16px; }
  .fc-ingredients__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fc-hero__inner { grid-template-columns: 1fr; }
  .fc-hero__visual { min-height: 320px; }
  .fc-scanner-cta__inner { grid-template-columns: 1fr; }
}
img, video, iframe, table { max-width: 100%; }
.fc-product-card__img-wrap { aspect-ratio: 1; height: auto; }

/* --------------------------------------------------------------------------
   35. MOBILE BOTTOM TABS — iOS / Android App Level
   -------------------------------------------------------------------------- */
.fc-bottom-tabs {
  display: none; /* base: hidden. Media query below shows on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--fc-ink-08);
  /* iOS safe area — home bar clearance */
  padding-bottom: env(safe-area-inset-bottom, 0px);
  height: calc(60px + env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: space-around;
}

/* Show on mobile, adjust body padding */
@media (max-width: 899px) {
  .fc-bottom-tabs { display: flex; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .fc-back-top { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

/* Force hidden on desktop */
@media (min-width: 900px) {
  .fc-bottom-tabs { display: none !important; }
}


.fc-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 12px;
  flex: 1;
  min-width: 0;
  color: var(--fc-ink-50);
  text-decoration: none;
  transition: color 0.18s var(--fc-ease), transform 0.18s var(--fc-ease);
  position: relative;
  /* Minimum touch target 44×44 */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.fc-tab-item:active {
  transform: scale(0.92);
}

.fc-tab-item.is-active {
  color: var(--fc-purple);
}

/* Pill indicator behind active icon */
.fc-tab-item.is-active .fc-tab-icon::before {
  content: '';
  position: absolute;
  inset: -4px -8px;
  background: var(--fc-purple-light);
  border-radius: 12px;
  z-index: -1;
}

.fc-tab-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.fc-tab-icon svg {
  transition: stroke 0.18s;
}

.fc-tab-item.is-active .fc-tab-icon svg {
  stroke: var(--fc-purple);
  stroke-width: 2.5;
}

.fc-tab-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}

/* Cart badge in tab bar */
.fc-tab-item .fc-cart-badge {
  top: -2px;
  right: -6px;
  width: 15px;
  height: 15px;
  font-size: 9px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s var(--fc-ease);
}

.fc-tab-item .fc-cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   WhatsApp Floating Chat Button
   -------------------------------------------------------------------------- */
.fc-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 400;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--fc-ease), box-shadow 0.2s;
  text-decoration: none;
}
.fc-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
/* On mobile, push above bottom tabs */
@media (max-width: 899px) {
  .fc-whatsapp-btn {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 48px; height: 48px;
  }
}

/* --------------------------------------------------------------------------
   36. SKELETON LOADING STATES
   -------------------------------------------------------------------------- */
@keyframes fc-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fc-skeleton {
  background: linear-gradient(
    90deg,
    var(--fc-ink-08) 25%,
    var(--fc-ink-20) 50%,
    var(--fc-ink-08) 75%
  );
  background-size: 200% 100%;
  animation: fc-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}

.fc-product-card--skeleton .fc-product-card__img-wrap {
  background: none;
}
.fc-product-card--skeleton .fc-skeleton-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px 12px 0 0;
}
.fc-product-card--skeleton .fc-skeleton-title {
  height: 18px;
  width: 70%;
  margin: 16px 16px 8px;
}
.fc-product-card--skeleton .fc-skeleton-price {
  height: 14px;
  width: 40%;
  margin: 0 16px 16px;
}

/* --------------------------------------------------------------------------
   37. FORM INPUT SYSTEM (enterprise quality)
   -------------------------------------------------------------------------- */
.fc-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: var(--fc-white);
  border: 1.5px solid var(--fc-ink-20);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fc-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.fc-input::placeholder { color: var(--fc-ink-50); }

.fc-input:focus-visible {
  outline: 2px solid var(--fc-purple);
  outline-offset: 2px;
  border-color: var(--fc-purple);
  box-shadow: 0 0 0 3px rgba(61, 43, 142, 0.12);
}

.fc-input:user-invalid,
.fc-input.is-invalid {
  border-color: var(--fc-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.fc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fc-ink-80);
}

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

/* --------------------------------------------------------------------------
   38. GOOGLE LOGIN BUTTON
   -------------------------------------------------------------------------- */
.fc-btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background: var(--fc-white);
  border: 1.5px solid var(--fc-ink-20);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fc-ink);
  cursor: pointer;
  transition: all 0.2s var(--fc-ease);
  text-decoration: none;
}

.fc-btn-google:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 12px rgba(66, 133, 244, 0.18);
}

.fc-btn-google svg { flex-shrink: 0; }

.fc-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--fc-ink-50);
}

.fc-login-divider::before,
.fc-login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--fc-ink-08);
}

/* --------------------------------------------------------------------------
   39. LOADING SPINNER
   -------------------------------------------------------------------------- */
.fc-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--fc-ink-20);
  border-top-color: var(--fc-purple);
  border-radius: 50%;
  animation: fc-spin 0.7s linear infinite;
}

@keyframes fc-spin {
  to { transform: rotate(360deg); }
}

.fc-btn-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.fc-btn-loading::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: fc-spin 0.7s linear infinite;
}

/* --------------------------------------------------------------------------
   40. TOAST NOTIFICATIONS (enterprise)
   -------------------------------------------------------------------------- */
#fc-toast-container {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

@media (min-width: 900px) {
  #fc-toast-container { bottom: 24px; right: 24px; }
}

.fc-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--fc-ink);
  color: var(--fc-white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.25s var(--fc-ease), transform 0.25s var(--fc-ease);
  pointer-events: auto;
}

.fc-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fc-toast--success { background: #14532d; border-left: 3px solid var(--fc-success); }
.fc-toast--error   { background: #450a0a; border-left: 3px solid var(--fc-error); }
.fc-toast--info    { background: var(--fc-purple-dark); border-left: 3px solid var(--fc-gold); }

/* --------------------------------------------------------------------------
   41. MOBILE LAYOUT CORRECTIONS (320px–430px thumb zone)
   -------------------------------------------------------------------------- */
/* ============================================================
   MOBILE CROSS-BROWSER FIX BLOCK
   Covers: 320px-430px — Chrome, Safari, Samsung Internet,
   Firefox, Brave, Edge, Opera, Xiaomi, Realme, Vivo, Oppo
   ============================================================ */
@media (max-width: 430px) {
  /* Announcement bar: no overflow on any browser */
  .fc-announcement { font-size: 11px; padding: 8px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Header: tighter, all browsers */
  .fc-nav { height: 60px; padding: 0 12px; gap: 8px; }
  .fc-logo-img { width: 52px; height: 52px; }

  /* Hero: single column, full width CTAs — fixes Samsung + Xiaomi clumping */
  .fc-hero__inner { padding: 40px 16px 32px; min-height: auto; gap: 32px; }
  .fc-hero__copy { text-align: left; }
  .fc-hero__subtext { max-width: 100%; text-align: left; font-size: 0.95rem; }
  .fc-hero__subheadline { font-size: 1rem; text-align: left; }
  .fc-hero__actions { flex-direction: column; width: 100%; }
  .fc-hero__actions .btn { width: 100%; justify-content: center; }
  .fc-hero__micro-trust { gap: 10px; }
  .fc-hero__trust-row { gap: 6px; }
  .fc-hero__trust-pill { font-size: 11px; padding: 4px 10px; }

  /* Ingredients list: no overflow */
  .fc-hero__ingredients-list { padding-left: 0; }
  .fc-hero__ingredients-list li { font-size: 13px; }

  /* Product grid: 2 columns */
  .fc-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fc-product-card { border-radius: 12px; }
  .fc-product-card__title { font-size: 13px; }
  .fc-product-card__price { font-size: 13px; }

  /* Footer grid: single column */
  .fc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fc-footer-newsletter__form { flex-direction: column; }
  .fc-footer-newsletter__form .btn { width: 100%; }

  /* Buttons: minimum 44px touch target across all mobile browsers */
  .btn { min-height: 44px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

  /* Section spacing: tighter on small screens */
  .fc-section { padding: 56px 0; }
  .fc-guarantee-strip__inner { gap: 20px; }
}

/* 320px — smallest Android phones (Nokia, budget Realme) */
@media (max-width: 360px) {
  .fc-product-grid { grid-template-columns: 1fr 1fr; }
  .fc-nav { height: 56px; }
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .fc-hero__copy { text-align: left; }
}

/* 480px — large phones (Galaxy A54, Pixel 7a) */
@media (min-width: 431px) and (max-width: 600px) {
  .fc-hero__copy { text-align: left; }
  .fc-hero__subtext { max-width: 100%; }
  .fc-hero__actions { flex-direction: row; flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   42. @media (prefers-reduced-motion) — COMPLETE OVERRIDE
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .fc-ticker { animation: none; }
  .fc-logo-wrap { animation: none; }
  .fc-orb { animation: none; }
  .fc-bottle-float { animation: none; }
  .fc-skeleton { animation: none; background: var(--fc-ink-08); }
}

/* --------------------------------------------------------------------------
   43. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .fc-header,
  .fc-announcement,
  .fc-bottom-tabs,
  .fc-back-top,
  .fc-search-modal,
  .fc-nav-drawer,
  .fc-nav-overlay,
  #fc-toast-container,
  .wc-block-cart__submit-container { display: none !important; }

  body { background: white; color: black; }
  a    { text-decoration: underline; color: black; }
}

/* ==========================================================================
   V8 ENTERPRISE ADDITIONS
   ========================================================================== */

/* --------------------------------------------------------------------------
   44. HEADER SCROLL SHRINK
   -------------------------------------------------------------------------- */
.fc-header {
  transition: height 0.3s var(--fc-ease), box-shadow 0.3s, background 0.3s;
}
.fc-header.is-scrolled .fc-logo-img {
  width: 72px;
  height: 72px;
  transition: width 0.3s var(--fc-ease), height 0.3s var(--fc-ease);
}
.fc-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  transition: width 0.3s var(--fc-ease), height 0.3s var(--fc-ease);
}
.fc-nav {
  height: 80px;
  transition: height 0.3s var(--fc-ease);
}
.fc-header.is-scrolled .fc-nav {
  height: 60px;
}

/* --------------------------------------------------------------------------
   45. HERO V8 ENHANCEMENTS
   -------------------------------------------------------------------------- */
.fc-hero__subheadline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fc-purple);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.fc-hero__body {
  font-size: 1rem;
  color: var(--fc-ink-50);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.fc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.fc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fc-purple);
  background: var(--fc-purple-light);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.fc-hero__micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--fc-ink-08);
}

.fc-hero__micro-trust-item,
.fc-hero__micro-trust > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fc-ink-50);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   46. PRODUCT CARD V8 ENHANCEMENTS
   -------------------------------------------------------------------------- */
.fc-product-card {
  overflow: hidden;
}

.fc-product-card__img-wrap {
  overflow: hidden;
  border-radius: 12px;
  background: var(--fc-warm);
}

.fc-product-card__img {
  transition: transform 0.45s var(--fc-ease);
}

.fc-product-card:hover .fc-product-card__img {
  transform: scale(1.04);
}

.fc-product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fc-white);
  border: 1px solid var(--fc-ink-08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.fc-product-card__wishlist:hover {
  background: var(--fc-gold-light);
  border-color: var(--fc-gold);
}
.fc-product-card__wishlist.is-active svg {
  fill: var(--fc-gold);
  stroke: var(--fc-gold);
}

.fc-product-card__tag--sale {
  background: rgba(239,68,68,0.1);
  color: var(--fc-error);
}

.fc-product-card__stock-alert {
  font-size: 11px;
  font-weight: 700;
  color: var(--fc-error);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.fc-product-card__atc {
  background: var(--fc-purple);
  color: white;
  border: none;
}
.fc-product-card__atc:hover {
  background: var(--fc-purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61,43,142,0.3);
  color: white;
}

/* --------------------------------------------------------------------------
   47. WHY FLIX CYCLE SECTION
   -------------------------------------------------------------------------- */
.fc-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .fc-why__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .fc-why__grid { grid-template-columns: 1fr; }
}

.fc-why-card {
  text-align: center;
  padding: 32px 24px;
  transition: transform 0.3s var(--fc-ease), box-shadow 0.3s;
}
.fc-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.fc-why-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.fc-why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.fc-why-card p  { font-size: 13px; color: var(--fc-ink-50); line-height: 1.6; }

/* --------------------------------------------------------------------------
   48. HAIR QUIZ CTA SECTION
   -------------------------------------------------------------------------- */
.fc-quiz-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
}
@media (min-width: 900px) {
  .fc-quiz-cta__inner { grid-template-columns: 1fr 1fr; }
}

.fc-quiz-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
}

.fc-quiz-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fc-quiz-step:last-child { border-bottom: none; }
.fc-quiz-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.fc-quiz-step--done {
  color: rgba(255,255,255,0.85);
}
.fc-quiz-step--done span {
  background: var(--fc-gold);
  color: var(--fc-ink);
  border-color: var(--fc-gold);
  font-weight: 700;
}
.fc-quiz-step--active {
  color: white;
  font-weight: 600;
}
.fc-quiz-step--active span {
  background: white;
  color: var(--fc-purple);
  font-weight: 700;
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

/* --------------------------------------------------------------------------
   49. FEATURED COLLECTION CATEGORY CHIPS
   -------------------------------------------------------------------------- */
.fc-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   50. TRUST PAYMENT STRIP
   -------------------------------------------------------------------------- */
.fc-payment-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}
.fc-payment-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  white-space: nowrap;
}
.fc-payment-trust__item svg {
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   51. ANNOUNCEMENT BAR — item & separator styles
   -------------------------------------------------------------------------- */
.fc-announcement__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.fc-announcement__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  margin: 0 12px;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   52. SCROLL REVEAL STAGGER
   -------------------------------------------------------------------------- */
.fc-reveal:nth-child(1) { transition-delay: 0s; }
.fc-reveal:nth-child(2) { transition-delay: 0.08s; }
.fc-reveal:nth-child(3) { transition-delay: 0.16s; }
.fc-reveal:nth-child(4) { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   53. SECTION EYEBROW SPACING
   -------------------------------------------------------------------------- */
.fc-section-header .fc-eyebrow {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   54. MOBILE HERO V8 POLISH
   -------------------------------------------------------------------------- */
@media (max-width: 899px) {
  .fc-hero__subheadline { font-size: 1rem; }
  .fc-hero__body { font-size: 0.95rem; }
  .fc-hero__badges { gap: 8px; }
  .fc-hero__badge { font-size: 11px; padding: 4px 10px; }
  .fc-hero__micro-trust { gap: 12px; }
  .fc-hero__micro-trust-item { font-size: 11px; }
  .fc-quiz-cta__inner { padding: 60px 16px; }
}

/* --------------------------------------------------------------------------
   55. FOCUS RING SYSTEM (WCAG AA)
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--fc-purple);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--fc-purple);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   56. HIGH CONTRAST + FORCED COLORS
   -------------------------------------------------------------------------- */
@media (forced-colors: active) {
  .fc-bottom-tabs,
  .fc-header {
    border-color: ButtonText;
  }
  .btn--primary {
    forced-color-adjust: none;
  }
}

/* PERFORMANCE FIX: Add prefers-reduced-motion fallback at end */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   V10 ADDITIONS — Do not add duplicates above
   ========================================================================== */

/* Hero ingredient list */
.fc-hero__ingredients {
  margin-bottom: 28px;
}
.fc-hero__ingredients-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fc-ink-50);
  margin-bottom: 10px;
}
.fc-hero__ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-hero__ingredients-list li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fc-ink);
}
.fc-check {
  color: var(--fc-purple);
  font-weight: 700;
  flex-shrink: 0;
}
.fc-note {
  font-size: 11px;
  color: var(--fc-ink-50);
  font-weight: 400;
}

/* Hero trust row pills */
.fc-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.fc-hero__trust-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--fc-purple);
  background: var(--fc-purple-light);
  border-radius: 20px;
  padding: 5px 12px;
  letter-spacing: 0.02em;
}

/* Hero AI label */
.fc-hero__ai-label {
  font-size: 12px;
  color: var(--fc-ink-50);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Guarantee strip */
.fc-guarantee-strip {
  background: var(--fc-warm);
  border-top: 1px solid var(--fc-ink-08);
  border-bottom: 1px solid var(--fc-ink-08);
  padding: 28px 0;
}
.fc-guarantee-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .fc-guarantee-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fc-guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fc-guarantee-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-guarantee-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-ink);
  margin-bottom: 2px;
}
.fc-guarantee-item span {
  font-size: 12px;
  color: var(--fc-ink-50);
  line-height: 1.4;
}

/* How It Works section */
.fc-how-works .fc-section-header {
  margin-bottom: 40px;
}
.fc-how-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .fc-how-works__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  /* Connector line between steps */
  .fc-how-works__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--fc-purple-light) 0%, var(--fc-purple) 50%, var(--fc-purple-light) 100%);
    z-index: 0;
  }
}
.fc-how-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .fc-how-step {
    align-items: center;
    text-align: center;
  }
}
.fc-how-step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fc-purple);
  text-transform: uppercase;
}
.fc-how-step__icon {
  width: 72px;
  height: 72px;
  background: var(--fc-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 3px solid var(--fc-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.fc-how-step h3 {
  font-size: 1.15rem;
  font-family: var(--font-serif);
}
.fc-how-step p {
  font-size: 14px;
  color: var(--fc-ink-50);
  line-height: 1.6;
}

/* Product card: Save amount */
.fc-product-card__save {
  font-size: 12px;
  font-weight: 600;
  color: var(--fc-success);
  margin: 2px 0 4px;
}

/* Product card: Delivery estimate */
.fc-product-card__delivery {
  font-size: 11px;
  color: var(--fc-ink-50);
  margin-bottom: 8px;
}

/* Testimonial avatar with initials */
.fc-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--fc-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-serif);
  color: inherit;
  flex-shrink: 0;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.fc-page-404 { padding: 80px 0 120px; text-align: center; }
.fc-page-404__inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.fc-page-404__message { font-size: 1.1rem; color: var(--fc-ink-50); margin-bottom: 32px; }
.fc-page-404__actions { display: flex; gap: 16px; justify-content: center; margin-top: 24px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.fc-contact-layout { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .fc-contact-layout { grid-template-columns: 1fr 1fr; } }
.fc-contact-info h2 { margin-bottom: 16px; }
.fc-contact-methods { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.fc-contact-method strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fc-ink-50); margin-bottom: 4px; }
.fc-contact-method a { color: var(--fc-purple); font-weight: 500; }
.fc-form__row { margin-bottom: 20px; }
.fc-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--fc-ink); }

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.fc-faq-page { max-width: 800px; margin: 0 auto; padding: 64px 24px; }

/* ==========================================================================
   20. PREMIUM FOOTER (V17)
   ========================================================================== */
.fc-footer {
  background: #111111; /* True dark for luxury feel */
  color: #F7F5F2; /* Canvas color for text */
  padding: 0 0 24px;
  font-size: 14px;
  border-top: 1px solid var(--fc-ink-10);
}

/* Newsletter Section */
.fc-footer__newsletter {
  padding: 64px 24px;
  background: var(--fc-ink);
  color: var(--fc-white);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fc-footer__newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}
.fc-footer__newsletter-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.fc-footer__newsletter-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.fc-footer__form {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.fc-footer__form input {
  flex: 1;
  max-width: 320px;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--fc-white);
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.fc-footer__form input:focus {
  outline: none;
  border-color: var(--fc-white);
}
.fc-footer__form button {
  padding: 0 24px;
  background: var(--fc-white);
  color: var(--fc-ink);
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.fc-footer__form button:hover {
  opacity: 0.9;
}

/* 4-Column Links Section */
.fc-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .fc-footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.fc-footer__brand p {
  color: rgba(255,255,255,0.6);
  margin: 16px 0 24px;
  max-width: 280px;
}
.fc-footer__social {
  display: flex;
  gap: 16px;
}
.fc-footer__social a {
  color: var(--fc-white);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.fc-footer__social a:hover { opacity: 1; }

.fc-footer__head {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: var(--fc-white);
}
.fc-footer__col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.fc-footer__col a:hover {
  color: var(--fc-white);
}

/* Bottom Legal Section */
.fc-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 900px) {
  .fc-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.fc-footer__legal {
  display: flex;
  gap: 24px;
}
.fc-footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.fc-footer__legal a:hover { color: var(--fc-white); }

.fc-footer__payments {
  display: flex;
  gap: 8px;
}
.fc-footer__payments span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.fc-footer__made {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================================================
   WOOCOMMERCE WRAPPER
   ========================================================================== */
.fc-woo-main { padding: 48px 0 80px; min-height: 60vh; }
.fc-woo-main .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.woocommerce-notices-wrapper { margin-bottom: 24px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 500;
}
.woocommerce-message { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.woocommerce-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }
.woocommerce-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ==========================================================================
   CHECKOUT FORM
   ========================================================================== */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .woocommerce-input-wrapper textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--fc-ink-20);
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper select:focus {
  outline: none;
  border-color: var(--fc-purple);
  box-shadow: 0 0 0 3px var(--fc-purple-light);
}
.woocommerce-checkout .form-row label { font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; color: var(--fc-ink); }
.woocommerce-checkout h3 { font-size: 1.25rem; margin: 32px 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--fc-ink-08); }
#payment { background: var(--fc-warm); border-radius: 12px; padding: 24px; margin-top: 24px; }
#payment .payment_methods { list-style: none; margin: 0 0 20px; }
#payment .payment_methods li { padding: 12px 0; border-bottom: 1px solid var(--fc-ink-08); }
#place_order {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--fc-purple);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
#place_order:hover { background: var(--fc-purple-dark); transform: translateY(-1px); }

/* ==========================================================================
   CART TABLE
   ========================================================================== */
.woocommerce-cart-form__contents { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.woocommerce-cart-form__contents th,
.woocommerce-cart-form__contents td { padding: 16px 12px; border-bottom: 1px solid var(--fc-ink-08); text-align: left; }
.woocommerce-cart-form__contents th { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fc-ink-50); }
.cart_item .product-thumbnail img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.cart-subtotal th, .order-total th { font-weight: 700; }
.order-total { font-size: 1.1rem; }
.cart_totals { background: var(--fc-warm); padding: 24px; border-radius: 12px; }
.wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--fc-purple);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 16px;
}
.wc-proceed-to-checkout .checkout-button:hover { background: var(--fc-purple-dark); }

/* ==========================================================================
   MY ACCOUNT
   ========================================================================== */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 48px 0; }
@media (max-width: 767px) { .woocommerce-account .woocommerce { grid-template-columns: 1fr; } }
.woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--fc-ink-80);
  transition: background 0.2s, color 0.2s;
}
.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
  background: var(--fc-purple-light);
  color: var(--fc-purple);
}
.woocommerce-MyAccount-content h2 { margin-bottom: 20px; }

/* ==========================================================================
   MOBILE NAV STRIP — horizontal scrollable quick links (< 900px only)
   ========================================================================== */
.fc-mobile-nav-strip {
  display: none; /* hidden by default, shown on mobile below */
  background: var(--fc-white);
  border-top: 1px solid var(--fc-ink-08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  width: 100vw;
  margin-left: -24px; /* offset header padding if inside inner */
  pointer-events: auto;
}

.fc-mobile-nav-strip__inner {
  display: flex;
  gap: 12px;
  padding: 12px 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  white-space: nowrap;
}

.fc-mobile-nav-strip__inner::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Samsung */
}

.fc-mobile-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid var(--fc-ink-10);
  background: var(--fc-white);
  font-size: 13px;
  font-weight: 500;
  color: var(--fc-ink);
  white-space: nowrap;
  scroll-snap-align: start;
  flex-shrink: 0;
  min-height: 40px;
  transition: all 0.25s var(--fc-ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-x;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.fc-mobile-nav-pill:hover,
.fc-mobile-nav-pill:active {
  background: var(--fc-purple);
  border-color: var(--fc-purple);
  color: var(--fc-white);
  transform: translateY(-1px);
}

/* Show strip ONLY on mobile */
@media (max-width: 899px) {
  .fc-mobile-nav-strip { display: block; }

  /* ABSOLUTE override: desktop nav must NEVER show on mobile */
  .fc-nav,
  .fc-header .fc-nav,
  .fc-header__centre .fc-nav { display: none !important; }
}

/* Hide strip on desktop — desktop uses inline fc-nav in header */
@media (min-width: 900px) {
  .fc-mobile-nav-strip { display: none !important; }
  .fc-nav { display: flex; }
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.woocommerce-breadcrumb,
.fc-breadcrumb {
  font-size: 12px;
  color: var(--fc-ink-50);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.woocommerce-breadcrumb a,
.fc-breadcrumb a {
  color: var(--fc-ink-50);
  text-decoration: none;
  transition: color 0.2s;
}
.woocommerce-breadcrumb a:hover,
.fc-breadcrumb a:hover { color: var(--fc-ink); }

/* ==========================================================================
   WOOCOMMERCE PAGINATION
   ========================================================================== */
.woocommerce-pagination {
  margin: 48px 0 24px;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.woocommerce-pagination ul.page-numbers li a.page-numbers,
.woocommerce-pagination ul.page-numbers li span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--fc-ink-20);
  font-size: 14px;
  font-weight: 500;
  color: var(--fc-ink);
  text-decoration: none;
  transition: all 0.2s;
}
.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
  background: var(--fc-ink);
  color: var(--fc-white);
  border-color: var(--fc-ink);
}
.woocommerce-pagination ul.page-numbers li span.current {
  background: var(--fc-ink);
  color: var(--fc-white);
  border-color: var(--fc-ink);
}
.woocommerce-pagination ul.page-numbers li .prev,
.woocommerce-pagination ul.page-numbers li .next {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
}

/* ==========================================================================
   OUT OF STOCK BADGE
   ========================================================================== */
.fc-product--oos .fc-card__badge { background: var(--fc-ink-50); }

