/* FQ Widgets styles. Composes the theme's tokens and base classes (.fq-card,
 * .fq-btn, .fq-badge, .fq-tag) into per-widget layout. Requires the Fro Quantum
 * Organics child theme for the --fq-* tokens. Mobile-first; targets 360/768/1280.
 */

/* ======================================================== Utilities ===== */
/* Break a widget out of its boxed container to span the full viewport width.
 * The widget's inner .fq-container keeps the content aligned to the site grid.
 * If a section is already set to Full Width with no padding, the toggle is
 * harmless. */
.fq-fullbleed {
  margin-inline: calc(50% - 50vw);
}

/* Image that fills a fixed-ratio parent. The `height: 100% !important` beats
 * Elementor's `.elementor img { height: auto }`, which otherwise leaves the box
 * background showing below the image. Parent must be position:relative + overflow:hidden. */
.fq-coverimg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .fq-coverimg { transition: none; }
}

/* ====================================================== Product Card ===== */
.fq-product-card {
  height: 100%;
}

.fq-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: var(--fq-pc-ratio, 1 / 1);
  background-color: var(--fq-surface);
  overflow: hidden;
}

/* Selector is intentionally specific, and height is forced, to beat the builder's
 * default `.elementor-widget-container img { height: auto }`. Without this the
 * image sits at its natural height and the box background shows below it. */
.fq-product-card .fq-product-card__media .fq-product-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.fq-product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  z-index: 2;
}

.fq-product-card__quick {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  height: 2.25rem;
  width: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--fq-radius-pill);
  border: 1px solid var(--fq-border);
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--fq-primary);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--fq-transition), transform var(--fq-transition);
}

.fq-product-card:hover .fq-product-card__quick,
.fq-product-card:focus-within .fq-product-card__quick {
  opacity: 1;
}

.fq-product-card__quick:hover {
  background-color: var(--fq-primary);
  border-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
  transform: scale(1.05);
}

/* Touch devices have no hover; keep the control visible. */
@media (hover: none) {
  .fq-product-card__quick { opacity: 1; }
}

.fq-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.fq-product-card__title-link {
  display: block;
  line-height: 1;
  text-decoration: none;
}

.fq-product-card__title {
  margin: 0;
  font-size: var(--fq-text-base);
  line-height: 1.2;
  color: var(--fq-primary);
}

.fq-product-card__title-link:hover .fq-product-card__title {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fq-product-card__benefit {
  margin: 0;
  font-size: var(--fq-text-xs);
  color: var(--fq-muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fq-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fq-product-card__best-for {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--fq-leaf);
}

.fq-product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--fq-text-xs);
  color: var(--fq-muted-foreground);
}

.fq-product-card__rating-value {
  font-weight: 500;
  color: var(--fq-foreground);
}

.fq-product-card__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
  padding-top: 0.75rem;
}
.fq-product-card__footer .fq-product-card__add { width: 100%; }
@media (min-width: 768px) {
  .fq-product-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .fq-product-card__footer .fq-product-card__add { width: auto; }
}

.fq-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  min-width: 0;
}

.fq-product-card__price-now {
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-lg);
  color: var(--fq-primary);
}

/* WooCommerce wraps its price in <span class="amount">; keep it on-brand. */
.fq-product-card__price-now .amount,
.fq-product-card__price-now ins {
  text-decoration: none;
}

.fq-product-card__price-now del {
  margin-left: 0.25rem;
  font-size: var(--fq-text-xs);
  color: var(--fq-muted-foreground);
}

.fq-product-card__price-was {
  font-size: var(--fq-text-xs);
  color: var(--fq-muted-foreground);
  text-decoration: line-through;
}

@media (min-width: 768px) {
  .fq-product-card__title { font-size: var(--fq-text-lg); }
}

/* ====================================================== Quick view ======= */
.fq-quickview-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(20, 30, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fq-quickview-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.fq-quickview {
  position: relative;
  width: 100%;
  max-width: 48rem;
  max-height: 90vh;
  overflow: auto;
  background-color: var(--fq-card);
  border-radius: var(--fq-radius-xl);
  box-shadow: var(--fq-shadow-premium);
  display: grid;
  grid-template-columns: 1fr;
}

.fq-quickview__media {
  aspect-ratio: 1 / 1;
  background-color: var(--fq-surface);
}

.fq-quickview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fq-quickview__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.fq-quickview__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-2xl);
  line-height: 1.15;
  color: var(--fq-primary);
}

.fq-quickview__benefit { margin: 0; font-size: var(--fq-text-sm); color: var(--fq-foreground); }
.fq-quickview__best-for { margin: 0; font-size: var(--fq-text-xs); font-weight: 500; color: var(--fq-leaf); }
.fq-quickview__price { font-family: var(--fq-font-display); font-size: var(--fq-text-3xl); color: var(--fq-primary); }

.fq-quickview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fq-quickview__rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fq-text-sm);
  color: var(--fq-muted-foreground);
}
.fq-quickview__rating .fq-stars svg { width: 1rem; height: 1rem; }
.fq-quickview__rating b { color: var(--fq-foreground); font-weight: 600; }

.fq-quickview__benefits {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fq-quickview__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fq-text-sm);
  color: var(--fq-foreground);
}
.fq-quickview__benefits svg {
  flex: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  color: var(--fq-leaf);
}

.fq-quickview__buy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.fq-quickview__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-pill);
  background-color: var(--fq-background);
}
.fq-quickview__qty button {
  height: 2.75rem;
  width: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--fq-foreground);
}
.fq-quickview__qty-value { min-width: 2rem; text-align: center; font-weight: 600; }
.fq-quickview__add { flex: 1 1 auto; }
.fq-quickview__details { margin-top: 0.25rem; align-self: flex-start; font-size: var(--fq-text-xs); }

.fq-quickview__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  height: 2.25rem;
  width: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--fq-radius-pill);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--fq-foreground);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 768px) {
  .fq-quickview { grid-template-columns: 1fr 1fr; }
  .fq-quickview__media { aspect-ratio: auto; }
  .fq-quickview__body { padding: 2rem; gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fq-product-card__img,
  .fq-product-card__quick,
  .fq-quickview-overlay { transition: none; }
}

/* ================================================== Section Heading ====== */
.fq-section-heading { margin-bottom: 2rem; }
.fq-section-heading--center { text-align: center; }
.fq-section-heading .fq-section-heading__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fq-primary);
  font-size: var(--fq-text-3xl);
}
.fq-section-heading__subtitle {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: var(--fq-text-base);
  color: var(--fq-muted-foreground);
}
.fq-section-heading--center .fq-section-heading__subtitle { margin-inline: auto; }
@media (min-width: 768px) {
  .fq-section-heading { margin-bottom: 3rem; }
  .fq-section-heading .fq-section-heading__title { font-size: var(--fq-text-4xl); }
  .fq-section-heading__subtitle { font-size: var(--fq-text-lg); }
}
@media (min-width: 1024px) {
  .fq-section-heading .fq-section-heading__title { font-size: var(--fq-text-5xl); }
}

/* ================================================== Announcement Bar ===== */
.fq-announcement {
  background-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
  font-size: var(--fq-text-xs);
}
.fq-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding-block: 0.375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  color: inherit;
  text-decoration: none;
}
a.fq-announcement__inner:hover { text-decoration: underline; }
.fq-announcement__icon { display: inline-flex; align-items: center; color: var(--fq-gold); }
.fq-announcement__icon svg { width: 0.875rem; height: 0.875rem; fill: currentColor; }
.fq-announcement__icon i { font-size: 0.875rem; line-height: 1; }
@media (min-width: 640px) { .fq-announcement { font-size: var(--fq-text-sm); } }

/* ====================================================== Trust Strip ====== */
.fq-trust-strip { border-block: 1px solid var(--fq-border); }
.fq-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(var(--fq-trust-cols, 2), minmax(0, 1fr));
  gap: 1rem;
  /* margin-block only, so .fq-container keeps centering it (see footer note). */
  margin-block: 0;
  padding-block: 1.25rem;
  list-style: none;
}
.fq-trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--fq-text-sm);
  color: var(--fq-foreground);
}
.fq-trust-strip__label { font-weight: 500; }
.fq-trust-strip__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: var(--fq-radius-pill);
  background-color: var(--fq-primary-soft);
  color: var(--fq-primary);
}
.fq-trust-strip__icon svg { width: 1rem; height: 1rem; fill: currentColor; }
.fq-trust-strip__icon i { font-size: 1rem; line-height: 1; }
@media (min-width: 768px) {
  .fq-trust-strip__list { gap: 1.5rem; }
}

/* ========================================================= CTA Band ====== */
.fq-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--fq-radius-3xl);
  background-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
  padding: 2.5rem 1.5rem;
}
.fq-cta-band::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: var(--fq-radius-pill);
  background: rgba(212, 160, 23, 0.2);
  filter: blur(40px);
  pointer-events: none;
}
.fq-cta-band__inner { position: relative; z-index: 1; }
.fq-cta-band .fq-cta-band__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-3xl);
  line-height: 1.1;
  color: var(--fq-primary-foreground);
}
.fq-cta-band__subtitle {
  margin: 0.75rem 0 0;
  font-size: var(--fq-text-base);
  color: rgba(255, 255, 255, 0.85);
}
.fq-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.fq-cta-band--center { text-align: center; }
.fq-cta-band--center .fq-cta-band__subtitle { margin-inline: auto; max-width: 40rem; }
.fq-cta-band--center .fq-cta-band__actions { justify-content: center; }
@media (min-width: 768px) {
  .fq-cta-band { padding: 4rem; }
  .fq-cta-band .fq-cta-band__title { font-size: var(--fq-text-4xl); }
  .fq-cta-band--split .fq-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .fq-cta-band--split .fq-cta-band__actions { margin-top: 0; flex: none; justify-content: flex-end; }
}

/* ========================================================= Icon Cards ==== */
.fq-icon-cards__grid {
  display: grid;
  grid-template-columns: repeat(var(--fq-iconcards-cols, 3), minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-icon-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-3xl);
  box-shadow: var(--fq-shadow-soft);
  color: inherit;
  text-decoration: none;
}
.fq-icon-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  margin-bottom: 1rem;
  border-radius: var(--fq-radius-pill);
}
.fq-icon-card__icon svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.fq-icon-card__icon i { font-size: 1.25rem; line-height: 1; }
.fq-icon-card--green .fq-icon-card__icon { background-color: var(--fq-primary-soft); color: var(--fq-primary); }
.fq-icon-card--gold .fq-icon-card__icon { background-color: rgba(212, 160, 23, 0.15); color: var(--fq-gold); }
.fq-icon-card .fq-icon-card__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-xl);
  line-height: 1.2;
  color: var(--fq-primary);
}
.fq-icon-card__desc {
  margin: 0.5rem 0 0;
  font-size: var(--fq-text-sm);
  color: var(--fq-muted-foreground);
}
.fq-icon-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: var(--fq-text-sm);
  font-weight: 600;
  color: var(--fq-primary);
}
.fq-icon-card__arrow { transition: transform var(--fq-transition); }
.fq-icon-card:hover .fq-icon-card__arrow { transform: translateX(3px); }

/* ==================================================== Trust Statement ===== */
.fq-trust-statement {
  background-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
}
.fq-trust-statement__inner {
  padding-block: var(--fq-section-y);
  text-align: center;
}
.fq-trust-statement .fq-trust-statement__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-3xl);
  line-height: 1.1;
  color: var(--fq-primary-foreground);
}
.fq-trust-statement__subtitle {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  font-size: var(--fq-text-base);
  color: rgba(255, 255, 255, 0.85);
}
.fq-trust-statement__items {
  display: grid;
  grid-template-columns: repeat(var(--fq-ts-cols, 2), minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}
.fq-trust-statement__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.fq-trust-statement__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: var(--fq-radius-pill);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--fq-gold);
}
.fq-trust-statement__icon svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }
.fq-trust-statement__icon i { font-size: 1.5rem; line-height: 1; }
.fq-trust-statement__label {
  font-size: var(--fq-text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .fq-trust-statement__inner { padding-block: var(--fq-section-y-lg); }
  .fq-trust-statement .fq-trust-statement__title { font-size: var(--fq-text-4xl); }
}
@media (min-width: 1024px) {
  .fq-trust-statement .fq-trust-statement__title { font-size: var(--fq-text-5xl); }
}

/* ================================================= Ingredients Compare ==== */
.fq-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.fq-compare__panel {
  padding: 1.75rem;
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-3xl);
  box-shadow: var(--fq-shadow-soft);
}
.fq-compare__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-xl);
  color: var(--fq-primary);
}
.fq-compare__head-icon { display: inline-flex; }
.fq-compare__head-icon svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.fq-compare__head-icon i { font-size: 1.25rem; line-height: 1; }
.fq-compare__panel--without .fq-compare__head-icon { color: var(--fq-destructive); }
.fq-compare__panel--with .fq-compare__head-icon { color: var(--fq-leaf); }
.fq-compare__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-compare__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fq-text-sm);
  color: var(--fq-foreground);
}
.fq-compare__dot {
  flex: none;
  height: 0.375rem;
  width: 0.375rem;
  border-radius: var(--fq-radius-pill);
}
.fq-compare__panel--without .fq-compare__dot { background-color: var(--fq-destructive); }
.fq-compare__panel--with .fq-compare__dot { background-color: var(--fq-leaf); }
@media (min-width: 768px) {
  .fq-compare { grid-template-columns: 1fr 1fr; }
}

/* ============================================================== Hero ===== */
.fq-hero { position: relative; }
.fq-hero__inner { padding-block: 3rem; }
@media (min-width: 1024px) { .fq-hero__inner { padding-block: 5rem; } }

.fq-hero .fq-hero__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fq-primary);
  font-size: 2.4rem;
}
@media (min-width: 640px) { .fq-hero .fq-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .fq-hero .fq-hero__title { font-size: 3.75rem; } }

.fq-hero__title-mark {
  background-image: linear-gradient(transparent 62%, rgba(212, 160, 23, 0.4) 62%);
}
.fq-hero__subtitle {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: var(--fq-text-base);
  color: var(--fq-muted-foreground);
}
@media (min-width: 768px) { .fq-hero__subtitle { font-size: var(--fq-text-lg); } }
.fq-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.fq-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--fq-radius-pill);
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  font-size: var(--fq-text-xs);
  font-weight: 600;
  color: var(--fq-foreground);
}
.fq-hero__badge-dot { height: 0.375rem; width: 0.375rem; border-radius: var(--fq-radius-pill); background-color: var(--fq-leaf); }

/* Split */
.fq-hero--split .fq-hero__inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .fq-hero--split .fq-hero__inner { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.fq-hero__col--media { position: relative; }
.fq-hero__media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--fq-radius-2xl);
  background-color: var(--fq-surface);
  box-shadow: var(--fq-shadow-premium);
}

.fq-hero__float {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--fq-radius-lg);
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: var(--fq-shadow-soft);
}
.fq-hero__float-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--fq-radius-pill);
  background-color: rgba(212, 160, 23, 0.18);
  color: var(--fq-gold);
}
.fq-hero__float-icon svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.fq-hero__float-icon i { font-size: 1.25rem; line-height: 1; }
.fq-hero__float-eyebrow {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--fq-leaf);
}
.fq-hero__float-text { display: block; margin-top: 0.1rem; font-size: var(--fq-text-sm); font-weight: 500; color: var(--fq-foreground); }

/* Rating cluster */
.fq-hero__rating { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.75rem; }
.fq-hero__avatars { display: flex; }
.fq-hero__avatar {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: var(--fq-radius-pill);
  border: 2px solid var(--fq-card);
  object-fit: cover;
  margin-left: -0.5rem;
}
.fq-hero__avatar:first-child { margin-left: 0; }
.fq-hero__rating-text { font-size: var(--fq-text-sm); line-height: 1.3; }
.fq-hero__rating-text .fq-stars svg { width: 0.9rem; height: 0.9rem; }
.fq-hero__rating-text b { margin-left: 0.25rem; color: var(--fq-foreground); }
.fq-hero__rating-note { display: block; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }

/* Centered */
.fq-hero--centered { text-align: center; }
.fq-hero--centered .fq-hero__inner { padding-block: 3.5rem; }
@media (min-width: 768px) { .fq-hero--centered .fq-hero__inner { padding-block: 5rem; } }
.fq-hero--centered .fq-hero__subtitle { margin-inline: auto; }
.fq-hero--centered .fq-hero__actions { justify-content: center; }

/* Full-bleed image */
.fq-hero--image { overflow: hidden; }
.fq-hero--image .fq-hero__bg { position: absolute; inset: 0; z-index: 0; }
.fq-hero--image .fq-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(31, 92, 56, 0.9), rgba(31, 92, 56, 0.55) 60%, rgba(31, 92, 56, 0.2));
}
.fq-hero--image .fq-hero__inner { position: relative; z-index: 2; padding-block: 5rem; }
@media (min-width: 768px) { .fq-hero--image .fq-hero__inner { padding-block: 7rem; } }
.fq-hero--image .fq-hero__title { color: var(--fq-primary-foreground); }
.fq-hero--image .fq-hero__title-mark { background-image: linear-gradient(transparent 62%, rgba(212, 160, 23, 0.55) 62%); }
.fq-hero--image .fq-hero__subtitle { color: rgba(255, 255, 255, 0.88); }
.fq-hero--image .fq-eyebrow { color: var(--fq-gold); }
.fq-hero--image .fq-hero__title,
.fq-hero--image .fq-hero__subtitle { max-width: 48rem; }

/* ===================================================== Concern Tiles ===== */
.fq-concern-tiles {
  display: grid;
  grid-template-columns: repeat(var(--fq-concern-cols, 2), minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) { .fq-concern-tiles { gap: 1.25rem; } }
.fq-concern-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--fq-radius-2xl);
  box-shadow: var(--fq-shadow-soft);
  text-decoration: none;
}
@media (min-width: 768px) { .fq-concern-tile { aspect-ratio: 1 / 1; } }
.fq-concern-tile__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(31, 92, 56, 0.85), rgba(31, 92, 56, 0.2) 55%, transparent);
}
.fq-concern-tile__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem;
}
@media (min-width: 768px) { .fq-concern-tile__body { padding: 1.25rem; } }
.fq-concern-tile__label {
  display: block;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-lg);
  color: var(--fq-primary-foreground);
}
@media (min-width: 768px) { .fq-concern-tile__label { font-size: var(--fq-text-xl); } }
.fq-concern-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  font-size: var(--fq-text-xs);
  color: rgba(255, 255, 255, 0.9);
}
.fq-concern-tile:hover .fq-coverimg { transform: scale(1.05); }
.fq-concern-tile__arrow { transition: transform var(--fq-transition); }
.fq-concern-tile:hover .fq-concern-tile__arrow { transform: translateX(3px); }

/* ===================================================== Category Cards ===== */
.fq-category-cards {
  display: grid;
  grid-template-columns: repeat(var(--fq-category-cols, 3), minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-3xl);
  box-shadow: var(--fq-shadow-soft);
  color: inherit;
  text-decoration: none;
}
.fq-category-card__media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background-color: var(--fq-surface); }
.fq-category-card:hover .fq-coverimg { transform: scale(1.05); }
.fq-category-card__body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 1.5rem; }
.fq-category-card__badge {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--fq-leaf);
}
.fq-category-card__title {
  margin-top: 0.25rem;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-2xl);
  line-height: 1.15;
  color: var(--fq-primary);
}
.fq-category-card__desc { margin-top: 0.5rem; font-size: var(--fq-text-sm); color: var(--fq-muted-foreground); }
.fq-category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: var(--fq-text-sm);
  font-weight: 600;
  color: var(--fq-primary);
}
.fq-category-card__arrow { transition: transform var(--fq-transition); }
.fq-category-card:hover .fq-category-card__arrow { transform: translateX(3px); }

/* ==================================================== Featured Product ==== */
.fq-featured--bg-leaf { background-image: linear-gradient(180deg, var(--fq-background) 0%, var(--fq-primary-soft) 100%); }
.fq-featured--bg-cream { background-image: linear-gradient(160deg, #FEFBF2 0%, #FCFEFC 100%); }
.fq-featured--bg-plain { background-color: var(--fq-background); }
.fq-featured__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: var(--fq-section-y);
}
@media (min-width: 768px) {
  .fq-featured__inner { grid-template-columns: 1fr 1fr; gap: 3rem; padding-block: var(--fq-section-y-lg); }
  .fq-featured--img-right .fq-featured__media { order: 2; }
}
.fq-featured__media { position: relative; }
.fq-featured__media-frame { position: relative; }
.fq-featured__media-frame::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: 0;
  border-radius: var(--fq-radius-2xl);
  background: radial-gradient(closest-side, rgba(212, 160, 23, 0.18), transparent 70%);
  filter: blur(8px);
}
.fq-featured__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--fq-radius-3xl);
  background-color: #ffffff;
  box-shadow: var(--fq-shadow-premium);
}
.fq-featured__save { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.fq-featured .fq-featured__title {
  margin: 0.5rem 0 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-3xl);
  line-height: 1.1;
  color: var(--fq-primary);
}
@media (min-width: 768px) { .fq-featured .fq-featured__title { font-size: var(--fq-text-4xl); } }
.fq-featured__desc { margin: 1rem 0 0; font-size: var(--fq-text-base); color: var(--fq-muted-foreground); }
.fq-featured__desc p { margin: 0; }
.fq-featured__price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.75rem; margin-top: 1.25rem; }
.fq-featured__price { font-family: var(--fq-font-display); font-size: var(--fq-text-4xl); color: var(--fq-primary); }
.fq-featured__price .amount { color: inherit; text-decoration: none; }
.fq-featured__price del { font-size: var(--fq-text-base); color: var(--fq-muted-foreground); }
.fq-featured__save-inline { font-size: var(--fq-text-sm); font-weight: 600; color: var(--fq-leaf); }
.fq-featured__note { margin: 0.5rem 0 0; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }
.fq-featured__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* ========================================================== Quiz Band ==== */
.fq-quiz { position: relative; overflow: hidden; background-color: var(--fq-surface); }
.fq-quiz__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.25; }
.fq-quiz__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--fq-background) 10%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0.4));
}
.fq-quiz__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: var(--fq-section-y);
}
@media (min-width: 768px) {
  .fq-quiz__inner { grid-template-columns: 1fr 1fr; gap: 3rem; padding-block: var(--fq-section-y-lg); }
}
.fq-quiz__eyebrow { display: inline-flex; align-items: center; gap: 0.4rem; }
.fq-quiz__eyebrow svg { width: 0.875rem; height: 0.875rem; fill: currentColor; }
.fq-quiz__eyebrow i { font-size: 0.875rem; line-height: 1; }
.fq-quiz .fq-quiz__title {
  margin: 0.75rem 0 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-3xl);
  line-height: 1.1;
  color: var(--fq-primary);
}
@media (min-width: 768px) { .fq-quiz .fq-quiz__title { font-size: var(--fq-text-4xl); } }
.fq-quiz__subtitle { margin: 1rem 0 0; max-width: 32rem; font-size: var(--fq-text-base); color: var(--fq-muted-foreground); }
.fq-quiz__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.fq-quiz__steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.fq-quiz__step {
  padding: 1rem;
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-2xl);
  box-shadow: var(--fq-shadow-soft);
}
.fq-quiz__step-num { display: block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fq-leaf); }
.fq-quiz__step-q { display: block; margin-top: 0.25rem; font-family: var(--fq-font-display); font-size: var(--fq-text-sm); color: var(--fq-primary); }
.fq-quiz__step-a { display: block; margin-top: 0.25rem; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }

/* ===================================================== Results Gallery ==== */
.fq-results__grid {
  display: grid;
  grid-template-columns: repeat(var(--fq-results-cols, 2), minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-results__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--fq-radius-3xl);
  background-color: var(--fq-surface);
  box-shadow: var(--fq-shadow-soft);
}
.fq-results__item:hover .fq-coverimg { transform: scale(1.03); }
.fq-results__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fq-results__play svg {
  box-sizing: content-box;
  height: 1.5rem;
  width: 1.5rem;
  padding: 1rem;
  border-radius: var(--fq-radius-pill);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--fq-primary);
  box-shadow: var(--fq-shadow-lift);
  transition: transform var(--fq-transition);
}
.fq-results__item:hover .fq-results__play svg { transform: scale(1.1); }
.fq-results__caption { margin: 1rem 0 0; text-align: center; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }

/* ======================================================= Testimonials ==== */
.fq-testimonials {
  display: grid;
  grid-template-columns: repeat(var(--fq-testimonials-cols, 3), minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-testimonial { height: 100%; margin: 0; padding: 1.5rem; }
.fq-testimonial__quote { color: var(--fq-gold); }
.fq-testimonial__quote svg { width: 1.75rem; height: 1.75rem; }
.fq-testimonial__title { margin: 0.75rem 0 0; font-family: var(--fq-font-display); font-size: var(--fq-text-lg); color: var(--fq-primary); }
.fq-testimonial__body { margin: 0.5rem 0 0; padding: 0; border: 0; font-size: var(--fq-text-sm); color: var(--fq-foreground); }
.fq-testimonial__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fq-border);
}
.fq-testimonial__name { display: block; font-size: var(--fq-text-sm); font-weight: 600; color: var(--fq-foreground); }
.fq-testimonial__meta { display: block; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }
.fq-testimonial__stars { flex: none; }
.fq-testimonial__stars svg { width: 0.8rem; height: 0.8rem; }

/* ====================================================== Service Cards ===== */
.fq-service-cards {
  display: grid;
  grid-template-columns: repeat(var(--fq-service-cols, 2), minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-service-card { height: 100%; }
.fq-service-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background-color: var(--fq-surface); }
.fq-service-card:hover .fq-coverimg { transform: scale(1.04); }
.fq-service-card__body { padding: 1.5rem; }
.fq-service-card__head { display: flex; align-items: center; gap: 0.5rem; }
.fq-service-card__icon { display: inline-flex; color: var(--fq-leaf); }
.fq-service-card__icon svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.fq-service-card__icon i { font-size: 1.25rem; line-height: 1; }
.fq-service-card .fq-service-card__title { margin: 0; font-family: var(--fq-font-display); font-size: var(--fq-text-2xl); color: var(--fq-primary); }
.fq-service-card__list { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .fq-service-card__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.fq-service-card__item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: var(--fq-text-sm); color: var(--fq-foreground); }
.fq-service-card__check { flex: none; display: inline-flex; margin-top: 0.15rem; color: var(--fq-leaf); }
.fq-service-card__check svg { width: 1rem; height: 1rem; }
.fq-service-card__book { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1.25rem; }
.fq-service-card__book .fq-service-card__arrow { transition: transform var(--fq-transition); }
.fq-service-card__book:hover .fq-service-card__arrow { transform: translateX(3px); }

/* ====================================================== Location Block ==== */
.fq-location .fq-location__title { margin: 0.25rem 0 0; font-family: var(--fq-font-display); font-size: var(--fq-text-3xl); line-height: 1.1; color: var(--fq-primary); }
.fq-location__subtitle { margin: 0.5rem 0 0; font-size: var(--fq-text-base); color: var(--fq-muted-foreground); }
.fq-location__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .fq-location__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.fq-location__list { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.fq-location__disclaimer { margin: 1rem 0 0; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }
.fq-location__item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: var(--fq-text-sm); color: var(--fq-foreground); }
.fq-location__item a { color: inherit; text-decoration: none; }
.fq-location__item a:hover { color: var(--fq-primary); }
.fq-location__icon { flex: none; display: inline-flex; margin-top: 0.15rem; color: var(--fq-leaf); }
.fq-location__icon svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.fq-location__icon i { font-size: 1.1rem; line-height: 1; }
.fq-location__map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-3xl);
  background-color: var(--fq-surface);
}
.fq-location__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.fq-location__head { margin-bottom: 1.75rem; }
.fq-location__cards { display: flex; flex-direction: column; gap: 2rem; }
.fq-location__card { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .fq-location__card { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.fq-location__name { margin: 0; font-family: var(--fq-font-display); font-size: var(--fq-text-xl); color: var(--fq-primary); }
/* Social gets its own band below the locations. */
.fq-location__connect {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-2xl);
  background: linear-gradient(180deg, var(--fq-surface) 0%, var(--fq-primary-soft) 100%);
  text-align: center;
}
.fq-location__connect-inner { max-width: 40rem; margin: 0 auto; }
.fq-location__connect-title { margin: 0; font-family: var(--fq-font-display); font-size: var(--fq-text-2xl); color: var(--fq-primary); }
.fq-location__connect-sub { margin: 0.5rem 0 0; font-size: var(--fq-text-base); color: var(--fq-muted-foreground); }
.fq-location__social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 1.5rem; margin-top: 1.75rem; }
.fq-social-btn { display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; text-decoration: none; }
.fq-social-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--fq-radius-pill);
  border: 1px solid var(--fq-border);
  background-color: var(--fq-card);
  color: var(--fq-primary);
  box-shadow: var(--fq-shadow-soft);
  transition: transform var(--fq-transition), background-color var(--fq-transition), color var(--fq-transition), border-color var(--fq-transition), box-shadow var(--fq-transition);
}
.fq-social-btn:hover .fq-social-btn__icon {
  background-color: var(--fq-primary);
  border-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
  transform: translateY(-3px);
  box-shadow: var(--fq-shadow-lift);
}
.fq-social-btn__icon svg { width: 1.4rem; height: 1.4rem; fill: currentColor; }
.fq-social-btn__icon i { font-size: 1.4rem; line-height: 1; }
.fq-social-btn__label { font-size: var(--fq-text-xs); font-weight: 500; color: var(--fq-muted-foreground); }
.fq-social-btn:hover .fq-social-btn__label { color: var(--fq-primary); }

/* ============================================================= Footer ===== */
.fq-footer { background-color: var(--fq-surface-tint); }
.fq-footer__utility { border-bottom: 1px solid var(--fq-border); }
.fq-footer__utility-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  /* margin-block only: a `margin: 0` shorthand would override .fq-container's
   * margin-inline:auto and knock the row off-center inside the full-bleed footer. */
  margin-block: 0;
  padding-block: 1.5rem;
  list-style: none;
}
@media (min-width: 768px) { .fq-footer__utility-list { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.fq-footer__utility-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
  font-size: var(--fq-text-xs);
  font-weight: 500;
  color: var(--fq-foreground);
}
.fq-footer__utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: var(--fq-radius-pill);
  background-color: var(--fq-primary-soft);
  color: var(--fq-primary);
  transition: background-color var(--fq-transition), color var(--fq-transition);
}
.fq-footer__utility-link:hover .fq-footer__utility-icon { background-color: var(--fq-primary); color: var(--fq-primary-foreground); }
.fq-footer__utility-icon svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.fq-footer__utility-icon i { font-size: 1.1rem; line-height: 1; }

.fq-footer__main { display: flex; flex-direction: column; gap: 2.5rem; padding-block: 3rem; }
@media (min-width: 768px) { .fq-footer__main { padding-block: 3.5rem; } }
.fq-footer__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) {
  /* Brand plus the three link columns fill the full width, so the row is balanced
   * with symmetric margins and is consistent with the full-width utility row above.
   * No trailing empty tracks, so nothing leans to the left. */
  .fq-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}
.fq-footer__logo { display: block; height: auto; max-width: 100%; }
.fq-footer__blurb { margin: 0; max-width: 24rem; font-size: var(--fq-text-sm); color: var(--fq-muted-foreground); }
.fq-footer__social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.fq-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--fq-radius-pill);
  border: 1px solid var(--fq-border);
  color: var(--fq-foreground);
  transition: background-color var(--fq-transition), color var(--fq-transition), border-color var(--fq-transition);
}
.fq-footer__social:hover { background-color: var(--fq-primary); border-color: var(--fq-primary); color: var(--fq-primary-foreground); }
.fq-footer__social svg { width: 1rem; height: 1rem; fill: currentColor; }
.fq-footer__social i { font-size: 1rem; line-height: 1; }
.fq-footer .fq-footer__col-title { margin: 0 0 0.75rem; font-family: var(--fq-font-display); font-size: var(--fq-text-base); color: var(--fq-primary); }
.fq-footer__col-list { display: grid; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.fq-footer__col-link { font-size: var(--fq-text-sm); color: var(--fq-muted-foreground); text-decoration: none; transition: color var(--fq-transition); }
.fq-footer__col-link:hover { color: var(--fq-primary); }

.fq-footer__newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--fq-radius-2xl);
  background-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
}
@media (min-width: 768px) { .fq-footer__newsletter { grid-template-columns: 1fr 1fr; padding: 2rem; } }
.fq-footer .fq-footer__nl-heading { margin: 0; font-family: var(--fq-font-display); font-size: var(--fq-text-xl); color: var(--fq-primary-foreground); }
.fq-footer__nl-sub { margin: 0.25rem 0 0; font-size: var(--fq-text-sm); color: rgba(255, 255, 255, 0.8); }
.fq-footer__nl-form { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) { .fq-footer__nl-form { flex-direction: row; } }
/* Specific enough to beat Hello Elementor's input reset (input[type=email], 0,1,1),
 * which otherwise forces a gray border and 3px corners. */
.fq-footer .fq-footer__nl-input {
  flex: 1 1 auto;
  width: 100%;
  height: 2.75rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: var(--fq-radius-pill);
  background-color: var(--fq-background);
  color: var(--fq-foreground);
  font-family: var(--fq-font-sans);
  font-size: var(--fq-text-sm);
}
.fq-footer .fq-footer__nl-input:focus-visible { outline: 2px solid var(--fq-gold); outline-offset: 1px; }
.fq-footer__nl-form .fq-btn { flex: none; }

.fq-footer__bottom { border-top: 1px solid var(--fq-border); background-color: var(--fq-background); }
.fq-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.25rem;
}
@media (min-width: 1024px) { .fq-footer__bottom-inner { flex-direction: row; } }
.fq-footer__copyright { margin: 0; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }
.fq-footer__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.fq-footer__badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }
.fq-footer__badge-icon { display: inline-flex; color: var(--fq-primary); }
.fq-footer__badge-icon svg { width: 0.9rem; height: 0.9rem; fill: currentColor; }
.fq-footer__badge-icon i { font-size: 0.9rem; line-height: 1; }

/* ============================================================== Posts ===== */
.fq-posts {
  display: grid;
  grid-template-columns: repeat(var(--fq-posts-cols, 3), minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fq-posts__empty { color: var(--fq-muted-foreground); }
.fq-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-3xl);
  box-shadow: var(--fq-shadow-soft);
  color: inherit;
  text-decoration: none;
}
.fq-post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background-color: var(--fq-surface); }
.fq-post-card:hover .fq-coverimg { transform: scale(1.05); }
.fq-post-card__body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 1.25rem; }
.fq-post-card__tag { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--fq-leaf); }
.fq-post-card__title { margin-top: 0.25rem; font-family: var(--fq-font-display); font-size: var(--fq-text-xl); line-height: 1.2; color: var(--fq-primary); }
.fq-post-card__excerpt { margin-top: 0.5rem; font-size: var(--fq-text-sm); color: var(--fq-muted-foreground); }
.fq-post-card__meta { margin-top: 0.5rem; font-size: var(--fq-text-xs); color: var(--fq-muted-foreground); }
.fq-post-card__more { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1rem; font-size: var(--fq-text-sm); font-weight: 600; color: var(--fq-primary); }
.fq-post-card__arrow { transition: transform var(--fq-transition); }
.fq-post-card:hover .fq-post-card__arrow { transform: translateX(3px); }

/* ============================================================= Header ===== */
.fq-sticky-header { position: sticky; top: 0; z-index: 1000; }
.fq-header { background-color: var(--fq-background); border-bottom: 1px solid var(--fq-border); transition: background-color 0.25s ease, box-shadow 0.25s ease; }
.fq-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--fq-shadow-soft);
}
/* While the mobile menu is open, freeze the page so only the menu scrolls. */
body.fq-nav-lock { overflow: hidden; }
.fq-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 4.25rem; }
.fq-header__logo { flex: none; display: inline-flex; align-items: center; }
.fq-header__logo img { display: block; width: 130px; height: auto; max-height: 56px; object-fit: contain; }
.fq-header__nav { flex: 1 1 auto; display: flex; align-items: center; gap: 1.5rem; }
.fq-header__menu { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
.fq-header .fq-header__menu a { font-size: var(--fq-text-sm); font-weight: 500; color: var(--fq-foreground); text-decoration: none; transition: color var(--fq-transition); }
.fq-header .fq-header__menu a:hover { color: var(--fq-primary); }
.fq-header__actions { flex: none; display: flex; align-items: center; gap: 1rem; }
.fq-header__icon { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--fq-foreground); text-decoration: none; transition: color var(--fq-transition); }
.fq-header__icon:hover { color: var(--fq-primary); }
.fq-header__icon-label { display: none; }
.fq-header__tools { flex: none; display: flex; align-items: center; gap: 1rem; }
.fq-header__cart { position: relative; }
.fq-header__cart-count { margin-left: 0.15rem; font-size: 0.625rem; font-weight: 700; color: var(--fq-primary); }
.fq-header__toggle {
  flex: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fq-foreground);
  cursor: pointer;
}
.fq-header .fq-header__toggle:hover,
.fq-header .fq-header__toggle:focus,
.fq-header .fq-header__toggle:focus-visible { background: transparent; outline: none; }
.fq-header__bars { position: relative; display: block; width: 1.35rem; height: 2px; background-color: currentColor; transition: background-color 0.2s ease; }
.fq-header__bars::before,
.fq-header__bars::after { content: ""; position: absolute; left: 0; width: 1.35rem; height: 2px; background-color: currentColor; transition: transform 0.2s ease, top 0.2s ease; }
.fq-header__bars::before { top: -6px; }
.fq-header__bars::after { top: 6px; }
.fq-header .fq-header__toggle:hover .fq-header__bars,
.fq-header .fq-header__toggle:hover .fq-header__bars::before,
.fq-header .fq-header__toggle:hover .fq-header__bars::after { background-color: var(--fq-primary); }
@media (max-width: 1023px) {
  .fq-header { position: relative; }
  .fq-header__tools { margin-left: auto; }
  .fq-header__toggle { display: inline-flex; }
  .fq-header__nav {
    flex-basis: 100%;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem var(--fq-gutter) 1.5rem;
    background-color: var(--fq-background);
    border-bottom: 1px solid var(--fq-border);
    box-shadow: var(--fq-shadow-lift);
    z-index: 100;
  }
  .fq-header--open .fq-header__nav { display: flex; }
  .fq-header__menu { flex-direction: column; align-items: stretch; gap: 0; }
  .fq-header__menu li { border-bottom: 1px solid var(--fq-border); }
  .fq-header .fq-header__menu a { display: block; padding: 0.95rem 0.25rem; font-size: var(--fq-text-base); }
  .fq-header__actions { flex-direction: column; align-items: stretch; gap: 0; }
  .fq-header__actions .fq-header__icon { padding: 0.95rem 0.25rem; border-bottom: 1px solid var(--fq-border); }
  .fq-header__icon-label { display: inline; font-size: var(--fq-text-base); font-weight: 500; }
  .fq-header__cta { margin-top: 1.25rem; align-self: flex-start; }
  .fq-header--open .fq-header__bars { background-color: transparent; }
  .fq-header--open .fq-header__bars::before { top: 0; transform: rotate(45deg); }
  .fq-header--open .fq-header__bars::after { top: 0; transform: rotate(-45deg); }
}

/* ====================================================== Product grid ====== */
.fq-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .fq-product-grid { grid-template-columns: repeat(var(--fq-pg-cols, 4), minmax(0, 1fr)); gap: 1.25rem; }
}

/* ========================================================= Catalog ======== */
.fq-catalog { display: flex; flex-direction: column; gap: 1.5rem; }
.fq-catalog__head { display: flex; flex-direction: column; gap: 0.5rem; }
.fq-catalog__title {
  margin: 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-3xl);
  line-height: 1.1;
  color: var(--fq-primary);
}
@media (min-width: 768px) {
  .fq-catalog__title { font-size: var(--fq-text-4xl); }
}
.fq-catalog__subtitle {
  margin: 0;
  max-width: 46rem;
  color: var(--fq-muted-foreground);
  font-size: var(--fq-text-base);
}

.fq-catalog__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.fq-catalog__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fq-catalog__chip {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--fq-border);
  background-color: var(--fq-card);
  color: var(--fq-foreground);
  font-family: var(--fq-font-sans);
  font-size: var(--fq-text-sm);
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: var(--fq-radius-pill);
  transition: background-color var(--fq-transition), color var(--fq-transition), border-color var(--fq-transition);
}
.fq-catalog__chip:hover { background-color: var(--fq-primary-soft); border-color: var(--fq-primary); color: var(--fq-primary); }
.fq-catalog__chip.is-active {
  background-color: var(--fq-primary);
  border-color: var(--fq-primary);
  color: var(--fq-primary-foreground);
}

.fq-catalog__sort { display: inline-flex; align-items: center; gap: 0.5rem; }
.fq-catalog__sort-label { font-size: var(--fq-text-sm); color: var(--fq-muted-foreground); }
.fq-catalog__sort select {
  font-family: var(--fq-font-sans);
  font-size: var(--fq-text-sm);
  color: var(--fq-foreground);
  background-color: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-md);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.fq-catalog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .fq-catalog__grid { grid-template-columns: repeat(var(--fq-pg-cols, 4), minmax(0, 1fr)); gap: 1.25rem; }
}
.fq-catalog__cell { display: flex; }
.fq-catalog__cell[hidden] { display: none; }
.fq-catalog__cell > .fq-product-card { width: 100%; }
.fq-catalog__empty { color: var(--fq-muted-foreground); }

/* ============================================================== FAQ ======= */
.fq-faq { display: flex; flex-direction: column; }
.fq-faq__item { border-bottom: 1px solid var(--fq-border); }
.fq-faq__item:first-child { border-top: 1px solid var(--fq-border); }
.fq-faq__q {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-family: var(--fq-font-display);
  font-size: var(--fq-text-lg);
  color: var(--fq-primary);
}
.fq-faq__q::-webkit-details-marker { display: none; }
.fq-faq__q::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--fq-leaf);
}
.fq-faq__item[open] .fq-faq__q::after { content: "\2212"; }
.fq-faq__a { padding: 0 2.5rem 1.2rem 0; color: var(--fq-muted-foreground); }
.fq-faq__a p { margin: 0 0 0.5rem; }
.fq-faq__a p:last-child { margin-bottom: 0; }

/* ============================================================= Quiz ======= */
.fq-quiz { max-width: 48rem; margin: 0 auto; }
.fq-quiz__head { text-align: center; margin-bottom: 1.5rem; }
.fq-quiz__title { margin: 0.5rem 0 0; font-family: var(--fq-font-display); font-size: var(--fq-text-3xl); line-height: 1.15; color: var(--fq-primary); }
.fq-quiz__progress { height: 6px; width: 100%; background-color: var(--fq-primary-soft); border-radius: var(--fq-radius-pill); overflow: hidden; margin-bottom: 1.5rem; }
.fq-quiz__progress-bar { display: block; height: 100%; width: 0; background-color: var(--fq-gold); transition: width 0.5s ease; }
.fq-quiz__card { background-color: var(--fq-card); border: 1px solid var(--fq-border); border-radius: var(--fq-radius-2xl); box-shadow: var(--fq-shadow-soft); padding: 1.5rem; }
@media (min-width: 768px) { .fq-quiz__card { padding: 2.5rem; } }
.fq-quiz__q { font-family: var(--fq-font-display); font-size: var(--fq-text-2xl); color: var(--fq-primary); text-align: center; margin: 0 0 1.5rem; }
.fq-quiz__q--center { margin-bottom: 0.5rem; }
.fq-quiz__note { text-align: center; color: var(--fq-muted-foreground); font-size: var(--fq-text-sm); margin: 0 0 1.5rem; }
.fq-quiz__options { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.fq-quiz__option {
  width: 100%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius-lg);
  background-color: var(--fq-background);
  color: var(--fq-foreground);
  font-family: var(--fq-font-sans);
  font-size: var(--fq-text-base);
  font-weight: 500;
  text-align: left;
  transition: border-color var(--fq-transition), background-color var(--fq-transition);
}
.fq-quiz__option:hover { border-color: var(--fq-primary); background-color: var(--fq-primary-soft); }
.fq-quiz__option svg { color: var(--fq-leaf); flex: none; }
.fq-quiz__email { display: flex; flex-direction: column; gap: 0.5rem; max-width: 28rem; margin: 1.5rem auto 0; }
@media (min-width: 640px) { .fq-quiz__email { flex-direction: row; } }
.fq-quiz__email-input { flex: 1; height: 3rem; border-radius: var(--fq-radius-pill); border: 1px solid var(--fq-border); padding: 0 1.25rem; font-family: var(--fq-font-sans); }
.fq-quiz__skip { display: block; margin: 0.75rem auto 0; background: none; border: 0; color: var(--fq-muted-foreground); font-size: var(--fq-text-xs); text-decoration: underline; cursor: pointer; }
.fq-quiz__result-head { text-align: center; margin-bottom: 1.5rem; }
.fq-quiz__result-title { font-family: var(--fq-font-display); font-size: var(--fq-text-3xl); color: var(--fq-primary); margin: 0 0 0.25rem; }
.fq-quiz__tip { margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.25rem; background-color: var(--fq-primary-soft); border-radius: var(--fq-radius-lg); font-size: var(--fq-text-sm); color: var(--fq-foreground); }
.fq-quiz__tip svg { color: var(--fq-primary); flex: none; margin-top: 0.1rem; }
.fq-quiz__tip p { margin: 0; }
.fq-quiz__back { margin-top: 1rem; background: none; border: 0; color: var(--fq-muted-foreground); font-size: var(--fq-text-xs); cursor: pointer; }
.fq-quiz__back:hover { color: var(--fq-primary); }
