/*-----------------------------------------------------------------------------------

    Project : Fitness Fuel - Health & Fitness Supplement Store
    File    : UI refresh - unified dark theme (loaded LAST on every page)

    Design system (UI/UX Pro Max):
      style       Dark Mode (OLED) - layered near-black surfaces, hairline borders,
                  one accent glow behind the primary action; AAA-friendly contrast
      type        Barlow Condensed (display) + Barlow (text) - "sports, athletic"
      colour      yellow  = action + ratings   (#EDC001 on #0A0D0C text)
                  green   = success / positive (#39D353)
                  text    #F2F5F3 / #BAC3BE / #8E9993 (>= 4.5:1 on every surface)
      spacing     8pt scale, section rhythm clamp(72px, 9vw, 128px)
      motion      150-300ms micro-interactions, transform/opacity only,
                  cubic-bezier(.16,1,.3,1), prefers-reduced-motion respected
      touch       interactive targets >= 44px

    Remove the <link> to this file to return to the previous look.

    00. Tokens            10. Trust / feature
    01. Base + a11y       11. FAQ
    02. Type + headers    12. Reviews
    03. Buttons           13. Gallery
    04. Header + panels   14. Contact
    05. Section rhythm    15. Newsletter + footer
    06. Hero              16. Shop page
    07. Categories        17. Overlays (modals, cart)
    08. About             18. Responsive
    09. Product cards     19. Reduced motion

-----------------------------------------------------------------------------------*/

/*----------------------------------------*/
/*  00. Tokens
/*----------------------------------------*/
:root {
  --ff-font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --ff-font-text: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ff-bg: #07100C;
  --ff-bg-alt: #0A1410;
  --ff-surface: #101A16;
  --ff-surface-2: #16221D;
  --ff-line: rgba(255, 255, 255, 0.08);
  --ff-line-2: rgba(255, 255, 255, 0.16);

  --ff-text: #F2F5F3;
  --ff-text-2: #BAC3BE;
  --ff-text-3: #8E9993;

  --ff-accent: var(--ff-green, #EDC001);       /* fills: buttons, badges, active dots */
  --ff-accent-ink: #EDC001;                     /* yellow used as text / icon colour */
  --ff-star: #EDC001;                           /* rating stars */
  --ff-focus: #EDC001;                          /* focus ring */
  --ff-accent-hi: #FFD21A;
  --ff-on-accent: #0A0D0C;
  --ff-accent-soft: rgba(237, 192, 1, 0.12);
  --ff-success: #39D353;
  --ff-success-text: #5FE078;

  --ff-radius-sm: 12px;
  --ff-radius: 18px;
  --ff-radius-lg: 26px;
  --ff-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ff-dur: 220ms;
  --ff-section-y: clamp(72px, 9vw, 128px);
  --ff-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  --ff-glow: 0 10px 30px -8px rgba(237, 192, 1, 0.45);

  /* template tokens -> dark theme */
  --eg-heading-font-family: var(--ff-font-display);
  --eg-body-font-family: var(--ff-font-text);
  --eg-font-1-family: var(--ff-font-display);
  --eg-font-2-family: var(--ff-font-text);
  --eg-font-3-family: var(--ff-font-text);
  --eg-font-4-family: var(--ff-font-text);
  --eg-font-5-family: var(--ff-font-text);
  --eg-heading-primary: var(--ff-text);
  --eg-text-body: var(--ff-text-3);
  --eg-border-primary: var(--ff-line);
  --eg-border-4: var(--ff-line);
  --eg-common-white-2: var(--ff-surface);
}

/*----------------------------------------*/
/*  01. Base + accessibility
/*----------------------------------------*/
html {
  background: var(--ff-bg);
  color-scheme: dark;
  scroll-padding-top: 96px;
}

body {
  background: var(--ff-bg);
  color: var(--ff-text-2);
  font-family: var(--ff-font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

p {
  font-family: var(--ff-font-text);
  color: var(--ff-text-2);
  line-height: 1.65;
}

a,
button,
[role="button"],
label,
summary {
  cursor: pointer;
  touch-action: manipulation;
}

::selection {
  background: var(--ff-accent);
  color: var(--ff-on-accent);
}

/* one visible, consistent focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--ff-focus);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

/* components built earlier used a green ring - keep one focus colour site-wide */
[class*="ff-"]:focus-visible,
.eg-btn:focus-visible,
.accordion-button:focus-visible {
  outline-color: var(--ff-focus) !important;
}

.ff-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ff-accent);
  color: var(--ff-on-accent);
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform var(--ff-dur) var(--ff-ease);
}

.ff-skip:focus {
  color: var(--ff-on-accent);
  transform: none;
}

/* prices, counts and timers never jitter */
.eg-product__price,
.ff-showcase__price,
.ff-pd__price,
.ff-cart__price,
.ff-cart__subtotal,
.ff-qty__value,
.ff-rating__value,
.eg-product__rating-count {
  font-variant-numeric: tabular-nums;
}

#loading {
  background-color: var(--ff-bg);
}

.eg-loader-spin {
  color: var(--ff-accent-ink);
}

/*----------------------------------------*/
/*  02. Type + section headers
/*----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-font-display);
  color: var(--ff-text);
  font-weight: 700;
  letter-spacing: 0.005em;
}

.eg-section {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.ff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ff-accent-ink);
  font-family: var(--ff-font-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ff-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.text-center .ff-eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eg-section__title,
.theme-bg .eg-section__title {
  display: block;
  margin-bottom: 0;
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.eg-section p {
  max-width: 56ch;
  margin: 16px auto 0;
  color: var(--ff-text-3);
  font-size: 17px;
}

/*----------------------------------------*/
/*  03. Buttons
/*----------------------------------------*/
/* the template's diagonal "sweep" animates height to 400%; replaced with a
   transform/colour transition that stays inside the button's box */
.eg-btn::after {
  display: none !important;
}

.eg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--ff-accent);
  border-radius: 999px;
  background: var(--ff-accent);
  box-shadow: var(--ff-glow);
  color: var(--ff-on-accent);
  font-family: var(--ff-font-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color var(--ff-dur) ease, border-color var(--ff-dur) ease, color var(--ff-dur) ease,
    box-shadow var(--ff-dur) ease, transform var(--ff-dur) var(--ff-ease);
}

.eg-btn span {
  padding-left: 0 !important;
}

.eg-btn:hover,
.ff-showcase .eg-btn:hover,
.ff-pd .eg-btn:hover,
.ff-cart .eg-btn:hover {
  background: var(--ff-accent-hi);
  border-color: var(--ff-accent-hi);
  color: var(--ff-on-accent);
  box-shadow: 0 14px 34px -8px rgba(237, 192, 1, 0.55);
}

.eg-btn:active {
  transform: scale(0.97);
}

/* secondary buttons: hairline outline on dark */
.eg-btn.ff-btn-outline,
.eg-btn.ff-btn-ghost,
.eg-btn.about-btn,
.theme-bg .eg-btn.ff-btn-outline {
  background: transparent;
  border-color: var(--ff-line-2);
  box-shadow: none;
  color: var(--ff-text);
}

.eg-btn.ff-btn-outline:hover,
.eg-btn.ff-btn-ghost:hover,
.eg-btn.about-btn:hover,
.theme-bg .eg-btn.ff-btn-outline:hover,
.ff-showcase .eg-btn.ff-btn-outline:hover,
.ff-pd .eg-btn.ff-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--ff-text);
  box-shadow: none;
  color: var(--ff-text);
}

.eg-btn.is-added,
.ff-showcase .eg-btn.is-added,
.ff-pd .eg-btn.is-added {
  background: var(--ff-success);
  border-color: var(--ff-success);
  box-shadow: 0 10px 30px -8px rgba(57, 211, 83, 0.45);
  color: var(--ff-on-accent);
}

/*----------------------------------------*/
/*  04. Header + panels
/*----------------------------------------*/
.header-sticky {
  background: rgba(7, 16, 12, 0.92);
  border-bottom: 1px solid var(--ff-line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header-sticky {
    background: rgba(7, 16, 12, 0.78);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    backdrop-filter: saturate(140%) blur(14px);
  }
}

/* 44px tall hit areas without changing the visual rhythm */
.eg-menu__main-menu .navigation li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--ff-font-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.eg-menu__main-menu .navigation li a.active {
  color: var(--ff-accent-ink);
}

.eg-menu__logo a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.ff-header__call {
  min-height: 44px;
  font-family: var(--ff-font-text);
  letter-spacing: 0.02em;
}

.eg-menu__header-btn a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-font-text);
  letter-spacing: 0.08em;
  box-shadow: var(--ff-glow);
}

.eg-menu__header-btn a:hover {
  background: var(--ff-accent-hi);
  border-color: var(--ff-accent-hi);
}

.eg-menu__header-offCanvas-btn {
  width: 48px;
  height: 48px;
  line-height: 44px;
  background: var(--ff-surface-2);
  border: 1px solid var(--ff-line-2);
}

.eg-menu__header-offCanvas-btn span {
  background: var(--ff-text);
}

.eg-menu__header-offCanvas-btn:hover span {
  background: var(--ff-accent);
}

.eg-header__mobile-toggler {
  width: 52px;
  height: 52px;
  background: var(--ff-surface-2);
  border: 1px solid var(--ff-line-2);
}

.eg-header__mobile-toggler svg path {
  fill: var(--ff-text);
}

.eg-header__mobile-toggler:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
}

.eg-header__mobile-toggler:hover svg path {
  fill: var(--ff-on-accent);
}

/* mobile menu + store-info panels: dark surfaces instead of white sheets */
.eg-mobile__menu-box,
.eg-header__offCanvas-wrap {
  background: var(--ff-surface);
  border-left: 1px solid var(--ff-line);
  box-shadow: none;
}

/* the panels park just off-screen, so a permanent shadow bleeds into the page edge */
.eg-mobile__menu-visible .eg-mobile__menu-box,
.eg-header__offCanvas-visible .eg-header__offCanvas-wrap {
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .eg-mobile__menu-visible .eg-mobile__menu-box,
html[data-theme="light"] .eg-header__offCanvas-visible .eg-header__offCanvas-wrap {
  box-shadow: -30px 0 70px rgba(16, 32, 22, 0.18);
}

.eg-mobile__menu .navigation li {
  border-top: 1px solid var(--ff-line);
}

.eg-mobile__menu .navigation li a {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eg-mobile__menu .navigation li a:hover {
  color: var(--ff-accent-ink);
}

.eg-mobile__close-btn i,
.eg-header__offCanvas-toggle {
  background: var(--ff-surface-2);
}

.eg-mobile__close-btn i {
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: var(--ff-text);
}

.eg-header__offCanvas-toggle i {
  color: var(--ff-text);
}

.eg-mobile__close-btn i:hover,
.eg-header__offCanvas-toggle:hover {
  background: var(--ff-accent);
}

.eg-header__offCanvas-title,
.eg-header__offCanvas-title span {
  display: block;
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.eg-header__offCanvas-title span {
  display: inline;
  color: var(--ff-accent-ink);
}

.eg-header__offCanvas-content p,
.eg-header__offCanvas-contact p {
  color: var(--ff-text-2);
}

.eg-header__offCanvas-contact .number {
  font-family: var(--ff-font-display);
  font-size: 32px;
  font-weight: 700;
}

.eg-header__offCanvas-contact .number a {
  color: var(--ff-text);
}

.eg-header__offCanvas-contact .number a:hover {
  color: var(--ff-accent-ink);
}

.eg-header__offCanvas-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eg-header__offCanvas-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 !important;
  border: 1px solid var(--ff-line-2);
  background: transparent;
  color: var(--ff-text);
}

.eg-header__offCanvas-social a:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  color: var(--ff-on-accent);
}

.eg-header__offCanvas-overlay,
.eg-mobile__menu-backdrop {
  background: rgba(3, 6, 5, 0.72);
}

.ff-cart-btn {
  width: 48px;
  height: 48px;
  background: var(--ff-surface-2);
  border-color: var(--ff-line-2);
}

/*----------------------------------------*/
/*  05. Section rhythm
/*----------------------------------------*/
/* torn-paper edges were white strips between white and red/dark blocks; on a
   continuous dark page they read as rips, so they go */
.eg-banner__bg::after,
.eg-breadcrumb__area::after,
.eg-feature__bg::before,
.eg-feature__bg::after,
.eg-testimonial__bg::before,
.eg-testimonial__bg::after,
.eg-footer__bg::before {
  display: none !important;
}

.brand__area.eg-brand__bg,
.about__area,
.product__area,
.feature__area,
.faq__area,
.ff-reviews,
.eg-instagram__area,
.ff-contact__area {
  position: relative;
  padding-top: var(--ff-section-y) !important;
  padding-bottom: var(--ff-section-y) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: var(--ff-bg);
}

/* alternate a hair-lighter band so sections separate without hard lines */
.about__area,
.feature__area.theme-bg,
.ff-reviews,
.ff-contact__area {
  background: var(--ff-bg-alt) !important;
  background-image: none !important;
  border-top: 1px solid var(--ff-line);
  border-bottom: 1px solid var(--ff-line);
}

.eg-brand__shape-1,
.eg-brand__shape-2,
.eg-faq__shape-2,
.eg-feature__shape-3,
.eg-feature__shape-6,
.eg-testimonial__shape-1,
.eg-testimonial__shape-4 {
  opacity: 0.35;
}

/*----------------------------------------*/
/*  06. Hero
/*----------------------------------------*/
.ff-showcase.eg-banner__bg {
  padding-bottom: 96px;
  background-color: var(--ff-bg);
}

/* soft fade into the next section instead of the torn edge */
.ff-showcase.eg-banner__bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 120px;
  background: linear-gradient(180deg, rgba(7, 16, 12, 0) 0%, var(--ff-bg) 100%);
  pointer-events: none;
}

.ff-showcase__eyebrow {
  color: var(--ff-accent-ink);
  font-size: 13px;
  letter-spacing: 0.24em;
}

.theme-bg .ff-showcase__name,
.ff-showcase__name {
  font-size: clamp(48px, 4.8vw, 88px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

.ff-showcase__category {
  color: var(--ff-text-2);
  font-weight: 700;
  opacity: 1;
}

.theme-bg .ff-showcase__desc,
.ff-showcase__desc {
  color: var(--ff-text-2);
  font-size: 18px;
}

.ff-showcase__price strong {
  font-size: 52px;
  font-weight: 700;
}

.ff-showcase__price s {
  color: var(--ff-text-3);
}

.ff-showcase__save,
.ff-pd__save {
  background: rgba(57, 211, 83, 0.1);
  color: var(--ff-success-text);
  font-size: 13px;
}

.ff-stars {
  color: var(--ff-star);
}

.ff-showcase__specs li {
  min-height: 34px;
  color: var(--ff-text-2);
}

.ff-showcase__specs i,
.ff-showcase__trust i {
  color: var(--ff-accent-ink);
}

.ff-showcase__trust {
  color: var(--ff-text-3);
  font-size: 14px;
}

.ff-showcase__actions .eg-btn {
  min-height: 58px;
  padding: 0 34px;
}

.ff-showcase__arrow,
.ff-showcase__toggle {
  background: var(--ff-surface);
  border-color: var(--ff-line-2);
}

.ff-showcase__arrow {
  width: 52px;
  height: 52px;
}

.ff-showcase__toggle {
  width: 44px;
  height: 44px;
}

.ff-showcase__arrow:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  color: var(--ff-on-accent);
}

/* 44px hit area per dot; the visible bar stays slim */
.ff-showcase__dot {
  height: 44px;
  min-width: 30px;
  justify-content: center;
}

.ff-showcase__dot-fill {
  background: var(--ff-accent);
}

/* full 44x44 dots wherever the controls row has the room */
@media (min-width: 576px) {
  .ff-showcase__dot {
    min-width: 44px;
  }
}

.ff-showcase__floor::before {
  border-bottom-color: rgba(237, 192, 1, 0.35);
}

/*----------------------------------------*/
/*  07. Categories
/*----------------------------------------*/
.ff-category__item {
  position: relative;
  padding: 30px 16px 26px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  background: var(--ff-surface);
  box-shadow: none;
  transition: transform var(--ff-dur) var(--ff-ease), border-color var(--ff-dur) ease, background-color var(--ff-dur) ease;
}

.ff-category__item:hover {
  border-color: rgba(237, 192, 1, 0.45);
  background: var(--ff-surface-2);
  box-shadow: var(--ff-shadow);
  transform: translateY(-4px);
}

.ff-category__icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 18px;
  background: var(--ff-accent-soft);
  color: var(--ff-accent-ink);
  font-size: 26px;
}

.ff-category__item:hover .ff-category__icon {
  background: var(--ff-accent);
  color: var(--ff-on-accent);
}

.ff-category__title {
  margin-bottom: 4px;
  color: var(--ff-text);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ff-category__item span.count {
  color: var(--ff-text-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/*----------------------------------------*/
/*  08. About
/*----------------------------------------*/
.eg-about__title {
  margin-bottom: 22px;
  color: var(--ff-text);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.eg-about__content p,
.eg-about__wrapper > span {
  color: var(--ff-text-2);
  font-size: 17px;
}

.eg-about__wrapper > span {
  display: block;
  margin-top: 6px;
  color: var(--ff-text-3);
}

.eg-about__list {
  margin: 26px 0 22px;
  padding: 22px 0 10px;
  border-top: 1px solid var(--ff-line);
  border-bottom: 1px solid var(--ff-line);
}

.eg-about__list-item li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ff-text);
  font-weight: 600;
}

.eg-about__list-item li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-right: 0;
  border-radius: 50%;
  background: var(--ff-accent-soft);
  color: var(--ff-accent-ink);
  font-size: 12px;
}

.eg-about__btn {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.eg-about__btn .eg-btn {
  margin: 0 !important;
}

/*----------------------------------------*/
/*  09. Product cards
/*----------------------------------------*/
.eg-product__item {
  padding: 18px 18px 24px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-surface);
  box-shadow: none;
  transition: transform var(--ff-dur) var(--ff-ease), border-color var(--ff-dur) ease, box-shadow var(--ff-dur) ease;
}

.eg-product__item:hover {
  border-color: rgba(237, 192, 1, 0.4);
  box-shadow: var(--ff-shadow);
  transform: translateY(-4px);
}

/* the product sits on its own lit stage */
.eg-product__thumb {
  height: 250px;
  margin: 0 0 20px;
  padding-top: 38px;
  border-radius: calc(var(--ff-radius-lg) - 8px);
  background: radial-gradient(70% 55% at 50% 78%, rgba(237, 192, 1, 0.14), rgba(237, 192, 1, 0) 70%), var(--ff-surface-2);
}

.eg-product__thumb img {
  max-height: 190px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.5));
  transition: transform 300ms var(--ff-ease);
}

.eg-product__item:hover .eg-product__thumb img {
  transform: translateY(-4px) scale(1.03);
}

.ff-product__badge {
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(237, 192, 1, 0.35);
  background: rgba(7, 16, 12, 0.7);
  color: var(--ff-accent-ink);
}

.eg-product__title {
  min-height: 0;
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eg-product__title a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--ff-text);
}

.eg-product__title a:hover {
  color: var(--ff-accent-ink);
}

.eg-product__price {
  margin-bottom: 0;
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: 28px;
  font-weight: 700;
}

.eg-product__rating {
  gap: 8px;
  margin: 8px 0 18px;
}

.eg-product__rating .ff-stars {
  font-size: 13px;
}

.eg-product__rating .ff-rating__value {
  margin-right: 0;
  color: var(--ff-text);
  font-weight: 700;
}

.eg-product__rating-count {
  margin-left: 0;
  color: var(--ff-text-3);
  font-weight: 500;
}

.eg-product__btn {
  gap: 10px;
}

.eg-product__cart {
  display: inline-flex;
}

.eg-product__cart span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ff-line-2);
  background: var(--ff-surface-2);
  transition: background-color var(--ff-dur) ease, border-color var(--ff-dur) ease;
}

.eg-product__cart span:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
}

.eg-product__btn .eg-btn,
.eg-product__item:hover .eg-product__btn .eg-btn {
  min-height: 48px;
  padding: 0 26px;
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  box-shadow: none;
  color: var(--ff-on-accent);
  font-size: 13px;
}

.eg-product__btn .eg-btn:hover {
  background: var(--ff-accent-hi);
  border-color: var(--ff-accent-hi);
  color: var(--ff-on-accent);
}

.eg-product__arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--ff-line-2);
  background: var(--ff-surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: var(--ff-text);
}

.eg-product__arrow span:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  color: var(--ff-on-accent);
}

.ff-product__note {
  color: var(--ff-text-3);
}

/*----------------------------------------*/
/*  10. Trust / feature
/*----------------------------------------*/
.eg-feature__bg {
  padding-bottom: var(--ff-section-y) !important;
}

.eg-feature__section {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.eg-feature__title,
.theme-bg .eg-feature__title {
  color: var(--ff-text);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ff-feature__text {
  color: var(--ff-text-2);
  font-size: 16px;
  line-height: 1.6;
}

.eg-feature__icon span {
  background: var(--ff-accent-soft);
  transition: background-color var(--ff-dur) ease, box-shadow var(--ff-dur) ease;
}

.eg-feature__icon span i {
  color: var(--ff-accent-ink);
}

.eg-feature__item:hover .eg-feature__icon span {
  background: var(--ff-accent);
  box-shadow: none;
}

.eg-feature__item:hover .eg-feature__icon span i {
  color: var(--ff-on-accent);
}

/*----------------------------------------*/
/*  11. FAQ
/*----------------------------------------*/
.eg-faq__wrapper {
  padding: 0 !important;
  border-radius: 0;
  background: transparent;
}

.eg-faq__wrap {
  max-width: 880px;
  margin: 0 auto;
}

.eg-faq__wrap .accordion {
  display: grid;
  gap: 12px;
  --bs-accordion-bg: transparent;
  --bs-accordion-color: var(--ff-text-2);
}

.eg-faq__wrap .accordion-item,
.eg-faq__wrap .accordion-item.active-item {
  overflow: hidden;
  border: 1px solid var(--ff-line) !important;
  border-radius: var(--ff-radius) !important;
  background: var(--ff-surface);
  box-shadow: none;
  transition: border-color var(--ff-dur) ease;
}

.eg-faq__wrap .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(237, 192, 1, 0.4) !important;
}

.eg-faq__wrap .accordion-button,
.eg-faq__wrap .accordion-button:not(.collapsed) {
  position: relative;
  min-height: 72px;
  padding: 20px 76px 20px 26px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eg-faq__wrap .accordion-button:not(.collapsed) {
  color: var(--ff-accent-ink);
}

.eg-faq__wrap .accordion-button:focus-visible {
  outline: 2px solid var(--ff-focus);
  outline-offset: -2px;
}

.eg-faq__wrap .accordion-body {
  padding: 0 26px 24px !important;
  border: 0 !important;
  box-shadow: none;
}

.eg-faq__wrap .accordion-body p {
  color: var(--ff-text-2);
  font-size: 16px;
}

.eg-faq__wrap .accordion-body a {
  color: var(--ff-accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eg-faq__wrap .accordion-button::after {
  display: none;
}

/* plus that turns into a minus - bars drawn from the centre so they survive any size */
.eg-faq__btn {
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0;
  transform: translateY(-50%);
  border: 1px solid var(--ff-line-2);
  border-radius: 50%;
  transition: background-color var(--ff-dur) ease, border-color var(--ff-dur) ease;
}

.eg-faq__btn::before,
.eg-faq__btn::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 12px !important;
  height: 2px !important;
  margin: 0 !important;
  border-radius: 2px;
  background-color: var(--ff-text) !important;
  transform: translate(-50%, -50%);
  transition: transform var(--ff-dur) var(--ff-ease), background-color var(--ff-dur) ease;
}

.eg-faq__btn::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.eg-faq__wrap .accordion-button:not(.collapsed) .eg-faq__btn {
  background-color: var(--ff-accent);
  border-color: var(--ff-accent);
}

.eg-faq__wrap .accordion-button:not(.collapsed) .eg-faq__btn::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.eg-faq__wrap .accordion-button:not(.collapsed) .eg-faq__btn::before,
.eg-faq__wrap .accordion-button:not(.collapsed) .eg-faq__btn::after {
  background-color: var(--ff-on-accent) !important;
}

.ff-faq__disclaimer {
  border-color: var(--ff-line);
  background: transparent;
  color: var(--ff-text-3);
}

/*----------------------------------------*/
/*  12. Reviews
/*----------------------------------------*/
.ff-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.ff-reviews__head .eg-section__title {
  max-width: 20ch;
}

.ff-reviews__score {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  background: var(--ff-surface);
}

.ff-reviews__score strong {
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.ff-reviews__score > span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ff-reviews__score .ff-stars {
  font-size: 16px;
  letter-spacing: 0;
}

.ff-reviews__score small {
  color: var(--ff-text-3);
  font-family: var(--ff-font-text);
  font-size: 14px;
}

.ff-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ff-review {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 30px 28px 26px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-lg);
  background: var(--ff-surface);
  transition: transform var(--ff-dur) var(--ff-ease), border-color var(--ff-dur) ease;
}

.ff-review:hover {
  border-color: var(--ff-line-2);
  transform: translateY(-4px);
}

.ff-review .ff-stars {
  font-size: 15px;
}

.ff-review__quote {
  flex: 1 1 auto;
  margin: 0;
}

.ff-review__quote p {
  margin: 0;
  color: var(--ff-text);
  font-family: var(--ff-font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
}

.ff-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--ff-line);
}

.ff-review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ff-accent);
  color: var(--ff-on-accent);
  font-family: var(--ff-font-display);
  font-size: 22px;
  font-weight: 700;
}

.ff-review__author strong {
  display: block;
  color: var(--ff-text);
  font-weight: 700;
}

.ff-review__author small {
  display: block;
  color: var(--ff-text-3);
  font-size: 14px;
}

.ff-reviews__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 4vw, 48px);
}

/*----------------------------------------*/
/*  13. Gallery
/*----------------------------------------*/
.eg-instagram__area .eg-section {
  margin-bottom: clamp(28px, 4vw, 44px) !important;
}

.eg-instagram__icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
}

/*----------------------------------------*/
/*  14. Contact
/*----------------------------------------*/
.eg-contact__item,
.ff-gbp {
  border: 1px solid var(--ff-line);
  background: var(--ff-surface);
  box-shadow: none;
}

.eg-contact__item {
  border-radius: var(--ff-radius-lg);
  transition: transform var(--ff-dur) var(--ff-ease), border-color var(--ff-dur) ease;
}

.eg-contact__item:hover {
  border-color: rgba(237, 192, 1, 0.4);
  box-shadow: none;
  transform: translateY(-4px);
}

.eg-contact__item .icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--ff-accent-soft);
  color: var(--ff-accent-ink);
  font-size: 26px;
}

.eg-contact__title {
  margin: 20px 0 10px;
  color: var(--ff-text);
  font-size: 24px;
  font-weight: 700;
}

.eg-contact__item span,
.eg-contact__item a {
  color: var(--ff-text-2);
}

.eg-contact__item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ff-text);
  font-weight: 600;
}

.eg-contact__item a:hover {
  color: var(--ff-accent-ink);
}

.ff-gbp {
  border-radius: var(--ff-radius-lg);
}

.ff-gbp__name {
  color: var(--ff-text);
  font-size: 32px;
}

.ff-gbp__rating {
  color: var(--ff-text);
}

.ff-gbp__rating .stars {
  color: var(--ff-star);
}

.ff-gbp__rating .count,
.ff-gbp__rows li {
  color: var(--ff-text-2);
}

.ff-gbp__type {
  background: var(--ff-accent-soft);
  color: var(--ff-accent-ink);
}

.ff-gbp__rows li {
  border-bottom-color: var(--ff-line);
}

.ff-gbp__rows li i {
  color: var(--ff-accent-ink);
}

.ff-gbp__rows li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: -9px 0;
  color: var(--ff-text);
}

.ff-gbp__rows li a:hover {
  color: var(--ff-accent-ink);
}

/*----------------------------------------*/
/*  15. Newsletter + footer
/*----------------------------------------*/
.eg-newsletter__bg {
  margin-bottom: -80px;
}

.eg-newsletter__wrap {
  border: 1px solid var(--ff-line-2);
  border-radius: var(--ff-radius-lg);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(237, 192, 1, 0.12), rgba(237, 192, 1, 0) 60%),
    var(--ff-surface);
  box-shadow: var(--ff-shadow);
}

.eg-newsletter__title {
  color: var(--ff-text);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
}

.eg-newsletter__form input {
  border: 1px solid var(--ff-line-2);
  background: var(--ff-bg);
  color: var(--ff-text);
  font-family: var(--ff-font-text);
}

.eg-newsletter__form input::placeholder {
  color: var(--ff-text-3);
}

.eg-newsletter__form input:focus {
  border-color: var(--ff-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 192, 1, 0.25);
}

.eg-footer__bg.theme-bg {
  padding-top: 80px;
  background: #050B08 !important;
  background-image: none !important;
  border-top: 1px solid var(--ff-line);
}

.ff-footer__heading,
.eg-footer__widget .eg-feature__title {
  color: var(--ff-text);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ff-footer__about,
.ff-footer__contact li {
  color: var(--ff-text-2);
}

.ff-footer__contact li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: -9px 0;
  color: var(--ff-text);
}

.eg-footer__widget_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 6px;
}

.eg-footer__widget_link a,
.eg-footer__terms a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 !important;
  padding: 0 12px;
  color: var(--ff-text-2);
  font-family: var(--ff-font-text);
  font-size: 14px;
  font-weight: 600;
}

.eg-footer__widget_link a:hover,
.eg-footer__terms a:hover {
  color: var(--ff-accent-ink);
}

.eg-footer__widget_logo a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.eg-footer__widget_social {
  display: flex;
  gap: 10px;
}

.eg-footer__widget_social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 !important;
  border: 1px solid var(--ff-line-2);
  border-radius: 50%;
  color: var(--ff-text);
  font-size: 17px;
}

.eg-footer__widget_social a:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  color: var(--ff-on-accent);
}

.eg-footer__bottom_border {
  border-top-color: var(--ff-line);
}

.eg-footer__copyright span {
  color: var(--ff-text-3);
  font-size: 14px;
}

.theme-bg .eg-footer__opacity-text {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
}

/*----------------------------------------*/
/*  16. Shop page
/*----------------------------------------*/
.eg-breadcrumb__area.theme-bg {
  margin-bottom: 0 !important;
  padding-bottom: 120px;
  background: var(--ff-bg) !important;
  background-image: radial-gradient(70% 90% at 50% 0%, #13201a 0%, rgba(7, 16, 12, 0) 70%) !important;
  border-bottom: 1px solid var(--ff-line);
}

.eg-breadcrumb__content .title {
  font-weight: 800;
  line-height: 0.95;
}

.eg-breadcrumb__item,
.eg-breadcrumb__item a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  justify-content: center;
  min-height: 44px;
  font-family: var(--ff-font-text);
  font-size: 15px;
}

/* the template floats this divider, which does nothing inside flex items */
.eg-breadcrumb__item.active::after {
  float: none;
  order: -1;
  padding: 0 10px 0 4px;
  color: var(--ff-text-3);
}

.eg-breadcrumb__area.theme-bg {
  padding-bottom: 88px;
}

.product-area {
  padding-top: clamp(48px, 6vw, 80px);
  background: var(--ff-bg);
}

.eg-product__categories,
.eg-sidebar__widget,
.ff-shop__help {
  padding: 26px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  background: var(--ff-surface);
}

.eg-product__sidebar-title,
.eg-sidebar__widget-title .title,
.ff-shop__help .title {
  margin-bottom: 14px;
  color: var(--ff-text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eg-product__categories ul {
  margin: 0;
}

.eg-product__categories ul li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--ff-radius-sm);
  color: var(--ff-text-2);
  transition: background-color var(--ff-dur) ease, color var(--ff-dur) ease;
}

.eg-product__categories ul li:hover {
  box-shadow: none;
}

.eg-product__categories ul li:hover a {
  padding-left: 12px;
  background: var(--ff-surface-2);
  color: var(--ff-text);
}

.eg-product__categories ul li a span,
.eg-product__categories ul li:hover a span {
  color: var(--ff-accent-ink);
}

.eg-sidebar__widget-tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eg-sidebar__widget-tagcloud a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--ff-line-2);
  background: transparent;
  color: var(--ff-text-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.eg-sidebar__widget-tagcloud a:hover {
  border-color: var(--ff-accent);
  background: var(--ff-accent);
  color: var(--ff-on-accent);
}

.ff-shop__help p {
  color: var(--ff-text-2);
}

.eg-product__info-top {
  padding: 14px 20px;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  background: var(--ff-surface);
}

.eg-product__info-top p,
.eg-product__info-top .eg-product__showing-text {
  color: var(--ff-text-2);
}

/*----------------------------------------*/
/*  17. Overlays
/*----------------------------------------*/
.ff-modal__title,
.ff-pd .ff-pd__title,
.ff-cart .ff-cart__title {
  font-family: var(--ff-font-display);
  font-weight: 700;
}

.ff-pd__category,
.ff-pd__highlights i {
  color: var(--ff-accent-ink);
}

.ff-toast {
  border-color: rgba(57, 211, 83, 0.4);
}

.ff-toast__action {
  min-height: 40px;
  border-color: var(--ff-line-2);
  color: var(--ff-text);
}

.ff-toast__action:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  color: var(--ff-on-accent);
}

.ff-toast__close {
  width: 40px;
  height: 40px;
}

.ff-cart__empty-icon {
  background: var(--ff-accent-soft);
  color: var(--ff-accent-ink);
}

.ff-qty__btn {
  width: 40px;
  height: 40px;
}

.ff-cart__remove {
  width: 40px;
  height: 40px;
}

.ff-cart__thumb {
  background: radial-gradient(90% 60% at 50% 100%, rgba(237, 192, 1, 0.14), rgba(255, 255, 255, 0.03));
}

/*----------------------------------------*/
/*  18. Responsive
/*----------------------------------------*/
@media (max-width: 1199.98px) {
  .ff-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ff-reviews__grid .ff-review:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  .eg-about__thumb {
    max-width: 520px;
    margin: 0 auto;
  }

  .ff-reviews__head .eg-section__title {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .ff-showcase.eg-banner__bg::before {
    height: 70px;
  }

  .theme-bg .ff-showcase__name,
  .ff-showcase__name {
    font-size: clamp(40px, 12vw, 54px);
  }

  .ff-showcase__price strong {
    font-size: 42px;
  }

  /* controls row must fit a 360px screen: arrows, six dots and the pause button */
  .ff-showcase__controls {
    gap: 6px;
  }

  .ff-showcase__arrow {
    width: 44px;
    height: 44px;
  }

  .ff-showcase__toggle {
    margin-left: 0;
  }

  .ff-showcase__dot {
    min-width: 26px;
    padding: 0 3px;
  }

  .ff-showcase__dot.is-active .ff-showcase__dot-bar {
    width: 24px;
  }

  .eg-section__title,
  .theme-bg .eg-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .ff-reviews__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ff-reviews__score {
    width: 100%;
  }

  .ff-review__quote p {
    font-size: 23px;
  }

  .eg-faq__wrap .accordion-button,
  .eg-faq__wrap .accordion-button:not(.collapsed) {
    padding: 18px 64px 18px 18px !important;
    font-size: 20px;
  }

  .eg-faq__btn {
    right: 16px;
  }

  .eg-faq__wrap .accordion-body {
    padding: 0 18px 20px !important;
  }

  .eg-product__thumb {
    height: 230px;
  }

  .eg-newsletter__wrap {
    padding: 28px 22px;
  }

  .eg-newsletter__form input {
    height: 56px;
  }

  .eg-footer__widget_social {
    justify-content: center;
  }

  .ff-reviews__cta .eg-btn,
  .eg-about__btn .eg-btn {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  19. Reduced motion
/*----------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .eg-btn,
  .ff-category__item,
  .eg-product__item,
  .eg-product__thumb img,
  .ff-review,
  .eg-contact__item,
  .ff-skip {
    transition: none !important;
  }

  .ff-category__item:hover,
  .eg-product__item:hover,
  .eg-product__item:hover .eg-product__thumb img,
  .ff-review:hover,
  .eg-contact__item:hover,
  .eg-btn:active {
    transform: none !important;
  }
}

/*----------------------------------------*/
/*  20. Theme toggle button
/*----------------------------------------*/
.ff-theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ff-line-2);
  border-radius: 50%;
  background: var(--ff-surface-2);
  color: var(--ff-text);
  transition: background-color var(--ff-dur) ease, border-color var(--ff-dur) ease, color var(--ff-dur) ease;
}

.ff-theme-toggle:hover {
  background: var(--ff-accent);
  border-color: var(--ff-accent);
  color: var(--ff-on-accent);
}

.ff-theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 400ms var(--ff-ease);
}

/* dark mode offers the sun (go light); light mode offers the moon (go dark) */
.ff-theme-toggle__moon {
  display: none;
}

html[data-theme="light"] .ff-theme-toggle__sun {
  display: none;
}

html[data-theme="light"] .ff-theme-toggle__moon {
  display: block;
}

.ff-theme-toggle:active svg {
  transform: rotate(-30deg) scale(0.9);
}

/* logos come in a pair - the markup carries both, CSS shows the right one */
.ff-logo-img--light {
  display: none !important;
}

html[data-theme="light"] .ff-logo-img--dark {
  display: none !important;
}

html[data-theme="light"] .ff-logo-img--light {
  display: inline-block !important;
}

@media (max-width: 575.98px) {
  .eg-menu__header-actions {
    gap: 8px;
  }

  .ff-theme-toggle,
  .ff-cart-btn {
    width: 44px;
    height: 44px;
  }
}

/* colours ease across while switching (the toggle script adds this class for ~400ms) */
html.ff-theme-switching body,
html.ff-theme-switching body *,
html.ff-theme-switching body *::before,
html.ff-theme-switching body *::after {
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, fill 300ms ease, box-shadow 300ms ease !important;
}

/*----------------------------------------*/
/*  21. Light mode
/*  Same system on light surfaces. Yellow stays the fill colour; yellow used as
/*  text, stars and focus rings darkens to keep 4.5:1 (text) / 3:1 (graphics).
/*----------------------------------------*/
html[data-theme="light"] {
  color-scheme: light;

  --ff-bg: #F4F5F2;
  --ff-bg-alt: #EAEDE7;
  --ff-surface: #FFFFFF;
  --ff-surface-2: #EFF2EC;
  --ff-line: rgba(12, 24, 17, 0.1);
  --ff-line-2: rgba(12, 24, 17, 0.2);

  --ff-text: #0C1510;
  --ff-text-2: #3B4741;
  --ff-text-3: #5A6660;

  --ff-accent-ink: #7A6200;
  --ff-star: #9C7800;
  --ff-focus: #7A6200;
  --ff-accent-soft: rgba(237, 192, 1, 0.22);
  --ff-success-text: #1C7A32;

  --ff-shadow: 0 26px 50px -30px rgba(16, 32, 22, 0.35);
  --ff-glow: 0 10px 26px -12px rgba(160, 125, 0, 0.55);

  --eg-heading-primary: var(--ff-text);
  --eg-text-body: var(--ff-text-3);
  --eg-border-primary: var(--ff-line);
  --eg-border-4: var(--ff-line);
  --eg-common-white-2: var(--ff-surface);
}

/* the footer stays a dark band in light mode */
html[data-theme="light"] .eg-footer__bg {
  --ff-bg: #07100C;
  --ff-surface: #101A16;
  --ff-surface-2: #16221D;
  --ff-line: rgba(255, 255, 255, 0.08);
  --ff-line-2: rgba(255, 255, 255, 0.16);
  --ff-text: #F2F5F3;
  --ff-text-2: #BAC3BE;
  --ff-text-3: #8E9993;
  --ff-accent-ink: #EDC001;
  --ff-star: #EDC001;
  --ff-focus: #EDC001;
  --eg-heading-primary: #F2F5F3;
  --eg-text-body: #8E9993;
}

/* ---- headings / paragraphs that fitness-fuel.css paints white inside .theme-bg */
html[data-theme="light"] .theme-bg h1,
html[data-theme="light"] .theme-bg h2,
html[data-theme="light"] .theme-bg h3,
html[data-theme="light"] .theme-bg h4,
html[data-theme="light"] .theme-bg h5,
html[data-theme="light"] .theme-bg h6 {
  color: var(--ff-text);
}

html[data-theme="light"] .theme-bg p {
  color: var(--ff-text-2);
}

html[data-theme="light"] .theme-bg .eg-feature__opacity-title,
html[data-theme="light"] .eg-breadcrumb__title-opacity .title {
  -webkit-text-stroke: 1px rgba(12, 24, 17, 0.09);
}

/* ---- header */
html[data-theme="light"] .eg-menu__main-menu .navigation li > a,
html[data-theme="light"] .ff-header__call {
  color: var(--ff-text);
}

html[data-theme="light"] .eg-menu__main-menu .navigation li a:hover,
html[data-theme="light"] .eg-menu__main-menu .navigation li a.active,
html[data-theme="light"] .ff-header__call:hover {
  color: var(--ff-accent-ink);
}

html[data-theme="light"] .header-sticky {
  background: rgba(244, 245, 242, 0.92);
  box-shadow: 0 10px 30px rgba(16, 32, 22, 0.08);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  html[data-theme="light"] .header-sticky {
    background: rgba(244, 245, 242, 0.8);
  }
}

html[data-theme="light"] .ff-cart-btn {
  color: var(--ff-text);
}

html[data-theme="light"] .ff-cart-btn:hover {
  background: var(--ff-text);
  border-color: var(--ff-text);
  color: var(--ff-bg);
}

html[data-theme="light"] .ff-cart-btn__count {
  box-shadow: 0 0 0 2px var(--ff-bg);
}

html[data-theme="light"] .eg-header__offCanvas-overlay,
html[data-theme="light"] .eg-mobile__menu-backdrop {
  background: rgba(12, 24, 17, 0.35);
}

/* ---- hero showcase */
html[data-theme="light"] .ff-showcase,
html[data-theme="light"] .ff-pd {
  --ffs-ink: #0C1510;
  --ffs-muted: #3B4741;
  --ffs-faint: #5A6660;
  --ffs-line: rgba(12, 24, 17, 0.12);
  --ffs-surface: #FFFFFF;
  --ffs-bg: #F4F5F2;
}

html[data-theme="light"] .ff-showcase.eg-banner__bg {
  background-color: var(--ff-bg);
  background-image:
    radial-gradient(55% 55% at 64% 58%, rgba(237, 192, 1, 0.18) 0%, rgba(237, 192, 1, 0) 70%),
    radial-gradient(90% 70% at 50% 0%, #FFFFFF 0%, rgba(244, 245, 242, 0) 60%);
}

html[data-theme="light"] .ff-showcase.eg-banner__bg::before {
  background: linear-gradient(180deg, rgba(244, 245, 242, 0) 0%, var(--ff-bg) 100%);
}

html[data-theme="light"] .theme-bg .ff-showcase__name,
html[data-theme="light"] .ff-showcase__name,
html[data-theme="light"] .ff-showcase__price strong,
html[data-theme="light"] .ff-pd__price strong,
html[data-theme="light"] .ff-pd .ff-pd__title {
  color: var(--ff-text);
}

html[data-theme="light"] .ff-showcase__badge,
html[data-theme="light"] .ff-pd__badge {
  border-color: currentColor;
  color: var(--ff-accent-ink);
}

html[data-theme="light"] .ff-showcase__bgword {
  -webkit-text-stroke: 1px rgba(12, 24, 17, 0.08);
}

html[data-theme="light"] .ff-showcase__glow {
  opacity: 0.28;
}

html[data-theme="light"] .ff-showcase__floor {
  background: radial-gradient(closest-side, rgba(237, 192, 1, 0.16), rgba(237, 192, 1, 0.05) 60%, rgba(237, 192, 1, 0) 100%);
}

html[data-theme="light"] .ff-showcase__floor::before {
  border-color: rgba(12, 24, 17, 0.1);
  border-bottom-color: rgba(122, 98, 0, 0.45);
}

html[data-theme="light"] .ff-showcase__shadow {
  background: radial-gradient(closest-side, rgba(16, 32, 22, 0.45), rgba(16, 32, 22, 0));
}

/* depth dimming still reads as "further away" on light - just gentler */
html[data-theme="light"] .ff-showcase__img {
  filter: brightness(calc(0.4 + var(--ff-bright, 1) * 0.6));
}

html[data-theme="light"] .ff-showcase__dot-bar {
  background: rgba(12, 24, 17, 0.18);
}

html[data-theme="light"] .ff-showcase__dot:hover .ff-showcase__dot-bar {
  background: rgba(12, 24, 17, 0.32);
}

html[data-theme="light"] .ff-showcase__dot.is-active .ff-showcase__dot-bar {
  background: rgba(12, 24, 17, 0.12);
}

/* ---- shop breadcrumb */
html[data-theme="light"] .eg-breadcrumb__area.theme-bg {
  background: var(--ff-bg) !important;
  background-image: radial-gradient(70% 90% at 50% 0%, rgba(237, 192, 1, 0.14) 0%, rgba(244, 245, 242, 0) 70%) !important;
}

html[data-theme="light"] .eg-breadcrumb__content .title,
html[data-theme="light"] .eg-breadcrumb__item,
html[data-theme="light"] .eg-breadcrumb__item a {
  color: var(--ff-text);
}

html[data-theme="light"] .eg-breadcrumb__item.active {
  color: var(--ff-accent-ink);
}

/* ---- product cards */
html[data-theme="light"] .ff-product__badge {
  border-color: rgba(122, 98, 0, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

/* the cart glyph is a white SVG */
html[data-theme="light"] .eg-product__cart span img {
  filter: brightness(0);
}

html[data-theme="light"] .eg-product__arrow span {
  box-shadow: 0 10px 24px rgba(16, 32, 22, 0.12);
}

html[data-theme="light"] .eg-product__thumb {
  background: radial-gradient(70% 55% at 50% 78%, rgba(237, 192, 1, 0.22), rgba(237, 192, 1, 0) 70%), var(--ff-surface-2);
}

html[data-theme="light"] .eg-product__thumb img {
  filter: drop-shadow(0 16px 14px rgba(16, 32, 22, 0.25));
}

/* ---- newsletter */
html[data-theme="light"] .eg-newsletter__wrap {
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(237, 192, 1, 0.2), rgba(237, 192, 1, 0) 60%),
    var(--ff-surface);
}

/* ---- Coming Soon modal (fitness-fuel.js) */
html[data-theme="light"] .ff-modal__backdrop {
  background: rgba(12, 24, 17, 0.45);
}

html[data-theme="light"] .ff-modal__dialog {
  border-color: var(--ff-line);
  background: var(--ff-surface);
  box-shadow: 0 30px 70px rgba(16, 32, 22, 0.25);
}

html[data-theme="light"] .ff-modal__title {
  color: var(--ff-text);
}

html[data-theme="light"] .ff-modal__text {
  color: var(--ff-text-2);
}

html[data-theme="light"] .ff-modal__close {
  border-color: var(--ff-line-2);
  color: var(--ff-text-2);
}

html[data-theme="light"] .ff-modal__icon {
  border-color: rgba(122, 98, 0, 0.35);
  background: var(--ff-accent-soft);
  color: var(--ff-accent-ink);
}

/* ---- product details modal */
html[data-theme="light"] .ff-pd__backdrop {
  background: rgba(12, 24, 17, 0.45);
}

html[data-theme="light"] .ff-pd__dialog {
  box-shadow: 0 40px 90px rgba(16, 32, 22, 0.25);
}

html[data-theme="light"] .ff-pd__media {
  background:
    radial-gradient(80% 50% at 50% 100%, rgba(237, 192, 1, 0.22), rgba(237, 192, 1, 0) 70%),
    linear-gradient(180deg, #F6F7F3 0%, #E9ECE5 100%);
}

html[data-theme="light"] .ff-pd__img {
  filter: drop-shadow(0 30px 24px rgba(16, 32, 22, 0.3));
}

html[data-theme="light"] .ff-pd__close {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 767.98px) {
  html[data-theme="light"] .ff-pd__actions {
    box-shadow: 0 -18px 30px rgba(255, 255, 255, 0.9);
  }
}

/* ---- cart drawer + toast */
html[data-theme="light"] .ff-cart-btn,
html[data-theme="light"] .ff-cart,
html[data-theme="light"] .ff-toast {
  --ffc-ink: #0C1510;
  --ffc-muted: #5A6660;
  --ffc-line: rgba(12, 24, 17, 0.1);
  --ffc-surface: #FFFFFF;
}

html[data-theme="light"] .ff-cart__backdrop {
  background: rgba(12, 24, 17, 0.4);
}

html[data-theme="light"] .ff-cart__panel {
  box-shadow: -30px 0 70px rgba(16, 32, 22, 0.18);
}

html[data-theme="light"] .ff-cart .ff-cart__title,
html[data-theme="light"] .ff-cart__name,
html[data-theme="light"] .ff-cart__price,
html[data-theme="light"] .ff-cart__subtotal strong,
html[data-theme="light"] .ff-qty__value,
html[data-theme="light"] .ff-cart__empty strong,
html[data-theme="light"] .ff-toast__text strong {
  color: var(--ff-text);
}

html[data-theme="light"] .ff-cart__foot {
  background: var(--ff-surface-2);
}

html[data-theme="light"] .ff-cart__remove:hover {
  border-color: currentColor;
  color: var(--ff-accent-ink);
}

html[data-theme="light"] .ff-qty__btn:hover:not([disabled]) {
  background: var(--ff-surface-2);
}

html[data-theme="light"] .ff-qty__btn[disabled] {
  color: rgba(12, 24, 17, 0.3);
}

html[data-theme="light"] .ff-toast {
  border-color: rgba(28, 122, 50, 0.35);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(16, 32, 22, 0.2);
}

html[data-theme="light"] .ff-toast.is-warning {
  border-color: rgba(122, 98, 0, 0.45);
}

html[data-theme="light"] .ff-toast__close:hover {
  color: var(--ff-text);
}

/*----------------------------------------*/
/*  22. Live stock states (rendered from the admin inventory)
/*----------------------------------------*/
.ff-product__stock {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--ff-accent);
  color: var(--ff-on-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ff-product__stock--out {
  background: var(--ff-surface);
  border: 1px solid var(--ff-line-2);
  color: var(--ff-text);
}

.eg-product__item.is-out-of-stock .eg-product__thumb img {
  opacity: 0.45;
  filter: grayscale(0.6);
}

.eg-btn.ff-btn-disabled,
.eg-btn.ff-btn-disabled:hover,
.eg-btn[disabled],
.eg-btn[disabled]:hover {
  background: var(--ff-surface-2) !important;
  border-color: var(--ff-line-2) !important;
  box-shadow: none !important;
  color: var(--ff-text-3) !important;
  cursor: not-allowed;
  transform: none !important;
}

.eg-product__rating.ff-rating--new span {
  color: var(--ff-text-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ff-stock-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--ff-accent-ink);
  font-size: 14px;
  font-weight: 600;
}

.ff-stock-note--out {
  color: var(--ff-text-2);
}

.ff-showcase__stock:empty {
  display: none;
}

.ff-showcase__stock .ff-stock-note {
  justify-content: inherit;
}

@media (max-width: 1199.98px) {
  .ff-showcase__stock .ff-stock-note {
    justify-content: center;
  }
}
