/* ==========================================================================
   Firefly Elements — tokens mirror the site's active design system.
   ========================================================================== */

:root {
  --ffe-ink: #191414;
  --ffe-ink-70: rgba(25, 20, 20, 0.7);
  --ffe-accent: #EE3538;
  --ffe-accent-dark: #B4262A;
  --ffe-bg: #F7F4F1;
  --ffe-tint: #F2EEEA;
  --ffe-surface: #FFFFFF;
  --ffe-muted: #8A8280;
  --ffe-border: #E8E2DD;
  --ffe-radius: 2px;
  --ffe-shadow: 0 18px 40px -18px rgba(25, 20, 20, 0.22);
  --ffe-max: 1200px;
  --ffe-gutter: 40px;
  --ffe-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ffe-ink);
  background: var(--ffe-surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .elementor-heading-title {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ffe-ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.ffe-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ffe-muted); margin: 0 0 18px;
}

.ffe-empty { color: var(--ffe-muted); font-size: 14px; padding: 32px 0; }

/* Buttons ---------------------------------------------------------------- */

.ffe-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
  padding: 15px 34px; border-radius: var(--ffe-radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background-color 0.22s var(--ffe-ease), color 0.22s var(--ffe-ease), border-color 0.22s var(--ffe-ease);
}

.ffe-btn--solid { background: var(--ffe-accent); color: #fff; }
.ffe-btn--solid:hover, .ffe-btn--solid:focus-visible { background: var(--ffe-accent-dark); color: #fff; }
.ffe-btn--outline { background: transparent; color: var(--ffe-ink); border-color: var(--ffe-ink); }
.ffe-btn--outline:hover, .ffe-btn--outline:focus-visible { background: var(--ffe-accent); color: #fff; }
.ffe-btn--sm { padding: 10px 20px; font-size: 11px; }
.ffe-btn--block { width: 100%; }

/* Hero ------------------------------------------------------------------- */

.ffe-hero {
  display: grid; grid-template-columns: 44fr 56fr;
  min-height: clamp(460px, 56vw, 640px); background: var(--ffe-tint);
}

.ffe-hero__panel {
  display: flex; align-items: center; background: var(--ffe-tint);
  padding: 64px clamp(32px, 5vw, 88px);
}

.ffe-hero__inner { max-width: 460px; }

.ffe-hero__title { font-size: clamp(2.25rem, 3.6vw, 3.5rem); line-height: 1.06; margin: 0 0 20px; }

.ffe-hero__sub {
  font-size: 16px; line-height: 1.65; color: var(--ffe-ink-70);
  margin: 0 0 34px; max-width: 40ch;
}

.ffe-hero__media { position: relative; overflow: hidden; }
.ffe-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }

@media (max-width: 880px) {
  .ffe-hero { grid-template-columns: 1fr; }
  .ffe-hero__panel { padding: 56px 24px; order: 2; }
  .ffe-hero__media { order: 1; min-height: 380px; }
}

/* Section heading -------------------------------------------------------- */

.ffe-sechead { margin: 0 0 40px; }
.ffe-sechead--center { text-align: center; }
.ffe-sechead__title { font-size: clamp(1.6rem, 2.4vw, 2.125rem); margin: 0 0 10px; }
.ffe-sechead__sub { color: var(--ffe-muted); font-size: 15px; line-height: 1.6; margin: 0 auto; max-width: 56ch; }
.ffe-sechead--left .ffe-sechead__sub { margin-left: 0; }

/* Category circles ------------------------------------------------------- */

.ffe-cats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 3vw, 44px); list-style: none; margin: 0; padding: 0;
}

.ffe-cat a { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; color: inherit; }

.ffe-cat__media {
  display: block; width: 168px; height: 168px; border-radius: 50%;
  overflow: hidden; background: var(--ffe-tint); margin-bottom: 14px;
}

.ffe-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ffe-ease); }
.ffe-cat a:hover .ffe-cat__media img { transform: scale(1.07); }

.ffe-cat__name { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 15px; transition: color 0.2s var(--ffe-ease); }
.ffe-cat a:hover .ffe-cat__name { color: var(--ffe-accent); }
.ffe-cat__count { font-size: 13px; color: var(--ffe-muted); }

@media (max-width: 700px) { .ffe-cat__media { width: 116px; height: 116px; } }

/* Banner grid ------------------------------------------------------------ */

.ffe-banners { display: grid; grid-template-columns: repeat(var(--ffe-banner-cols, 3), 1fr); gap: 24px; }

.ffe-banner {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--ffe-radius); aspect-ratio: 4 / 3;
  text-decoration: none; background: var(--ffe-tint);
}

.ffe-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ffe-ease); }
.ffe-banner:hover .ffe-banner__img { transform: scale(1.05); }

.ffe-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(247,244,241,0.94) 0%, rgba(247,244,241,0.72) 34%, rgba(247,244,241,0) 68%);
}

.ffe-banner__copy {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 6px;
  padding: 32px; max-width: 74%;
}

.ffe-banner__label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ffe-muted); }

.ffe-banner__title {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.375rem); line-height: 1.2;
  color: var(--ffe-ink); margin-bottom: 6px;
}

.ffe-banner__cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ffe-ink); border-bottom: 1px solid var(--ffe-ink); padding-bottom: 2px;
  transition: color 0.2s var(--ffe-ease), border-color 0.2s var(--ffe-ease);
}

.ffe-banner:hover .ffe-banner__cta { color: var(--ffe-accent); border-color: var(--ffe-accent); }

@media (max-width: 900px) { .ffe-banners { grid-template-columns: 1fr; } }

/* Product cards ---------------------------------------------------------- */

.ffe-grid { display: grid; grid-template-columns: repeat(var(--ffe-cols, 4), minmax(0, 1fr)); gap: 40px 24px; }

.ffe-card { position: relative; }

.ffe-card__media {
  position: relative; overflow: hidden; background: var(--ffe-tint);
  border-radius: var(--ffe-radius); aspect-ratio: 3 / 4; margin-bottom: 16px;
}

.ffe-card__imglink { display: block; width: 100%; height: 100%; }

.ffe-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.45s var(--ffe-ease), transform 0.7s var(--ffe-ease);
}

.ffe-card__img--hover { opacity: 0; }
.ffe-card:hover .ffe-card__img--hover { opacity: 1; }
.ffe-card:hover .ffe-card__img { transform: scale(1.04); }

.ffe-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ffe-ink); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.03em; padding: 5px 9px; border-radius: var(--ffe-radius); line-height: 1;
}

.ffe-badge--soldout { background: var(--ffe-accent); }
.ffe-badge--inline { position: static; display: inline-block; margin-left: 8px; vertical-align: middle; }

.ffe-card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  background: var(--ffe-surface); color: var(--ffe-ink); border: 0;
  border-radius: var(--ffe-radius); padding: 12px;
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s var(--ffe-ease), transform 0.25s var(--ffe-ease), background-color 0.2s var(--ffe-ease), color 0.2s var(--ffe-ease);
}

.ffe-card:hover .ffe-card__quick, .ffe-card__quick:focus-visible { opacity: 1; transform: translateY(0); }
.ffe-card__quick:hover { background: var(--ffe-accent); color: #fff; }

.ffe-card__body { text-align: center; }

.ffe-card__eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ffe-muted); margin: 0 0 7px;
}

.ffe-card__title { font-size: 14px; font-weight: 600; line-height: 1.42; margin: 0 0 8px; letter-spacing: 0; }
.ffe-card__title a { color: var(--ffe-ink); text-decoration: none; }
.ffe-card__title a:hover { color: var(--ffe-accent); }

.ffe-card__rating { display: flex; justify-content: center; gap: 2px; margin-bottom: 8px; }
.ffe-star { color: var(--ffe-border); font-size: 13px; line-height: 1; }
.ffe-star.is-on { color: #E8A33D; }

.ffe-card__price { font-size: 15px; font-weight: 700; color: var(--ffe-ink); }
.ffe-card__price del { color: var(--ffe-muted); font-weight: 400; margin-right: 7px; opacity: 1; }
.ffe-card__price ins { text-decoration: none; color: var(--ffe-ink); }

.ffe-btn--card {
  margin-top: 14px; width: 100%; background: var(--ffe-accent); color: #fff;
  border-color: var(--ffe-accent); padding: 12px 18px; font-size: 11px;
}

.ffe-btn--card:hover { background: var(--ffe-accent-dark); color: #fff; border-color: var(--ffe-accent-dark); }

/* Cross-sell / "New in store" grid on the Cart page: this is the
   WooCommerce Cart *block* (Gutenberg/Store API), a separate rendering
   path from the PHP shop-loop cards above (ffe_product_card()) - it never
   goes through that hook, so its default WP-button styling is reskinned
   here to match. Scoped to the block's own product-grid class, which only
   ever wraps this specific button. */
.wc-block-grid__product-add-to-cart .wp-block-button__link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
  padding: 12px 18px; border-radius: var(--ffe-radius);
  background: var(--ffe-accent) !important; color: #fff !important;
  border: 1px solid var(--ffe-accent) !important;
  transition: background-color 0.22s var(--ffe-ease), border-color 0.22s var(--ffe-ease);
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wc-block-grid__product-add-to-cart .wp-block-button__link:focus-visible {
  background: var(--ffe-accent-dark) !important; border-color: var(--ffe-accent-dark) !important; color: #fff !important;
}

.wc-block-grid__product-title {
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
  line-height: 1.42; color: var(--ffe-ink);
}

.wc-block-grid__product-price { font-size: 15px; font-weight: 700; color: var(--ffe-ink); }
.wc-block-grid__product-price del { color: var(--ffe-muted); font-weight: 400; opacity: 1; }
.wc-block-grid__product-price ins { text-decoration: none; }

.wc-block-grid__product-onsale {
  background: var(--ffe-accent) !important; font-family: 'Manrope', sans-serif;
  font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ffe-card__excerpt { display: none; }

.ffe-view-list .ffe-grid, .ffe-view-list ul.products { grid-template-columns: 1fr !important; gap: 28px; }

.ffe-view-list .ffe-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px;
  align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--ffe-border);
}

.ffe-view-list .ffe-card__media { margin-bottom: 0; aspect-ratio: 1 / 1; }
.ffe-view-list .ffe-card__body { text-align: left; }
.ffe-view-list .ffe-card__rating { justify-content: flex-start; }
.ffe-view-list .ffe-card__excerpt { display: block; color: var(--ffe-ink-70); font-size: 14px; line-height: 1.65; margin: 0 0 12px; max-width: 62ch; }
.ffe-view-list .ffe-btn--card { width: auto; display: inline-flex; }

@media (max-width: 1100px) { .ffe-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px)  { .ffe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; } }
@media (max-width: 520px)  {
  .ffe-view-list .ffe-card { grid-template-columns: 1fr; }
  .ffe-card__quick { opacity: 1; transform: none; }
}

/* Tabs ------------------------------------------------------------------- */

.ffe-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin: 0 0 38px; }

.ffe-tab {
  background: none; border: 0; padding: 0 0 6px;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.03em; color: var(--ffe-muted); cursor: pointer;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s var(--ffe-ease), border-color 0.2s var(--ffe-ease);
}

.ffe-tab:hover { color: var(--ffe-ink); }
.ffe-tab.is-active { color: var(--ffe-ink); border-bottom-color: var(--ffe-ink); }

/* Mega menu -------------------------------------------------------------- */

.ffe-nav { position: relative; }

.ffe-nav__list {
  display: flex; align-items: center; justify-content: center; gap: 34px;
  list-style: none; margin: 0; padding: 0;
}

.ffe-nav__item { position: static; }

.ffe-nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 17px 0;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ffe-ink);
  text-decoration: none; position: relative; transition: color 0.2s var(--ffe-ease);
}

.ffe-nav__link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 11px; height: 1.5px;
  background: var(--ffe-nav-accent, var(--ffe-accent)); transition: right 0.28s var(--ffe-ease);
}

.ffe-nav__item:hover > .ffe-nav__link { color: var(--ffe-nav-accent, var(--ffe-accent)); }
.ffe-nav__item:hover > .ffe-nav__link::after { right: 0; }

.ffe-nav__caret {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.25s var(--ffe-ease);
}

.ffe-nav__item:hover .ffe-nav__caret { transform: rotate(225deg) translateY(-2px); }

.ffe-mega {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 90;
  background: var(--ffe-surface); border-top: 1px solid var(--ffe-border);
  box-shadow: var(--ffe-shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.24s var(--ffe-ease), transform 0.24s var(--ffe-ease), visibility 0.24s;
}

.ffe-nav__item.has-mega:hover > .ffe-mega,
.ffe-nav__item.has-mega.is-open > .ffe-mega {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.ffe-mega__inner {
  max-width: var(--ffe-max); margin: 0 auto;
  padding: 42px var(--ffe-gutter) 46px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start;
}

.ffe-mega__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 36px 40px;
}

.ffe-mega__heading {
  display: block; font-family: 'Archivo', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.04em; color: var(--ffe-ink);
  text-decoration: none; margin-bottom: 16px;
}

.ffe-mega__heading:hover { color: var(--ffe-nav-accent, var(--ffe-accent)); }

.ffe-mega__links { list-style: none; margin: 0; padding: 0; }
.ffe-mega__links li { margin-bottom: 11px; }

.ffe-mega__links a {
  font-size: 13.5px; color: var(--ffe-ink-70); text-decoration: none;
  transition: color 0.18s var(--ffe-ease), padding-left 0.18s var(--ffe-ease);
}

.ffe-mega__links a:hover { color: var(--ffe-nav-accent, var(--ffe-accent)); padding-left: 4px; }

.ffe-mega__promo {
  position: relative; display: block; width: 260px; aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: var(--ffe-radius); text-decoration: none;
}

.ffe-mega__promo img { width: 100%; height: 100%; object-fit: cover; }

.ffe-mega__promotext {
  position: absolute; left: 18px; bottom: 18px; right: 18px; color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px;
  text-shadow: 0 2px 12px rgba(25, 20, 20, 0.7);
}

.ffe-nav__toggle {
  display: none; align-items: center; gap: 10px; background: none; border: 0;
  padding: 14px 0; font-family: 'Manrope', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ffe-ink); cursor: pointer;
}

.ffe-burger, .ffe-burger::before, .ffe-burger::after {
  display: block; width: 18px; height: 1.5px; background: currentColor; position: relative;
}

.ffe-burger::before, .ffe-burger::after { content: ''; position: absolute; left: 0; }
.ffe-burger::before { top: -6px; }
.ffe-burger::after { top: 6px; }

@media (max-width: 1024px) {
  .ffe-nav__toggle { display: inline-flex; }
  .ffe-nav__list { display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 20px; }
  .ffe-nav.is-open .ffe-nav__list { display: flex; }
  .ffe-nav__link { padding: 13px 0; border-bottom: 1px solid var(--ffe-border); }
  .ffe-nav__link::after { display: none; }
  .ffe-mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: 0; display: none;
  }
  .ffe-nav__item.is-open > .ffe-mega { display: block; }
  .ffe-mega__inner { grid-template-columns: 1fr; padding: 18px 0 8px; gap: 24px; }
  .ffe-mega__promo { display: none; }
}
/* Shop archive shell ----------------------------------------------------- */

.ffe-pagehead { background: var(--ffe-bg); border-bottom: 1px solid var(--ffe-border); }

.ffe-pagehead__inner {
  max-width: var(--ffe-max); margin: 0 auto; padding: 34px var(--ffe-gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.ffe-pagehead__title { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; }
.ffe-pagehead__sub { margin: 6px 0 0; color: var(--ffe-muted); font-size: 14px; }

.ffe-crumbs { display: flex; gap: 8px; font-size: 13px; color: var(--ffe-muted); }
.ffe-crumbs a { color: var(--ffe-muted); text-decoration: none; }
.ffe-crumbs a:hover { color: var(--ffe-accent); }

.ffe-shop {
  display: grid; grid-template-columns: 258px minmax(0, 1fr); gap: 56px;
  max-width: var(--ffe-max); margin: 44px auto 80px;
  padding: 0 var(--ffe-gutter); align-items: start;
}

.ffe-shop__main { min-width: 0; }

.ffe-filters__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }

.ffe-filters__heading {
  font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.03em; margin: 0;
}

.ffe-filters__clear { font-size: 12px; color: var(--ffe-accent); text-decoration: none; }
.ffe-filters__clear:hover { text-decoration: underline; }

.ffe-filter { border-bottom: 1px solid var(--ffe-border); padding: 20px 0; }

.ffe-filter__title {
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ffe-ink);
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 0;
}

.ffe-filter__title::-webkit-details-marker { display: none; }

.ffe-filter__title::after {
  content: ''; width: 7px; height: 7px;
  border-right: 1.5px solid var(--ffe-muted); border-bottom: 1.5px solid var(--ffe-muted);
  transform: rotate(45deg); transition: transform 0.2s var(--ffe-ease);
}

.ffe-filter[open] .ffe-filter__title::after { transform: rotate(225deg); }
.ffe-filter[open] .ffe-filter__title { margin-bottom: 16px; }

.ffe-filter__list { list-style: none; margin: 0; padding: 0; }
.ffe-filter__list li { margin-bottom: 10px; }

.ffe-filter__opt {
  display: flex; align-items: center; gap: 9px; font-size: 13.5px;
  color: var(--ffe-ink-70); text-decoration: none; transition: color 0.18s var(--ffe-ease);
}

.ffe-filter__opt:hover { color: var(--ffe-ink); }
.ffe-filter__opt.is-active { color: var(--ffe-ink); font-weight: 600; }

.ffe-check {
  width: 15px; height: 15px; border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius); flex: 0 0 15px; position: relative;
  transition: border-color 0.18s var(--ffe-ease), background-color 0.18s var(--ffe-ease);
}

.ffe-filter__opt:hover .ffe-check { border-color: var(--ffe-muted); }
.ffe-filter__opt.is-active .ffe-check { background: var(--ffe-ink); border-color: var(--ffe-ink); }

.ffe-filter__opt.is-active .ffe-check::after {
  content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
  border-right: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(45deg);
}

.ffe-filter__name { flex: 1 1 auto; }
.ffe-filter__count { color: var(--ffe-muted); font-size: 12.5px; }

.ffe-filter__list--grid { display: flex; flex-wrap: wrap; gap: 8px; }
.ffe-filter__list--grid li { margin-bottom: 0; }

.ffe-size {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; padding: 8px 10px; border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius); font-size: 12.5px; color: var(--ffe-ink-70);
  text-decoration: none; transition: all 0.18s var(--ffe-ease);
}

.ffe-size:hover { border-color: var(--ffe-ink); color: var(--ffe-ink); }
.ffe-size.is-active { background: var(--ffe-ink); border-color: var(--ffe-ink); color: #fff; }

.ffe-price__row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }

.ffe-price input {
  width: 100%; min-width: 0; padding: 9px 10px; border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius); font-family: 'Manrope', sans-serif;
  font-size: 13px; color: var(--ffe-ink); background: #fff;
}

.ffe-price input:focus { outline: none; border-color: var(--ffe-ink); }
.ffe-price__sep { color: var(--ffe-muted); }

.ffe-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; padding-bottom: 18px; margin-bottom: 30px;
  border-bottom: 1px solid var(--ffe-border);
}

.ffe-toolbar__count { margin: 0; font-size: 13px; color: var(--ffe-muted); }
.ffe-toolbar__right { display: flex; align-items: center; gap: 20px; }

.ffe-sort { display: flex; align-items: center; gap: 9px; }
.ffe-sort label { font-size: 13px; color: var(--ffe-muted); }

.ffe-sort select {
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  padding: 8px 30px 8px 12px; font-family: 'Manrope', sans-serif;
  font-size: 13px; color: var(--ffe-ink); background-color: #fff;
  appearance: none; cursor: pointer;
}

.ffe-view { display: flex; gap: 4px; }

.ffe-view__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius); background: #fff; cursor: pointer;
  color: var(--ffe-muted); transition: all 0.18s var(--ffe-ease);
}

.ffe-view__btn svg { fill: currentColor; }
.ffe-view__btn:hover { border-color: var(--ffe-ink); color: var(--ffe-ink); }
.ffe-view__btn.is-active { background: var(--ffe-ink); border-color: var(--ffe-ink); color: #fff; }

.ffe-shop__main ul.products {
  display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px; list-style: none; margin: 0; padding: 0;
}

.ffe-shop__main ul.products::before, .ffe-shop__main ul.products::after { display: none !important; }

.ffe-shop__main ul.products li.product {
  width: 100% !important; margin: 0 !important; float: none !important; clear: none !important;
}

.woocommerce-pagination { margin-top: 56px; }

.woocommerce-pagination ul.page-numbers {
  display: flex; justify-content: center; gap: 6px;
  border: 0 !important; list-style: none; padding: 0;
}

.woocommerce-pagination ul.page-numbers li { border: 0 !important; }

.woocommerce-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  font-size: 13px; color: var(--ffe-ink); text-decoration: none;
  background: #fff; transition: all 0.18s var(--ffe-ease);
}

.woocommerce-pagination .page-numbers:hover { border-color: var(--ffe-ink); }
.woocommerce-pagination .page-numbers.current { background: var(--ffe-ink); border-color: var(--ffe-ink); color: #fff; }

@media (max-width: 1100px) {
  .ffe-shop { grid-template-columns: 220px minmax(0, 1fr); gap: 36px; }
  .ffe-shop__main ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .ffe-shop { grid-template-columns: 1fr; gap: 28px; }
  .ffe-filters { border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius); padding: 18px 20px; }
  .ffe-filter:last-of-type { border-bottom: 0; }
}

@media (max-width: 520px) {
  .ffe-shop__main ul.products { grid-template-columns: 1fr; }
  .ffe-toolbar { flex-direction: column; align-items: flex-start; }
}
/* Quick view modal ------------------------------------------------------- */

.ffe-modal {
  position: fixed; inset: 0; z-index: 99999; display: none;
  align-items: center; justify-content: center; padding: 24px;
}

.ffe-modal.is-open { display: flex; }

.ffe-modal__backdrop {
  position: absolute; inset: 0; background: rgba(25, 20, 20, 0.55);
  animation: ffe-fade 0.22s var(--ffe-ease);
}

.ffe-modal__panel {
  position: relative; z-index: 1; width: min(980px, 100%);
  max-height: 88vh; overflow-y: auto; background: var(--ffe-surface);
  border-radius: var(--ffe-radius);
  box-shadow: 0 30px 70px -25px rgba(25, 20, 20, 0.5);
  animation: ffe-pop 0.26s var(--ffe-ease);
}

@keyframes ffe-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ffe-pop { from { opacity: 0; transform: translateY(14px) scale(0.985); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .ffe-modal__backdrop, .ffe-modal__panel { animation: none; }
  .ffe-card__img, .ffe-cat__media img, .ffe-banner__img, .ffe-post__media img { transition: none; }
}

.ffe-modal__close {
  position: absolute; top: 14px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border: 0; background: transparent;
  font-size: 26px; line-height: 1; color: var(--ffe-muted); cursor: pointer;
  border-radius: 50%; transition: color 0.18s var(--ffe-ease), background-color 0.18s var(--ffe-ease);
}

.ffe-modal__close:hover { color: var(--ffe-ink); background: var(--ffe-tint); }

.ffe-qv { display: grid; grid-template-columns: 44% 1fr; gap: 40px; padding: 30px; }

.ffe-qv__media {
  background: var(--ffe-tint); border-radius: var(--ffe-radius);
  aspect-ratio: 3 / 4; overflow: hidden;
}

.ffe-qv__media img { width: 100%; height: 100%; object-fit: cover; }

.ffe-qv__info { padding-right: 12px; }
.ffe-qv__info .ffe-card__rating { justify-content: flex-start; margin-bottom: 12px; }

.ffe-qv__title { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: 0 0 12px; line-height: 1.2; }

.ffe-qv__price { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.ffe-qv__price del { color: var(--ffe-muted); font-weight: 400; margin-right: 8px; opacity: 1; }
.ffe-qv__price ins { text-decoration: none; }

.ffe-qv__blurb {
  color: var(--ffe-ink-70); font-size: 14px; line-height: 1.7;
  margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--ffe-border);
}

.ffe-qv__row { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13.5px; }
.ffe-qv__label { color: var(--ffe-muted); font-size: 12.5px; }
.ffe-qv__stock { display: inline-flex; align-items: center; gap: 7px; }

.ffe-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.ffe-dot--in { background: #2E9E5B; }
.ffe-dot--out { background: var(--ffe-accent); }

/* Single product page - whole-product sold out banner */
.ffe-pp-soldout {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ffe-tint); border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  padding: 9px 16px; margin: 0 0 18px; font-family: 'Manrope', sans-serif;
  font-size: 13.5px; font-weight: 600; color: var(--ffe-ink);
}

.single_add_to_cart_button.is-disabled,
.ffe-buy-now-button.is-disabled {
  opacity: 0.45; cursor: not-allowed; pointer-events: none;
  background: var(--ffe-muted) !important;
}

.ffe-qv__attr { margin-bottom: 18px; }
.ffe-qv__attr .ffe-qv__label { display: block; margin-bottom: 9px; }

.ffe-chips { display: flex; flex-wrap: wrap; gap: 7px; }

.ffe-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; padding: 8px 12px; border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius); font-size: 12.5px; color: var(--ffe-ink-70);
}

.ffe-qv__actions { margin: 22px 0 20px; }

.ffe-qv__meta { list-style: none; margin: 0 0 16px; padding: 0; font-size: 13px; color: var(--ffe-ink-70); }
.ffe-qv__meta li { margin-bottom: 6px; }
.ffe-qv__meta span { color: var(--ffe-muted); }

.ffe-qv__full {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px;
  font-weight: 600; color: var(--ffe-ink); text-decoration: none;
  border-bottom: 1px solid var(--ffe-ink); padding-bottom: 2px;
}

.ffe-qv__full:hover { color: var(--ffe-accent); border-color: var(--ffe-accent); }
.ffe-qv__loading { padding: 80px; text-align: center; color: var(--ffe-muted); }

@media (max-width: 780px) {
  .ffe-qv { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
  .ffe-qv__media { aspect-ratio: 4 / 3; }
}

/* Blog ------------------------------------------------------------------- */

.ffe-posts { display: grid; grid-template-columns: repeat(var(--ffe-cols, 3), minmax(0, 1fr)); gap: 48px 28px; }

.ffe-post__media {
  display: block; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--ffe-radius); background: var(--ffe-tint); margin-bottom: 18px;
}

.ffe-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ffe-ease); }
.ffe-post:hover .ffe-post__media img { transform: scale(1.045); }

.ffe-post__placeholder {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ffe-tint) 0%, #E6DFD9 100%);
}

.ffe-post__date {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ffe-muted); margin: 0 0 9px;
}

.ffe-post__title { font-size: 17px; line-height: 1.3; margin: 0 0 10px; }
.ffe-post__title a { color: var(--ffe-ink); text-decoration: none; }
.ffe-post__title a:hover { color: var(--ffe-accent); }

.ffe-post__excerpt { font-size: 14px; line-height: 1.7; color: var(--ffe-ink-70); margin: 0 0 14px; }

.ffe-post__more {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ffe-ink); text-decoration: none;
  border-bottom: 1px solid var(--ffe-ink); padding-bottom: 2px;
}

.ffe-post__more:hover { color: var(--ffe-accent); border-color: var(--ffe-accent); }

@media (max-width: 900px) { .ffe-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .ffe-posts { grid-template-columns: 1fr; } }
/* Single product --------------------------------------------------------- */

.single-product div.product {
  max-width: var(--ffe-max); margin: 44px auto 80px; padding: 0 var(--ffe-gutter);
  display: grid; grid-template-columns: 52% 1fr; gap: 56px; align-items: start;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary { width: 100% !important; float: none !important; margin: 0 !important; }

.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .up-sells { grid-column: 1 / -1; }

.single-product .product_title { font-size: clamp(1.5rem, 2.6vw, 2.125rem); margin: 0 0 14px; }

.single-product div.product p.price, .single-product div.product span.price {
  font-size: 22px; font-weight: 700; color: var(--ffe-ink);
  font-family: 'Manrope', sans-serif; margin-bottom: 20px;
}

.single-product div.product p.price del { color: var(--ffe-muted); font-weight: 400; opacity: 1; }
.single-product div.product p.price ins { text-decoration: none; }

.single-product .woocommerce-product-details__short-description {
  color: var(--ffe-ink-70); font-size: 14.5px; line-height: 1.75;
  padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--ffe-border);
}

.single-product table.variations { border: 0; margin-bottom: 18px; width: 100%; }
.single-product table.variations tbody,
.single-product table.variations tr,
.single-product table.variations th,
.single-product table.variations td { display: block; width: 100%; border: 0; padding: 0; }
.single-product table.variations tr { margin-bottom: 16px; }

.single-product table.variations label {
  display: block; margin-bottom: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ffe-ink);
}

.single-product .variations select {
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  padding: 11px 14px; font-family: 'Manrope', sans-serif; font-size: 14px;
  min-width: 220px; background: #fff;
}

/* The real <select> stays functional (WooCommerce's variation-form JS still
   drives price/stock/gallery off it) but is visually replaced by the pill
   chips rendered next to it. */
.single-product .ffe-variation-select-wrap select {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.single-product .cart { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
/* Variable products nest quantity/buttons one level deeper, inside
   WooCommerce's own .woocommerce-variation-add-to-cart wrapper (which WC's
   variation JS also toggles via inline style="display:", hence !important)
   — that wrapper needs to be the flex container too, or Buy Now just flows
   inline next to Add to Cart instead of wrapping onto its own row. */
.single-product .woocommerce-variation-add-to-cart {
  display: flex !important; align-items: center; gap: 12px; flex-wrap: wrap;
}

/* Quantity stepper — pill wrapper with custom -/+ buttons injected by JS
   around the native number input. */
.single-product .quantity {
  flex: 0 0 auto;
}
.single-product .quantity.ffe-pqty {
  display: flex; align-items: center; gap: 0; background: var(--ffe-tint);
  border-radius: var(--ffe-radius); padding: 4px; border: 0;
}
.single-product .quantity.ffe-pqty input[type=number] {
  border: 0; background: transparent; padding: 10px 4px; width: 34px;
  text-align: center; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--ffe-ink); -moz-appearance: textfield;
}
.single-product .quantity.ffe-pqty input[type=number]::-webkit-outer-spin-button,
.single-product .quantity.ffe-pqty input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.ffe-pqty-btn {
  appearance: none; border: 0; background: transparent; width: 32px; height: 32px;
  border-radius: var(--ffe-radius); display: flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; font-weight: 600; color: #8B8FA8; cursor: pointer;
  transition: background-color 0.15s var(--ffe-ease), color 0.15s var(--ffe-ease);
}
.ffe-pqty-btn:hover { background: rgba(25, 20, 20, 0.06); color: var(--ffe-ink); }

.single-product .single_add_to_cart_button {
  flex: 1 1 auto;
  background: var(--ffe-ink) !important; color: #fff !important;
  border-radius: var(--ffe-radius) !important; padding: 16px 32px !important;
  font-family: 'Manrope', sans-serif !important; font-size: 14px !important;
  font-weight: 700 !important; letter-spacing: 0 !important;
  text-transform: none !important; transition: background-color 0.2s var(--ffe-ease);
}
.single-product .single_add_to_cart_button:hover { background: #000 !important; }

.ffe-buy-now-button {
  flex: 1 0 100%;
  background: var(--ffe-accent); color: #fff; border: 0;
  border-radius: var(--ffe-radius); padding: 16px 32px;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background-color 0.2s var(--ffe-ease), opacity 0.15s var(--ffe-ease);
}
.ffe-buy-now-button:hover { background: var(--ffe-accent-dark); }
.ffe-buy-now-button.is-disabled { opacity: 0.5; cursor: not-allowed; }

.single-product .product_meta {
  font-size: 13px; color: var(--ffe-ink-70); padding-top: 20px;
  margin-top: 22px; border-top: 1px solid var(--ffe-border);
}

.single-product .product_meta > span { display: block; margin-bottom: 7px; }
.single-product .product_meta a { color: var(--ffe-ink); }

.single-product .woocommerce-tabs ul.tabs {
  padding: 0 !important; margin: 0 0 26px !important;
  border-bottom: 1px solid var(--ffe-border); display: flex; gap: 30px;
}

.single-product .woocommerce-tabs ul.tabs::before { display: none !important; }
.single-product .woocommerce-tabs ul.tabs li {
  background: none !important; border: 0 !important; margin: 0 !important;
  padding: 0 !important; border-radius: 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after { display: none !important; }

.single-product .woocommerce-tabs ul.tabs li a {
  padding: 0 0 12px !important; font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ffe-muted) !important;
  border-bottom: 1.5px solid transparent;
}

.single-product .woocommerce-tabs ul.tabs li.active a { color: var(--ffe-ink) !important; border-bottom-color: var(--ffe-ink); }

.single-product .related > h2, .single-product .up-sells > h2 { font-size: 1.5rem; margin: 0 0 30px; }

.single-product .related ul.products, .single-product .up-sells ul.products {
  display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 24px; list-style: none; padding: 0; margin: 0;
}

.single-product .related ul.products li.product,
.single-product .up-sells ul.products li.product { width: 100% !important; margin: 0 !important; float: none !important; }

@media (max-width: 980px) {
  .single-product div.product { grid-template-columns: 1fr; gap: 32px; }
  .single-product .related ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Cart / checkout / account --------------------------------------------- */

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  max-width: var(--ffe-max); margin: 44px auto 80px; padding: 0 var(--ffe-gutter);
}

.woocommerce table.shop_table { border-radius: var(--ffe-radius); border-color: var(--ffe-border); }
.woocommerce table.shop_table th {
  font-family: 'Manrope', sans-serif; font-size: 12px;
  letter-spacing: 0.07em; text-transform: uppercase;
}

.woocommerce .button, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button {
  background: var(--ffe-accent); color: #fff; border-radius: var(--ffe-radius);
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; padding: 14px 28px;
  transition: background-color 0.2s var(--ffe-ease);
}

.woocommerce .button:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--ffe-accent-dark); color: #fff; }

.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top-color: var(--ffe-accent); border-radius: var(--ffe-radius); font-size: 14px;
}

/* Recovery notices (session expired, cart/order errors) - style the
   "Return to shop"/"Return to cart" link as an attractive centered button
   instead of a plain inline link buried in the sentence. WooCommerce
   builds this specific message as a raw notice string without a `button`
   class, so it needs its own rule rather than reusing the generic
   `.woocommerce .button` treatment other WooCommerce links already get. */
/* Checkout "cart has issues, go back" state: WooCommerce swaps out the
   entire checkout form for two bare <p> tags with no wrapping container
   when the cart already has an error notice queued (e.g. an expired
   session, a failed order attempt) - none of the padding/max-width the
   normal billing/order-review cards get ever reaches this, so it rendered
   flush against the page edges. Give it the same page container by hand. */
.woocommerce-checkout .woocommerce > p {
  max-width: var(--ffe-max); margin-left: auto; margin-right: auto;
  padding-left: var(--ffe-gutter); padding-right: var(--ffe-gutter);
}

.woocommerce-checkout .woocommerce > p:first-of-type { margin-top: 8px; }
.woocommerce-checkout .woocommerce > p:has(a.wc-backward) { margin-top: 20px; margin-bottom: 60px; }

/* Guest order-verification form (checkout/form-verify-email.php override):
   same missing-container issue - it renders as a bare <form> direct child
   of .woocommerce, which the > p rule above doesn't reach. */
.woocommerce-checkout .woocommerce > form.ffe-verify-email {
  max-width: 480px; margin: 24px auto 60px;
  padding-left: var(--ffe-gutter); padding-right: var(--ffe-gutter);
}

/* Order-received ("thank you") page: same missing-container issue as the
   cart-errors state above - checkout/thankyou.php renders its own content
   wrapped only in the bare .woocommerce shortcode div, so it never inherits
   the padding/max-width the normal billing/order-review cards get. */
.woocommerce-checkout .woocommerce-order {
  max-width: var(--ffe-max); margin: 24px auto 60px;
  padding-left: var(--ffe-gutter); padding-right: var(--ffe-gutter);
}

.woocommerce-checkout .woocommerce-order table,
.woocommerce-checkout .woocommerce-order .woocommerce-customer-details {
  max-width: 100%;
}

/* Big success checkmark above the "Thank you" message. */
.ffe-order-tick {
  width: 200px; height: 200px; border-radius: 50%;
  background: #2E9E5B; display: flex; align-items: center; justify-content: center;
  margin: 8px auto 24px;
}

.ffe-order-tick svg { width: 45%; height: 45%; color: #fff; }

/* Track Order page -------------------------------------------------------- */

.ffe-track-page {
  max-width: var(--ffe-max) !important; margin: 0 auto !important; padding: 56px var(--ffe-gutter) 100px;
}

.ffe-track-page__intro {
  text-align: center; max-width: 620px; margin: 0 auto 44px;
}

.ffe-track-page__intro .ffe-eyebrow { display: block; margin-bottom: 10px; }

.ffe-track-page__intro h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 14px;
}

.ffe-track-page__intro p {
  color: var(--ffe-ink-70); font-size: 15.5px; line-height: 1.7; margin: 0;
}

.ffe-track { max-width: 880px; margin: 0 auto; }

.ffe-track__form { max-width: 560px; margin: 0 auto; }

.ffe-track__form label {
  display: block; font-weight: 600; margin-bottom: 8px; font-family: 'Manrope', sans-serif;
}

.ffe-track__row { display: flex; gap: 12px; }

.ffe-track__row input.input-text {
  flex: 1; border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  padding: 12px 14px; font-family: 'Manrope', sans-serif; font-size: 14px;
}

.ffe-track__submit { flex: 0 0 auto; white-space: nowrap; }

.ffe-track__hint {
  color: var(--ffe-muted); font-size: 13px; margin: 10px 0 0; text-align: center;
}

@media (max-width: 560px) {
  .ffe-track__row { flex-direction: column; }
}

.ffe-track__results { margin-top: 32px; }

.ffe-track__empty {
  text-align: center; color: var(--ffe-muted); padding: 24px; background: var(--ffe-tint);
  border-radius: var(--ffe-radius);
}

.ffe-track__order {
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  padding: 24px; margin-bottom: 20px; background: #fff;
}

.ffe-track__order-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--ffe-border);
}

.ffe-track__order-num {
  font-weight: 700; font-family: 'Archivo', sans-serif; margin-right: 12px;
}

.ffe-track__order-date { color: var(--ffe-muted); font-size: 13px; }

.ffe-track__status {
  display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--ffe-tint); color: var(--ffe-ink);
}

.ffe-track__status--wc-processing, .ffe-track__status--processing { background: #E8F0FE; color: #1A56C4; }
.ffe-track__status--wc-completed, .ffe-track__status--completed { background: #E5F6EC; color: #1E7E42; }
.ffe-track__status--wc-on-hold, .ffe-track__status--on-hold { background: #FEF3E0; color: #9C6A0A; }
.ffe-track__status--wc-cancelled, .ffe-track__status--cancelled,
.ffe-track__status--wc-failed, .ffe-track__status--failed { background: #FBE7E7; color: var(--ffe-accent-dark); }

.ffe-track__order .woocommerce-order-details__title { font-size: 16px; margin: 0 0 14px; }

@media (max-width: 480px) {
  .ffe-order-tick { width: 140px; height: 140px; }
}

.woocommerce-error li:has(a.wc-backward) {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
}

.woocommerce-error a.wc-backward {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ffe-accent); color: #fff !important; text-decoration: none !important;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 13px 30px; border-radius: var(--ffe-radius);
  transition: background-color 0.2s var(--ffe-ease);
}

.woocommerce-error a.wc-backward:hover { background: var(--ffe-accent-dark); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  padding: 12px 14px; font-family: 'Manrope', sans-serif;
}

/* Header / footer chrome ------------------------------------------------- */

.ffe-topbar a { color: #fff; }

.ffe-footcol h4 {
  font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 18px; color: var(--ffe-ink);
}

.ffe-footcol p { font-size: 14px; line-height: 1.9; color: var(--ffe-ink-70); margin: 0; }
.ffe-footcol a { color: var(--ffe-ink-70); text-decoration: none; transition: color 0.18s var(--ffe-ease); }
.ffe-footcol a:hover { color: var(--ffe-accent); }

.ffe-wrap { max-width: var(--ffe-max); margin: 0 auto; padding: 0 var(--ffe-gutter); }

@media (max-width: 600px) { :root { --ffe-gutter: 20px; } }
/* WooCommerce Cart / Checkout blocks -------------------------------------
   These render through WooCommerce's block runtime, not the classic loop
   hooks, so they are brought on-brand with CSS rather than markup swaps. */

.wc-block-components-title,
.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-cart h1,
.wp-block-woocommerce-checkout h1 {
  font-family: 'Archivo', sans-serif !important;
  font-weight: 700 !important;
  color: var(--ffe-ink) !important;
  letter-spacing: -0.015em;
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  background: var(--ffe-accent) !important;
  color: #fff !important;
  border-radius: var(--ffe-radius) !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  padding: 15px 32px !important;
  transition: background-color 0.2s var(--ffe-ease);
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover { background: var(--ffe-accent-dark) !important; }

.wc-block-components-button--outlined {
  background: transparent !important;
  color: var(--ffe-ink) !important;
  box-shadow: inset 0 0 0 1px var(--ffe-ink) !important;
}

.wc-block-components-button--outlined:hover { background: var(--ffe-accent) !important; color: #fff !important; }

.wc-block-components-product-name {
  font-family: 'Archivo', sans-serif !important;
  font-weight: 600 !important;
  color: var(--ffe-ink) !important;
  text-decoration: none !important;
}

.wc-block-components-product-name:hover { color: var(--ffe-accent) !important; }

.wc-block-components-product-price__value,
.wc-block-components-totals-item__value {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700;
  color: var(--ffe-ink);
}

.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-select__container {
  border-radius: var(--ffe-radius) !important;
  border-color: var(--ffe-border) !important;
  font-family: 'Manrope', sans-serif !important;
}

.wc-block-components-text-input input:focus { border-color: var(--ffe-ink) !important; box-shadow: none !important; }

.wc-block-cart-items__header {
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ffe-muted) !important;
}

.wc-block-cart-item__image img { border-radius: var(--ffe-radius); background: var(--ffe-tint); }

.wc-block-grid__product-title {
  font-family: 'Archivo', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ffe-ink) !important;
}

.wc-block-grid__product-image img { border-radius: var(--ffe-radius); background: var(--ffe-tint); }

.wc-block-grid__product-onsale {
  background: var(--ffe-ink) !important;
  border-color: var(--ffe-ink) !important;
  color: #fff !important;
  border-radius: var(--ffe-radius) !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wc-block-components-notice-banner { border-radius: var(--ffe-radius) !important; }
/* ==========================================================================
   Boxed layout alignment

   Elementor boxed containers cap `.e-con-inner` at --ffe-max and apply the
   gutter on the OUTER element, so real content begins at
   (viewport - max) / 2. Wrappers we render ourselves (shop shell, single
   product, cart blocks) must therefore size to max + both gutters, otherwise
   they subtract the gutter twice and sit one gutter inboard of the header.
   ========================================================================== */

.ffe-pagehead__inner,
.ffe-shop,
.ffe-mega__inner,
.ffe-wrap,
.single-product div.product,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  max-width: calc(var(--ffe-max) + (var(--ffe-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--ffe-gutter);
  box-sizing: border-box;
}

/* WooCommerce's own checkout.css / cart.css load after this stylesheet and
   set margin:0; width:100% on these exact blocks with equal selector
   specificity, so the centering above needs !important to actually win. */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: calc(var(--ffe-max) + (var(--ffe-gutter) * 2)) !important;
  width: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 44px !important;
  margin-bottom: 80px !important;
  padding-inline: var(--ffe-gutter);
  box-sizing: border-box;
}

/* Hello Elementor caps <main> at its own 1140px, which is narrower than the
   kit's boxed column. On the templates our wrappers own, hand width back. */
.woocommerce-page main.site-main,
.woocommerce main.site-main,
.search main.site-main,
.single-product main.site-main,
.woocommerce-cart main.site-main,
.woocommerce-checkout main.site-main,
.woocommerce-account main.site-main {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* HFE column containers carry a default 10px inset that pushes header and
   footer widgets off the shared column edge. Columns are spaced with `gap`,
   so removing the horizontal inset costs nothing. */
.e-con-inner > .e-con { padding-inline: 0; }
/* Elementor writes a fixed 40px section padding into each container's own
   rule, so on phones it would sit 20px outboard of everything we render.
   Re-point the boxed top-level containers at the shared gutter token.
   `:has(> .e-con-inner)` keeps this to boxed sections only. */
@media (max-width: 600px) {
  .e-con:has(> .e-con-inner) {
    padding-inline: var(--ffe-gutter) !important;
  }
}
/* ==========================================================================
   Revision pass
   ========================================================================== */

/* `display:grid` outranks the UA's [hidden] rule, which left every tab panel
   painted on top of the others. Restore the attribute's meaning. */
[hidden] { display: none !important; }

/* Tabs: give the active state a clearer target and keyboard affordance. */
.ffe-tab { position: relative; }
.ffe-tab:focus-visible { outline: 2px solid var(--ffe-ink); outline-offset: 4px; }

/* ---------------------------------------------------------- Quick view UI */

body.ffe-modal-open { overflow: hidden; }

.ffe-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ffe-border);
  border-radius: 50%;
  background: #fff;
  color: var(--ffe-ink);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 2px 10px -4px rgba(25, 20, 20, 0.25);
  transition: background-color 0.18s var(--ffe-ease), border-color 0.18s var(--ffe-ease), transform 0.18s var(--ffe-ease);
}

/* Draw the glyph so it stays optically centred at any font size. */
.ffe-modal__close::before,
.ffe-modal__close::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.ffe-modal__close::before { transform: rotate(45deg); }
.ffe-modal__close::after { transform: rotate(-45deg); }

.ffe-modal__close:hover {
  background: var(--ffe-ink);
  border-color: var(--ffe-ink);
  color: #fff;
  transform: rotate(90deg);
}

.ffe-modal__close:focus-visible { outline: 2px solid var(--ffe-ink); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .ffe-modal__close:hover { transform: none; }
}

/* Selectable variation chips. */
.ffe-chip--btn {
  background: #fff;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: all 0.16s var(--ffe-ease);
}

.ffe-chip--btn:hover { border-color: var(--ffe-ink); color: var(--ffe-ink); }

.ffe-chip--btn.is-active {
  background: var(--ffe-ink);
  border-color: var(--ffe-ink);
  color: #fff;
}

.ffe-chip--btn.is-unavailable {
  opacity: 0.35;
  text-decoration: line-through;
}

.ffe-chip--btn:focus-visible { outline: 2px solid var(--ffe-ink); outline-offset: 2px; }

.ffe-btn.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: auto;
}

.ffe-qv__hint {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--ffe-accent);
}

.ffe-qv__meta li span { display: inline-block; min-width: 74px; color: var(--ffe-muted); }

/* ------------------------------------------------------------ Cart icon */

.hfe-cart-container,
.hfe-cart-menu-wrap-default,
.hfe-cart-menu-wrap-default *,
.hfe-site-header-cart a {
  color: var(--ffe-accent) !important;
}

.hfe-cart-count {
  background: var(--ffe-accent) !important;
  color: #fff !important;
  border-color: var(--ffe-accent) !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.hfe-search-button-wrapper .hfe-search-icon-toggle,
.hfe-search-form__toggle { color: var(--ffe-ink); }

/* --------------------------------------------------- Responsive header */

.ffe-head-main > .e-con-inner {
  align-items: center;
}

@media (max-width: 1024px) {
  /* Keep search / logo / cart on one line instead of stacking into three rows. */
  .ffe-head-main > .e-con-inner {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 10px;
  }

  .ffe-head-main > .e-con-inner > .e-con {
    width: auto !important;
    flex: 0 0 auto !important;
    padding-block: 0;
  }

  .ffe-head-main > .e-con-inner > .e-con:nth-child(2) {
    flex: 1 1 auto !important;
    align-items: center;
  }

  .ffe-head-main .elementor-widget-site-logo img { max-width: 108px; height: auto; }

  /* The announcement bar keeps the offer and drops the secondary links. */
  .ffe-head-bar > .e-con-inner { flex-direction: row !important; flex-wrap: nowrap !important; }
  .ffe-head-bar > .e-con-inner > .e-con:nth-child(2) { display: none !important; }
  .ffe-head-bar > .e-con-inner > .e-con:nth-child(1) { width: 100% !important; flex: 1 1 auto !important; }
  .ffe-head-bar .ffe-topbar { text-align: center; font-size: 11px; }
}

@media (max-width: 600px) {
  .ffe-head-main > .e-con-inner { gap: 6px; }
  .ffe-head-main .elementor-widget-site-logo img { max-width: 92px; }
  .ffe-head-bar .ffe-topbar { font-size: 10.5px; letter-spacing: 0.02em; }
  .hfe-cart-count { transform: scale(0.9); }
}
/* Header rows keyed by element id (container _css_classes is not rendered in
   this Elementor build, so the ids are the stable hook). */
@media (max-width: 1024px) {
  .elementor-element-b55f886 > .e-con-inner,
  .elementor-element-cdfe1ef > .e-con-inner {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px;
  }

  .elementor-element-0c9e268,
  .elementor-element-dcf2c58 { --width: 22% !important; }
  .elementor-element-9a673f7 { --width: 56% !important; }
  .elementor-element-38ea78c { display: none !important; }
  .elementor-element-2977b7a { --width: 100% !important; }

  .elementor-element-b55f886 .elementor-widget-site-logo img { max-width: 108px; height: auto; }
  .elementor-element-cdfe1ef .ffe-topbar { text-align: center; font-size: 11px; }
}

@media (max-width: 600px) {
  .elementor-element-b55f886 > .e-con-inner { gap: 6px; }
  .elementor-element-b55f886 .elementor-widget-site-logo img { max-width: 92px; }
  .elementor-element-cdfe1ef .ffe-topbar { font-size: 10.5px; }
}
/* -------------------------------------------------------- Promise bar */

.ffe-usps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ffe-usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 22px;
}

.ffe-usps.has-dividers .ffe-usp + .ffe-usp {
  border-left: 1px solid var(--ffe-border);
}

.ffe-usp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--ffe-accent);
  font-size: 21px;
}

.ffe-usp__icon svg { width: 21px; height: 21px; fill: currentColor; }

.ffe-usp__copy { display: flex; flex-direction: column; gap: 2px; }

.ffe-usp__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--ffe-ink);
}

.ffe-usp__text { font-size: 12.5px; color: var(--ffe-muted); }

@media (max-width: 900px) {
  .ffe-usps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }
  .ffe-usps.has-dividers .ffe-usp:nth-child(odd) { border-left: 0; }
  .ffe-usp { justify-content: flex-start; padding: 4px 14px; }
}

@media (max-width: 520px) {
  .ffe-usps { grid-template-columns: 1fr; gap: 16px; }
  .ffe-usps.has-dividers .ffe-usp + .ffe-usp { border-left: 0; }
}

/* ------------------------------------------------------- Promo split */

.ffe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: var(--ffe-radius);
  overflow: hidden;
}

.ffe-split--media-right .ffe-split__media { order: 2; }

.ffe-split__media { position: relative; min-height: 420px; background: var(--ffe-tint); }
.ffe-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.ffe-split__panel { display: flex; align-items: center; padding: clamp(36px, 5vw, 72px); }
.ffe-split__inner { max-width: 42ch; }

.ffe-split__title { font-size: clamp(1.5rem, 2.4vw, 2.125rem); line-height: 1.12; margin: 0 0 16px; }

.ffe-split__body {
  color: var(--ffe-ink-70);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 30px;
}

@media (max-width: 860px) {
  .ffe-split { grid-template-columns: 1fr; }
  .ffe-split--media-right .ffe-split__media { order: 0; }
  .ffe-split__media { min-height: 300px; }
  .ffe-split__panel { padding: 36px 24px 44px; }
}

/* ------------------------------------------------------ Shop by size */

.ffe-sizelinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ffe-sizelink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 14px 18px;
  border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ffe-ink);
  text-decoration: none;
  background: #fff;
  transition: all 0.18s var(--ffe-ease);
}

.ffe-sizelink:hover {
  background: var(--ffe-ink);
  border-color: var(--ffe-ink);
  color: #fff;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .ffe-sizelink:hover { transform: none; }
}
/* ==========================================================================
   Header: mega menu panel width + search field

   The mega panel is absolutely positioned against .ffe-nav, so the nav has to
   span the boxed column or the panel inherits the nav's shrink-wrapped width
   and auto-fit collapses the columns into one.
   ========================================================================== */

.elementor-widget-ffe-mega-menu,
.elementor-widget-ffe-mega-menu > .elementor-widget-container {
  width: 100%;
}

.ffe-nav { width: 100%; }
.ffe-nav__list { justify-content: flex-start; gap: 38px; }

.ffe-mega {
  border-top: 1px solid var(--ffe-border);
  box-shadow: 0 14px 28px -18px rgba(25, 20, 20, 0.18);
}

.ffe-mega__inner {
  grid-template-columns: 1fr;
  padding: 38px 0 42px 24px;
}

.ffe-mega__cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 40px;
}

.ffe-mega__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.ffe-mega__links li { margin-bottom: 13px; }
.ffe-mega__links a { font-size: 14px; color: #6F6663; }

.ffe-mega__promo { display: none; }

/* Search field ----------------------------------------------------------- */

.elementor-widget-hfe-search-button .hfe-search-button-wrapper {
  width: 100%;
  max-width: 300px;
  position: relative;
}

.elementor-widget-hfe-search-button input[type="search"].hfe-search-form__input {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 16px;
  background: #F4F1EE;
  border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ffe-ink);
  box-shadow: none;
  transition: border-color 0.18s var(--ffe-ease), background-color 0.18s var(--ffe-ease);
}

.elementor-widget-hfe-search-button input[type="search"].hfe-search-form__input::placeholder {
  color: var(--ffe-muted);
  opacity: 1;
}

.elementor-widget-hfe-search-button input[type="search"].hfe-search-form__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--ffe-ink);
}

.elementor-widget-hfe-search-button .hfe-search-submit,
.elementor-widget-hfe-search-button button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--ffe-ink);
  cursor: pointer;
  padding: 0;
}

@media (max-width: 1024px) {
  .elementor-widget-hfe-search-button .hfe-search-button-wrapper { max-width: 100%; }
  .elementor-widget-hfe-search-button input[type="search"].hfe-search-form__input {
    height: 38px;
    padding: 0 36px 0 12px;
    font-size: 13px;
  }
  .elementor-widget-hfe-search-button .hfe-search-submit { width: 36px; height: 38px; }
}
/* Search field: icon_text layout renders input + reset + submit inside
   .hfe-search-form__container. The reset button is hidden so the control
   reads as a single field with a magnifier, matching the reference. */

.elementor-widget-hfe-search-button .hfe-search-form__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.elementor-widget-hfe-search-button .hfe-search-form__container input[type="search"].hfe-search-form__input {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 16px;
  background: #F4F1EE;
  border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ffe-ink);
  box-shadow: none;
  transition: border-color 0.18s var(--ffe-ease), background-color 0.18s var(--ffe-ease);
}

.elementor-widget-hfe-search-button .hfe-search-form__container input[type="search"]::placeholder {
  color: var(--ffe-muted);
  opacity: 1;
}

.elementor-widget-hfe-search-button .hfe-search-form__container input[type="search"]:focus {
  outline: none;
  background: #fff;
  border-color: var(--ffe-ink);
}

/* Native search clear + HFE's own reset button are redundant here. */
.elementor-widget-hfe-search-button #clear-with-button { display: none; }
.elementor-widget-hfe-search-button input[type="search"]::-webkit-search-cancel-button { display: none; }

.elementor-widget-hfe-search-button .hfe-search-submit {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0 var(--ffe-radius) var(--ffe-radius) 0;
  color: var(--ffe-ink);
  cursor: pointer;
  padding: 0;
  transition: color 0.18s var(--ffe-ease);
}

.elementor-widget-hfe-search-button .hfe-search-submit:hover { color: var(--ffe-accent); }
.elementor-widget-hfe-search-button .hfe-search-submit i { font-size: 14px; }

@media (max-width: 1024px) {
  .elementor-widget-hfe-search-button .hfe-search-form__container input[type="search"].hfe-search-form__input {
    height: 38px;
    padding: 0 36px 0 12px;
    font-size: 13px;
  }
  .elementor-widget-hfe-search-button .hfe-search-submit { width: 36px; height: 36px; }
}
/* Submit button renders 50px wide from the widget size control, so the field
   needs matching right padding to keep text clear of the icon. */
.elementor-widget-hfe-search-button .hfe-search-form__container input[type="search"].hfe-search-form__input { padding-right: 56px; }
.elementor-widget-hfe-search-button .hfe-search-submit { right: 1px; top: 1px; height: 40px; }
@media (max-width: 1024px) {
  .elementor-widget-hfe-search-button .hfe-search-form__container input[type="search"].hfe-search-form__input { padding-right: 48px; }
  .elementor-widget-hfe-search-button .hfe-search-submit { height: 36px; }
}

/* On phones a 22%-wide text field is unusable, so the search drops to its own
   full-width row beneath the logo and cart. */
@media (max-width: 768px) {
  .elementor-element-b55f886 > .e-con-inner { flex-wrap: wrap !important; row-gap: 10px; }
  .elementor-element-0c9e268 { --width: 100% !important; order: 3; }
  .elementor-element-9a673f7 { --width: 62% !important; order: 1; }
  .elementor-element-dcf2c58 { --width: 38% !important; order: 2; }
  .elementor-widget-hfe-search-button .hfe-search-button-wrapper { max-width: 100%; }
}

/* Column gap plus 62%+38% overflowed the row and wrapped the cart. */
@media (max-width: 768px) {
  .elementor-element-b55f886 > .e-con-inner { column-gap: 0 !important; align-items: center; }
  .elementor-element-9a673f7 { --width: 58% !important; }
  .elementor-element-dcf2c58 { --width: 42% !important; }
}

/* ==========================================================================
   Mobile navigation: off-canvas drawer

   Below 1024px the nav becomes a slide-in panel with its own header (logo +
   close), a dimmed backdrop, and accordion sub-menus. On desktop the panel
   wrapper is display:contents so the horizontal bar is untouched.
   ========================================================================== */

.ffe-nav__panel { display: contents; }
.ffe-nav__panelhead,
.ffe-nav__backdrop { display: none; }

@media (max-width: 1024px) {

  .ffe-nav__panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    width: min(84vw, 340px);
    height: 100vh;
    height: 100dvh;
    background: var(--ffe-surface);
    box-shadow: 0 0 60px -12px rgba(25, 20, 20, 0.35);
    transform: translateX(-100%);
    transition: transform 0.34s var(--ffe-ease);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .ffe-nav.is-open .ffe-nav__panel { transform: translateX(0); }

  .ffe-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(25, 20, 20, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ffe-ease), visibility 0.3s;
    border: 0;
    padding: 0;
  }

  .ffe-nav.is-open .ffe-nav__backdrop { opacity: 1; visibility: visible; }

  /* Panel header ------------------------------------------------------- */

  .ffe-nav__panelhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 20px;
    border-bottom: 1px solid var(--ffe-border);
    flex: 0 0 auto;
  }

  .ffe-nav__panellogo img { display: block; max-width: 104px; height: auto; }

  .ffe-nav__close {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid var(--ffe-border);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.18s var(--ffe-ease), border-color 0.18s var(--ffe-ease);
  }

  .ffe-nav__close::before,
  .ffe-nav__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    margin: -0.75px 0 0 -7px;
    background: var(--ffe-ink);
    border-radius: 2px;
  }

  .ffe-nav__close::before { transform: rotate(45deg); }
  .ffe-nav__close::after { transform: rotate(-45deg); }

  .ffe-nav__close:hover { background: var(--ffe-ink); border-color: var(--ffe-ink); }
  .ffe-nav__close:hover::before,
  .ffe-nav__close:hover::after { background: #fff; }

  /* Menu list ---------------------------------------------------------- */

  .ffe-nav__list {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 40px;
    margin: 0;
    width: 100%;
  }

  .ffe-nav__item { border-bottom: 1px solid var(--ffe-border); }

  .ffe-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 22px;
    font-size: 12.5px;
    letter-spacing: 0.09em;
    border-bottom: 0;
  }

  .ffe-nav__link::after { display: none; }

  /* Caret becomes a + / − affordance. */
  .ffe-nav__caret {
    position: relative;
    width: 13px;
    height: 13px;
    border: 0;
    transform: none;
    flex: 0 0 13px;
  }

  .ffe-nav__caret::before,
  .ffe-nav__caret::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 13px;
    height: 1.5px;
    margin-top: -0.75px;
    background: var(--ffe-ink);
    transition: transform 0.26s var(--ffe-ease), opacity 0.26s var(--ffe-ease);
  }

  .ffe-nav__caret::after { transform: rotate(90deg); }

  .ffe-nav__item.is-open > .ffe-nav__link { color: var(--ffe-accent); }
  .ffe-nav__item.is-open .ffe-nav__caret::before,
  .ffe-nav__item.is-open .ffe-nav__caret::after { background: var(--ffe-accent); }
  .ffe-nav__item.is-open .ffe-nav__caret::after { transform: rotate(0deg); opacity: 0; }
  .ffe-nav__item:hover .ffe-nav__caret { transform: none; }

  /* Accordion panel ---------------------------------------------------- */

  .ffe-mega {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    background: var(--ffe-tint);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ffe-ease);
  }

  .ffe-nav__item.is-open > .ffe-mega { max-height: 1400px; }

  .ffe-mega__inner {
    display: block;
    padding: 6px 22px 18px;
    max-width: none;
  }

  .ffe-mega__cols { display: block; }

  .ffe-mega__col + .ffe-mega__col { margin-top: 18px; }

  .ffe-mega__heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ffe-muted);
    margin: 14px 0 8px;
  }

  .ffe-mega__links li { margin-bottom: 0; }

  .ffe-mega__links a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--ffe-ink);
  }

  .ffe-mega__links a:hover { padding-left: 4px; color: var(--ffe-accent); }

  .ffe-mega__promo { display: none; }

  /* Toggle button ------------------------------------------------------ */

  .ffe-nav__toggle { display: inline-flex; }
}

body.ffe-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .ffe-nav__panel, .ffe-nav__backdrop, .ffe-mega { transition: none; }
}
/* ==========================================================================
   Mobile header row: menu trigger left, logo centred, cart right.
   Search keeps its own full-width row underneath.
   ========================================================================== */

@media (max-width: 1024px) {

  /* The nav row now only carries the drawer, so collapse its chrome. The
     row must stay in flow (not display:none) because the fixed drawer
     panel lives inside it. */
  .elementor-element-39c0a23 {
    padding-block: 0 !important;
    border: 0 !important;
    min-height: 0 !important;
  }

  .ffe-nav__toggle { display: none !important; }

  /* Trigger button: icon only, no chrome. */
  .ffe-navtrigger .elementor-button {
    background: transparent;
    border: 0;
    padding: 6px 0;
    color: var(--ffe-ink);
    box-shadow: none;
    min-width: 0;
  }

  .ffe-navtrigger .elementor-button:hover { background: transparent; color: var(--ffe-accent); }
  .ffe-navtrigger .elementor-button-icon i { font-size: 20px; }
  .ffe-navtrigger .elementor-button-text { display: none; }
  .ffe-navtrigger .elementor-button-content-wrapper { gap: 0; }
}

@media (max-width: 768px) {
  /* Equal side columns keep the logo optically centred. */
  .elementor-element-39200ba { --width: 22% !important; order: 1; }
  .elementor-element-9a673f7 { --width: 56% !important; order: 2; }
  .elementor-element-dcf2c58 { --width: 22% !important; order: 3; }
  .elementor-element-0c9e268 { --width: 100% !important; order: 4; }

  .elementor-element-dcf2c58 .elementor-widget-hfe-cart { display: flex; justify-content: flex-end; }
}
/* Elementor wrote a bare `elementor-hidden` class for this column rather than
   `elementor-hidden-desktop`, so it hid nowhere. Gate it explicitly instead:
   the trigger belongs to the drawer, which only exists below 1025px. */
@media (min-width: 1025px) {
  .elementor-element-39200ba { display: none !important; }
}
/* Hello Elementor's own page title (.entry-title, wrapped in .page-header)
   centers itself independently at a 1140px cap against the FULL viewport,
   not the site's 1200px boxed column -- so on Cart/Checkout/My Account it
   lands about 30px right of the form/content below it. Pin it to the same
   column those pages already use. */
.woocommerce-cart .page-header,
.woocommerce-checkout .page-header,
.woocommerce-account .page-header {
  max-width: calc(var(--ffe-max) + (var(--ffe-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--ffe-gutter);
  box-sizing: border-box;
}

.woocommerce-cart .page-header .entry-title,
.woocommerce-checkout .page-header .entry-title,
.woocommerce-account .page-header .entry-title {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Single product gallery -------------------------------------------------- */

.single-product .woocommerce-product-gallery { position: relative; }

.single-product .woocommerce-product-gallery__wrapper {
  border-radius: 6px;
  overflow: hidden;
  background: var(--ffe-tint);
  box-shadow: var(--ffe-shadow);
}

.single-product .woocommerce-product-gallery__image img {
  transition: transform 0.6s var(--ffe-ease);
}

.single-product .woocommerce-product-gallery__wrapper:hover img {
  transform: scale(1.045);
}

.single-product .woocommerce-product-gallery__trigger {
  top: 16px !important; right: 16px !important;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ffe-surface) !important;
  display: flex !important; align-items: center; justify-content: center;
  box-shadow: var(--ffe-shadow);
  opacity: 1 !important;
  transition: transform 0.2s var(--ffe-ease), background-color 0.2s var(--ffe-ease);
}

.single-product .woocommerce-product-gallery__trigger:hover {
  background: var(--ffe-ink) !important; transform: scale(1.08);
}

.single-product .woocommerce-product-gallery__trigger:hover img { filter: brightness(0) invert(1); }

.single-product span.onsale {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--ffe-accent) 0%, var(--ffe-accent-dark) 100%) !important;
  color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 0.03em;
  min-height: 0; min-width: 0; border-radius: 999px;
  padding: 7px 14px; line-height: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px -4px rgba(238, 52, 56, 0.55);
  animation: ffe-onsale-pop 0.4s var(--ffe-ease) both, ffe-onsale-glow 2.6s ease-in-out 0.4s infinite;
}

@keyframes ffe-onsale-pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes ffe-onsale-glow {
  0%, 100% { box-shadow: 0 6px 16px -4px rgba(238, 52, 56, 0.55); }
  50% { box-shadow: 0 6px 20px -2px rgba(238, 52, 56, 0.8); }
}

.single-product .flex-control-thumbs {
  display: flex !important; flex-wrap: wrap; gap: 12px;
  margin: 16px 0 0 !important; padding: 0 !important; list-style: none;
}

.single-product .flex-control-thumbs li { width: auto !important; }

.single-product .flex-control-thumbs li img {
  width: 84px !important; height: 84px !important; object-fit: cover;
  border-radius: 4px; border: 1.5px solid var(--ffe-border) !important;
  opacity: 1 !important; cursor: pointer;
  transition: border-color 0.2s var(--ffe-ease), transform 0.2s var(--ffe-ease);
}

.single-product .flex-control-thumbs li img:hover {
  border-color: var(--ffe-ink) !important; transform: translateY(-3px);
}

.single-product .flex-control-thumbs li img.flex-active {
  border-color: var(--ffe-ink) !important;
  box-shadow: 0 0 0 1px var(--ffe-ink);
}

@media (max-width: 600px) {
  .single-product .flex-control-thumbs li img { width: 64px !important; height: 64px !important; }
}
/* Contact page ------------------------------------------------------------ */

.ffe-contact {
  max-width: var(--ffe-max) !important; margin: 0 auto !important; padding: 56px var(--ffe-gutter) 90px;
}

.ffe-contact__intro {
  text-align: center; max-width: 620px; margin: 0 auto 52px;
}

.ffe-contact__intro .ffe-eyebrow { display: block; margin-bottom: 10px; }

.ffe-contact__intro h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 14px;
}

.ffe-contact__intro p {
  color: var(--ffe-ink-70); font-size: 15.5px; line-height: 1.7; margin: 0;
}

.ffe-contact__grid {
  display: grid !important; grid-template-columns: minmax(300px, 0.86fr) 1.3fr;
  gap: 28px; align-items: stretch;
}

.ffe-contact__info {
  display: flex; flex-direction: column; gap: 14px;
}

.ffe-contact__pill {
  display: flex; align-items: center; gap: 16px;
  background: var(--ffe-tint); border: 1px solid var(--ffe-border);
  border-radius: 999px; padding: 14px 22px;
  transition: border-color 0.2s var(--ffe-ease), transform 0.2s var(--ffe-ease);
}

.ffe-contact__pill:hover { border-color: var(--ffe-accent); transform: translateY(-2px); }

.ffe-contact__icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  background: var(--ffe-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.ffe-contact__icon svg { width: 18px; height: 18px; }

.ffe-contact__pilltext { min-width: 0; }

.ffe-contact__label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ffe-muted); margin-bottom: 3px;
}

.ffe-contact__pilltext a, .ffe-contact__pilltext p {
  font-family: 'Archivo', sans-serif; font-size: 15.5px; font-weight: 600;
  color: var(--ffe-ink); line-height: 1.45; margin: 0; text-decoration: none;
  word-break: break-word;
}

.ffe-contact__pilltext a:hover { color: var(--ffe-accent); }

.ffe-contact__pilltext p { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 14px; }

.ffe-contact__social { display: flex; gap: 16px; flex-wrap: wrap; }

.ffe-contact__social a { display: inline-flex; align-items: center; gap: 7px; }

.ffe-social-icon { width: 16px; height: 16px; flex: 0 0 auto; }

.ffe-social-icon--fb { color: #1877F2; }

.ffe-social-icon--ig { color: #E1306C; }

.ffe-contact__map {
  border-radius: 6px; overflow: hidden; border: 1px solid var(--ffe-border);
  box-shadow: var(--ffe-shadow); min-height: 320px;
}

.ffe-contact__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

@media (max-width: 900px) {
  .ffe-contact__grid { grid-template-columns: 1fr; }
  .ffe-contact__map { min-height: 280px; }
  .ffe-contact__map iframe { min-height: 280px; }
}

@media (max-width: 560px) {
  .ffe-contact__pill { padding: 12px 16px; gap: 12px; }
  .ffe-contact__icon { width: 36px; height: 36px; }
}
/* Cart drawer ------------------------------------------------------------- */

.ffe-cart-drawer {
  position: fixed; inset: 0; z-index: 100000; visibility: hidden; pointer-events: none;
}

.ffe-cart-drawer.is-open { visibility: visible; pointer-events: auto; }

.ffe-cart-drawer__backdrop {
  position: absolute; inset: 0; background: rgba(25, 20, 20, 0.55);
  opacity: 0; transition: opacity 0.25s var(--ffe-ease);
}

.ffe-cart-drawer.is-open .ffe-cart-drawer__backdrop { opacity: 1; }

.ffe-cart-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--ffe-surface); box-shadow: -20px 0 50px -20px rgba(25, 20, 20, 0.35);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s var(--ffe-ease), opacity 0.2s var(--ffe-ease);
}

.ffe-cart-drawer.is-open .ffe-cart-drawer__panel { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .ffe-cart-drawer__backdrop, .ffe-cart-drawer__panel { transition: none; }
}

.ffe-cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--ffe-border); flex: 0 0 auto;
}

.ffe-cart-drawer__title { font-size: 16px; margin: 0; letter-spacing: 0.02em; }

.ffe-cart-drawer__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0; border: 0; background: transparent; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--ffe-muted); border-radius: 50%;
  transition: color 0.15s var(--ffe-ease), background-color 0.15s var(--ffe-ease);
}

.ffe-cart-drawer__close:hover { color: var(--ffe-ink); background: var(--ffe-tint); }

.ffe-cart-drawer__body {
  flex: 1 1 auto; display: flex; flex-direction: column; min-height: 0;
  padding: 20px 24px; overflow-y: auto;
}

.ffe-cart-drawer__items { display: flex; flex-direction: column; gap: 20px; }

.ffe-cart-drawer__totals { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ffe-border); }

.ffe-cart-drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; flex: 0 0 auto; }

.ffe-cart-drawer__empty {
  flex: 1 1 auto; text-align: center; padding: 60px 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: var(--ffe-ink-70);
}

@media (max-width: 480px) {
  .ffe-cart-drawer__panel { width: 100%; }
}
/* Search results page ----------------------------------------------------- */

.ffe-search-wrap {
  max-width: var(--ffe-max); margin: 0 auto; padding: 44px var(--ffe-gutter) 90px;
}

.ffe-search-subhead {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 60px 0 28px;
}

.ffe-search-wrap > .ffe-grid + .ffe-search-subhead { margin-top: 64px; }

.ffe-pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 56px; flex-wrap: wrap;
}

.ffe-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--ffe-ink);
  text-decoration: none; transition: border-color 0.2s var(--ffe-ease), background 0.2s var(--ffe-ease), color 0.2s var(--ffe-ease);
}

.ffe-pagination .page-numbers.dots { border-color: transparent; color: var(--ffe-muted); }

.ffe-pagination .page-numbers:hover:not(.current):not(.dots) { border-color: var(--ffe-ink); }

.ffe-pagination .page-numbers.current {
  background: var(--ffe-ink); color: #fff; border-color: var(--ffe-ink);
}

.ffe-search-empty {
  text-align: center; max-width: 460px; margin: 48px auto 40px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.ffe-search-empty svg { width: 46px; height: 46px; color: var(--ffe-muted); margin-bottom: 6px; }

.ffe-search-empty h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem); margin: 0;
}

.ffe-search-empty p {
  color: var(--ffe-ink-70); font-size: 14.5px; line-height: 1.75; margin: 0;
}

.ffe-search-empty__form {
  display: flex; width: 100%; max-width: 360px; margin: 10px 0 2px;
  border: 1px solid var(--ffe-border); border-radius: var(--ffe-radius);
  overflow: hidden; background: var(--ffe-tint);
}

.ffe-search-empty__form input {
  flex: 1; min-width: 0; border: 0; background: transparent; padding: 13px 16px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--ffe-ink); outline: none;
}

.ffe-search-empty__form input::placeholder { color: var(--ffe-muted); }

.ffe-search-empty__form button {
  border: 0; background: var(--ffe-ink); color: #fff; padding: 0 22px; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s var(--ffe-ease);
}

.ffe-search-empty__form button:hover { background: var(--ffe-accent); }

@media (max-width: 600px) {
  .ffe-search-wrap { padding: 32px 20px 60px; }
  .ffe-search-subhead { margin: 44px 0 20px; }
  .ffe-search-empty { margin: 30px auto 24px; }
}
/* Overrides Hello Elementor's theme reset.css, which sets the same
   selectors' hover/focus background to the old #c36 (magenta). */
[type=button]:focus, [type=button]:hover,
[type=submit]:focus, [type=submit]:hover,
button:focus, button:hover {
  background-color: #EE3538 !important;
}

/* Classic checkout — card layout ----------------------------------------- */

.woocommerce-checkout #customer_details,
.woocommerce-checkout .col2-set { display: block; width: 100%; }
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { width: 100%; float: none; }

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout #order_review {
  background: var(--ffe-surface); border: 1px solid var(--ffe-border);
  border-radius: 6px; padding: 28px 30px; margin: 0 0 24px;
}
/* Payment renders nested inside #order_review (default WooCommerce
   wiring) so it reads as a section of that same card, not its own card. */
.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--ffe-border);
}
/* WooCommerce core's ".woocommerce-checkout #payment" rule uses an ID
   selector, which beats any of our class-based rules regardless of load
   order — it's the source of the translucent purple tint. */
.woocommerce-checkout #payment {
  background: transparent !important; border-radius: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: var(--ffe-border) !important; padding: 0 !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading,
.ffe-order-review__heading {
  font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; color: var(--ffe-ink); margin: 0 0 20px;
}

#order_review_heading { margin: 0 0 16px; }

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row { margin: 0 0 16px; }
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row:last-of-type { margin-bottom: 0; }
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ffe-ink-70); margin: 0 0 6px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .input-text {
  width: 100%; box-sizing: border-box;
}

/* Order review card ------------------------------------------------------- */

.ffe-order-review { background: transparent; border: 0; padding: 0; margin: 0; }

.ffe-cart-items {
  display: flex; flex-direction: column; gap: 16px;
  padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--ffe-border);
}

.ffe-cart-item { display: flex; align-items: center; gap: 14px; }

.ffe-cart-item__image {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--ffe-border); background: var(--ffe-tint);
}
.ffe-cart-item__image img { display: block; width: 100%; height: 100%; object-fit: cover; }

.ffe-cart-item__details { flex: 1 1 auto; min-width: 0; }
.ffe-cart-item__name {
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ffe-ink); line-height: 1.4; margin-bottom: 4px;
}
.ffe-cart-item__meta { font-size: 13px; color: var(--ffe-muted); }
.ffe-cart-item__price { display: inline-flex; align-items: center; gap: 4px; }

.ffe-cart-item__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }

.ffe-qty-controls {
  display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--ffe-border);
  border-radius: 999px; overflow: hidden;
}
.ffe-qty-btn {
  appearance: none; border: 0; background: transparent; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  line-height: 1; color: var(--ffe-ink); cursor: pointer; transition: background-color 0.15s var(--ffe-ease);
}
.ffe-qty-btn:hover, .ffe-qty-btn:focus { background: var(--ffe-tint); color: var(--ffe-ink); }
.ffe-qty-val {
  min-width: 26px; text-align: center; font-size: 13px; font-weight: 600; color: var(--ffe-ink);
}

.ffe-cart-item__remove {
  display: flex; align-items: center; justify-content: center; width: 26px; height: 26px;
  border-radius: 50%; color: var(--ffe-muted); text-decoration: none; font-size: 16px;
  line-height: 1; transition: color 0.15s var(--ffe-ease), background-color 0.15s var(--ffe-ease);
}
.ffe-cart-item__remove:hover { color: #fff; background: var(--ffe-accent); }

.ffe-order-totals { display: flex; flex-direction: column; gap: 12px; }

.ffe-total-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  font-size: 14px; color: var(--ffe-ink);
}
.ffe-total-row__label { color: var(--ffe-ink-70); font-weight: 500; flex: 0 0 auto; }
.ffe-total-row__value { text-align: right; }

.ffe-order-total {
  padding-top: 12px; border-top: 1px solid var(--ffe-border);
  font-family: 'Archivo', sans-serif; font-size: 16px; font-weight: 700;
}
.ffe-order-total .ffe-total-row__label { color: var(--ffe-ink); font-weight: 700; }

/* Delivery method — pill radio rows, matching the quick-view chip language */

.ffe-shipping-row .ffe-total-row__value { width: 100%; }
#shipping_method {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px;
}
/* input.shipping_method and label are siblings (li has no other children
   here, unlike payment methods), so flexing the <li> itself works cleanly —
   no float trick needed. */
#shipping_method li {
  margin: 0; display: flex !important; align-items: center; gap: 10px;
  border: 1px solid var(--ffe-border); border-radius: 10px; padding: 13px 16px;
  background: var(--ffe-surface); cursor: pointer;
  transition: border-color 0.15s var(--ffe-ease);
}
#shipping_method li:has(input.shipping_method:checked) {
  border: 2px solid var(--ffe-ink); padding: 12px 15px;
}
#shipping_method input.shipping_method {
  position: static; opacity: 1; appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; margin: 0 !important; flex: 0 0 auto;
  border: 1.5px solid var(--ffe-ink); border-radius: 50%; background: #fff; cursor: pointer;
}
#shipping_method input.shipping_method:checked {
  box-shadow: inset 0 0 0 4.5px var(--ffe-ink);
}
#shipping_method label {
  display: block; flex: 1 1 auto; margin: 0; padding: 0;
  font-size: 14px; font-weight: 600; color: var(--ffe-ink); cursor: pointer;
}
#shipping_method input.shipping_method:focus-visible {
  outline: 2px solid var(--ffe-accent); outline-offset: 2px;
}

/* Payment methods ---------------------------------------------------------- */

.woocommerce-checkout-payment ul.wc_payment_methods { list-style: none; margin: 0; padding: 0; }
.woocommerce-checkout-payment li.wc_payment_method {
  border: 1px solid var(--ffe-border); border-radius: 6px; margin: 0 0 10px; overflow: hidden;
}
.woocommerce-checkout-payment li.wc_payment_method:last-child { margin-bottom: 0; }
.woocommerce-checkout-payment li.wc_payment_method input.input-radio { position: absolute; opacity: 0; width: 1px; height: 1px; }
.woocommerce-checkout-payment li.wc_payment_method label {
  display: flex; align-items: center; gap: 8px; padding: 14px 16px; margin: 0;
  font-size: 14px; font-weight: 600; color: var(--ffe-ink); cursor: pointer;
}
.woocommerce-checkout-payment li.wc_payment_method label img { height: 18px; width: auto; }
.woocommerce-checkout-payment li.wc_payment_method input.input-radio:checked ~ label,
.woocommerce-checkout-payment li.wc_payment_method:has(input.input-radio:checked) label {
  background: transparent;
}
.woocommerce-checkout-payment li.wc_payment_method:has(input.input-radio:checked) { border-color: var(--ffe-accent); }
.woocommerce-checkout-payment .payment_box {
  padding: 4px 16px 18px; font-size: 13px; color: var(--ffe-ink-70);
}
.woocommerce-checkout-payment .payment_box p { margin: 0 0 10px; }
.woocommerce-checkout-payment .payment_box .cmp-surcharge-note { color: var(--ffe-accent-dark); font-weight: 500; }
.woocommerce-checkout-payment .payment_box .form-row { margin: 0 0 12px; }
.woocommerce-checkout-payment .payment_box .form-row label {
  display: block; padding: 0; font-size: 12px; font-weight: 600; color: var(--ffe-ink-70); margin: 0 0 6px; cursor: auto;
}
.woocommerce-checkout-payment .payment_box .input-text { width: 100%; box-sizing: border-box; }

.woocommerce-checkout .place-order { margin-top: 20px; }
.woocommerce-checkout .place-order .button { width: 100%; padding: 15px 28px; }

@media (max-width: 700px) {
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout .woocommerce-checkout-payment {
    padding: 20px;
  }
}

/* Classic checkout — polish pass ------------------------------------------
   Fixes: WooCommerce core's own ".button.alt" rule (3 classes) beat our
   earlier ".woocommerce button.button" rule (2 classes) on specificity, so
   Place Order stayed core's default purple. Its "#payment div.payment_box"
   rule is equally specific to ours and loads after, so that also needs an
   explicit override. The single biggest visual fix, though, is width: with
   no shipping column anymore the form spans the full 1200px content area
   and everything reads as sparse/empty — constraining it to a real
   single-column checkout width fixes most of the "stretched out" feel. */

.woocommerce-checkout form.checkout {
  max-width: 640px; margin: 0 auto;
}

#order_review_heading { display: none; }

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout #order_review {
  box-shadow: 0 1px 3px rgba(25, 20, 20, 0.04);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.ffe-order-review__heading {
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ffe-muted);
  margin: 0 0 22px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .input-text,
.woocommerce-checkout .payment_box .input-text {
  font-size: 14.5px; padding: 13px 14px;
  transition: border-color 0.15s var(--ffe-ease);
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .input-text:focus,
.woocommerce-checkout .payment_box .input-text:focus {
  outline: none; border-color: var(--ffe-ink);
}

.ffe-cart-item__price { color: var(--ffe-muted); font-size: 12.5px; }

.ffe-qty-controls { border-color: var(--ffe-border); }
.ffe-qty-btn { font-size: 16px; font-weight: 600; }



.woocommerce-checkout-payment li.wc_payment_method { border-radius: 8px; }
.woocommerce-checkout-payment li.wc_payment_method label img {
  height: 20px; vertical-align: middle; margin-left: 2px;
}
.woocommerce-checkout-payment .payment_box .cmp-surcharge-note {
  background: var(--ffe-tint); border-radius: 6px; padding: 10px 12px;
  color: var(--ffe-ink-70); font-weight: 600; font-size: 12.5px;
}
.woocommerce-checkout-payment .payment_box .cmp-account-number { font-size: 13px; }

/* Overrides WooCommerce core's own higher-specificity ".button.alt" and
   "#payment div.payment_box" rules (woocommerce.css), which otherwise win
   the cascade and leave the default purple/lavender showing through. */
.woocommerce-checkout .woocommerce-checkout-payment .button.alt,
.woocommerce-checkout button.button.alt,
#place_order {
  background-color: var(--ffe-accent) !important;
  font-size: 13px !important; padding: 16px 28px !important;
}
.woocommerce-checkout .woocommerce-checkout-payment .button.alt:hover,
.woocommerce-checkout button.button.alt:hover,
#place_order:hover {
  background-color: var(--ffe-accent-dark) !important;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: transparent !important; color: var(--ffe-ink-70) !important;
}

@media (max-width: 700px) {
  .woocommerce-checkout form.checkout { max-width: 100%; }
}

body.woocommerce-checkout .page-header { text-align: center; }


/* Payment options — heading, custom radios, segmented grouping, copy button */

.ffe-payment-heading {
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ffe-muted);
  margin: 0 0 16px;
}

.woocommerce-checkout-payment ul.wc_payment_methods {
  border: 0 !important; padding: 0 !important; margin: 0;
}

.woocommerce-checkout-payment li.wc_payment_method {
  border: 1px solid var(--ffe-border) !important; border-radius: 0;
  margin: 0 0 -1px !important; background: var(--ffe-surface);
}
.woocommerce-checkout-payment li.wc_payment_method:first-child {
  border-top-left-radius: 10px; border-top-right-radius: 10px;
}
.woocommerce-checkout-payment li.wc_payment_method:last-child {
  border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; margin-bottom: 0;
}

/* The checked method breaks out of the shared-border group into its own
   bolder box; its neighbours pick up rounded corners so the group still
   reads as two clean segments around the gap it leaves. */
.woocommerce-checkout-payment li.wc_payment_method:has(input.input-radio:checked) {
  border: 2px solid var(--ffe-ink) !important; border-radius: 10px;
  margin: 0 0 14px !important; position: relative; z-index: 1;
}
.woocommerce-checkout-payment li.wc_payment_method:has(input.input-radio:checked) + li.wc_payment_method {
  border-top-left-radius: 10px; border-top-right-radius: 10px; margin-top: 0 !important;
}
.woocommerce-checkout-payment li.wc_payment_method:has(+ li.wc_payment_method input.input-radio:checked) {
  border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; margin-bottom: 14px !important;
}

/* Visible custom radio (earlier pass hid the native input entirely). */
.woocommerce-checkout-payment li.wc_payment_method input.input-radio {
  position: static !important; opacity: 1 !important; width: 20px !important; height: 20px !important;
  appearance: none; -webkit-appearance: none; margin: 0 !important; flex: 0 0 auto;
  border: 1.5px solid var(--ffe-ink); border-radius: 50%; background: #fff; cursor: pointer;
}
.woocommerce-checkout-payment li.wc_payment_method input.input-radio:checked {
  background: #fff;
  box-shadow: inset 0 0 0 4.5px var(--ffe-ink);
}

/* input.input-radio and label are SIBLINGS in WooCommerce's markup, not
   parent/child — flexing the label alone only lays out its own text+icon
   and, being a block-level flex container, pushes itself onto its own line
   below the radio. Floating the radio lets the label's block flow fill the
   remaining width on the same line instead. */
.woocommerce-checkout-payment li.wc_payment_method {
  padding: 16px 18px !important; overflow: hidden;
}
.woocommerce-checkout-payment li.wc_payment_method input.input-radio {
  float: left !important; margin: 1px 12px 0 0 !important;
}
.woocommerce-checkout-payment li.wc_payment_method label {
  display: flex !important; align-items: center; gap: 10px; padding: 0 !important;
  font-size: 15px; font-weight: 600; cursor: pointer; min-height: 20px;
}
.woocommerce-checkout-payment li.wc_payment_method label img {
  height: 26px; width: auto; margin: 0;
}

.woocommerce-checkout-payment .payment_box {
  clear: both; padding: 14px 0 0 32px !important;
}
/* WooCommerce core's speech-bubble pointer — doesn't suit this bordered-box
   design and was leaving an odd grey band with a triangle in it. */
.woocommerce-checkout-payment .payment_box::before {
  display: none !important;
}
.woocommerce-checkout-payment .payment_box p:first-child { margin-top: 0; }
.woocommerce-checkout-payment .payment_box .cmp-surcharge-note {
  background: transparent !important; padding: 0 !important;
  color: var(--ffe-muted) !important; font-weight: 500 !important;
}
.woocommerce-checkout-payment .payment_box .cmp-account-number {
  color: var(--ffe-ink); font-weight: 500;
}
.woocommerce-checkout-payment .payment_box .cmp-copy-btn {
  appearance: none; border: 0; background: none; color: var(--ffe-accent);
  font-weight: 700; font-size: 13px; cursor: pointer; padding: 0; margin-left: 2px;
  text-decoration: underline; text-underline-offset: 2px;
}
.woocommerce-checkout-payment .payment_box .cmp-copy-btn:hover { color: var(--ffe-accent-dark); }
.woocommerce-checkout-payment .payment_box .cmp-copy-btn.is-copied { color: var(--ffe-ink); text-decoration: none; }
.woocommerce-checkout-payment .payment_box .form-row { margin: 0 0 12px !important; }
.woocommerce-checkout-payment .payment_box .input-text {
  border: 1px solid var(--ffe-border) !important; border-radius: 8px !important;
}

/* Shop archive — scroll loading instead of pagination ---------------------- */

.ffe-load-more {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 0 12px; gap: 12px;
}
.ffe-load-more__btn { min-width: 200px; }
.ffe-load-more__spinner {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2.5px solid var(--ffe-border); border-top-color: var(--ffe-ink);
  animation: ffe-spin 0.7s linear infinite;
}
@keyframes ffe-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .ffe-load-more__spinner { animation-duration: 1.6s; }
}

/* Checkout field validation — error state + inline message */

.woocommerce-checkout .form-row.woocommerce-invalid input.input-text,
.woocommerce-checkout .form-row.ffe-field-invalid input.input-text {
  border-color: var(--ffe-accent) !important;
}
.ffe-field-error {
  display: block; color: var(--ffe-accent-dark); font-size: 12px;
  margin-top: 6px; line-height: 1.4;
}

/* Store policy pages (Refund, Shipping process, Return & Exchange) -------- */

.ffe-policy-page .page-header { display: none; }

.ffe-policy-wrap {
  max-width: var(--ffe-max); margin: 0 auto; padding: 48px var(--ffe-gutter) 90px;
}

.ffe-policy {
  max-width: 720px; margin: 0 auto;
  font-family: 'Manrope', sans-serif; font-size: 15.5px; line-height: 1.85;
  color: var(--ffe-ink-70);
}
.ffe-policy p { margin: 0 0 22px; }
.ffe-policy p:last-child { margin-bottom: 0; }
.ffe-policy strong { color: var(--ffe-ink); font-weight: 700; }
.ffe-policy a { color: var(--ffe-accent); text-decoration: underline; text-underline-offset: 2px; }
.ffe-policy a:hover { color: var(--ffe-accent-dark); }
.ffe-policy em {
  display: block; font-style: normal; font-size: 13px; color: var(--ffe-muted);
  border-top: 1px solid var(--ffe-border); padding-top: 16px; margin-top: 8px;
}

.ffe-policy__intro {
  font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--ffe-ink); line-height: 1.5; margin: 0 0 30px !important;
  padding-left: 18px; border-left: 3px solid var(--ffe-accent);
}

@media (max-width: 600px) {
  .ffe-policy-wrap { padding: 32px 20px 60px; }
}

.ffe-review-photo-field { margin-top: 4px; }
.ffe-review-photo-field label {
  display: block; font-family: 'Manrope', sans-serif; font-size: 14px;
  font-weight: 600; color: var(--ffe-ink); margin-bottom: 6px;
}
.ffe-review-photo-field input[type="file"] {
  display: block; width: 100%; max-width: 360px; font-family: 'Manrope', sans-serif;
  font-size: 13px; color: var(--ffe-muted); border: 1px dashed var(--ffe-border);
  border-radius: 6px; padding: 10px 12px; background: var(--ffe-tint);
}
.ffe-review-photo-wrap { margin-top: 10px; }
.ffe-review-photo {
  max-width: 160px; height: auto; border-radius: 6px; border: 1px solid var(--ffe-border);
  display: block;
}

/* Order tracking results - richer card treatment for the order-details
   table, line-item thumbnails, and billing address that WooCommerce's own
   templates render with only bare/default markup. */

.ffe-track__order {
  box-shadow: var(--ffe-shadow);
  padding: 28px 30px;
  display: flex; flex-direction: column;
}

.ffe-track__order-head { order: 0; }
.ffe-track__order .woocommerce-customer-details { order: 1; }
.ffe-track__order .woocommerce-order-details { order: 2; }

.ffe-track__order .woocommerce-order-details__title {
  font-size: 13px; font-family: 'Manrope', sans-serif; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ffe-muted);
  margin: 0 0 18px;
}

.ffe-track__order table.order_details {
  width: 100%; border-collapse: collapse; margin: 0;
}

.ffe-track__order table.order_details thead th {
  text-align: left; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ffe-muted);
  padding: 0 0 12px; border-bottom: 1px solid var(--ffe-border);
}

.ffe-track__order table.order_details thead th.product-total { text-align: right; }

.ffe-track__order table.order_details tbody tr.order_item td {
  padding: 18px 0; border-bottom: 1px solid var(--ffe-border); vertical-align: top;
  font-size: 14px;
}

.ffe-track__order table.order_details tbody tr.order_item td.product-total {
  text-align: right; font-weight: 600; white-space: nowrap; padding-top: 18px;
}

.ffe-track__item-row { display: inline-flex; align-items: flex-start; gap: 14px; vertical-align: top; }

.ffe-track__item-thumb-wrap { flex: 0 0 auto; }

.ffe-track__item-thumb {
  width: 56px; height: 56px; object-fit: cover; border: 1px solid var(--ffe-border);
  border-radius: var(--ffe-radius); display: block;
}

.ffe-track__item-info { flex: 1 1 auto; min-width: 0; }

.ffe-track__item-info a { color: var(--ffe-ink); text-decoration: none; font-weight: 600; }
.ffe-track__item-info a:hover { color: var(--ffe-accent); }

.ffe-track__order table.order_details td.product-name > .product-quantity {
  color: var(--ffe-muted); font-weight: 500; margin-left: 8px; display: inline-block;
}

.ffe-track__order table.order_details td.product-name ul.wc-item-meta {
  list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 16px;
}

.ffe-track__order table.order_details td.product-name ul.wc-item-meta li {
  font-size: 12.5px; color: var(--ffe-ink-70); display: flex; align-items: baseline; gap: 4px;
}

.ffe-track__order table.order_details td.product-name ul.wc-item-meta li p {
  display: inline; margin: 0;
}

.ffe-track__order table.order_details td.product-name .wc-item-meta-label {
  font-weight: 600; color: var(--ffe-muted); text-transform: uppercase; font-size: 11px;
  letter-spacing: 0.04em;
}

.ffe-track__order table.order_details tfoot tr th,
.ffe-track__order table.order_details tfoot tr td {
  padding: 10px 0; border: none; font-size: 13.5px; font-weight: 500;
}

.ffe-track__order table.order_details tfoot tr td { text-align: right; }

.ffe-track__grand-total {
  font-size: 19px; font-weight: 700; font-family: 'Archivo', sans-serif; color: var(--ffe-ink);
}

.ffe-track__order .woocommerce-customer-details {
  margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid var(--ffe-border);
}

.ffe-track__order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 13px; font-family: 'Manrope', sans-serif; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ffe-muted);
  margin: 0 0 12px;
}

.ffe-track__order .woocommerce-customer-details address {
  font-style: normal; background: var(--ffe-tint); border-radius: var(--ffe-radius);
  padding: 18px 20px; font-size: 14px; line-height: 1.7; color: var(--ffe-ink);
}

.ffe-track__order .woocommerce-customer-details--phone,
.ffe-track__order .woocommerce-customer-details--email {
  margin: 6px 0 0; color: var(--ffe-ink-70);
}

.ffe-track__order .woocommerce-columns--addresses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

@media (max-width: 640px) {
  .ffe-track__order { padding: 22px 18px; }
  .ffe-track__item-thumb { width: 46px; height: 46px; }
  .ffe-track__order table.order_details tbody tr.order_item td.product-total { padding-left: 10px; }
  .ffe-track__order .woocommerce-columns--addresses { grid-template-columns: 1fr; }
}
/* Marquee bar (ffe-marquee-bar widget) */
.ffe-marquee { overflow: hidden; width: 100%; }
.ffe-marquee__track {
    display: flex;
    width: max-content;
    animation: ffe-marquee-scroll-left var(--ffe-marquee-duration, 20s) linear infinite;
}
.ffe-marquee--right .ffe-marquee__track { animation-name: ffe-marquee-scroll-right; }
.ffe-marquee--pausable:hover .ffe-marquee__track { animation-play-state: paused; }
.ffe-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}
.ffe-marquee__item { white-space: nowrap; }
.ffe-marquee__item--link { color: inherit; text-decoration: none; }
.ffe-marquee__item--link:hover { text-decoration: underline; }
.ffe-marquee__sep { margin: 0 16px; opacity: 0.6; }
@keyframes ffe-marquee-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes ffe-marquee-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .ffe-marquee__track { animation: none; }
}

/* Checkout has no use for the header cart icon - the order review on
   the page itself already covers everything it would lead to. */
body.woocommerce-checkout .hfe-cart-container {
    display: none !important;
}
