/*
Theme Name:  QuiltoCrafts
Theme URI:   https://quiltocrafts.com
Author:      QuiltoCrafts
Description: High-performance ecommerce theme for QUILTOCRAFTS. WooCommerce-ready, SEO-optimised, fully secured, Core Web Vitals optimised, WCAG 2.1 AA accessible.
Version:     2.3.4
Requires at least: 6.3
Requires PHP:      8.1
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: quiltocrafts
Tags:        e-commerce, woocommerce, custom-colors, custom-menu, featured-images, blog
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --c-forest: #1e3a10;
  --c-forest-mid: #2d5518;
  --c-forest-lt: #4a8a28;
  --c-forest-pale: #ebf3e4;
  --c-terra: #c05030;
  --c-terra-lt: #d96848;
  --c-gold: #c8902a;
  --c-gold-pale: #fdf3dc;

  /* Neutrals */
  --c-charcoal: #1a1a1a;
  --c-text: #2a2a2a;
  --c-muted: #5e5855;
  --c-border: #e4ddd4;
  --c-cream: #faf7f2;
  --c-cream-2: #f0eae0;
  --c-cream-3: #ddd4c4;
  --c-white: #ffffff;

  /* UI */
  --c-success: #27ae60;
  --c-error: #c0392b;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 36px rgba(0, 0, 0, 0.11);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* ── Typography ──────────────────────────────────────────
     Lora:   Warm, scholarly serif — designed for screen readability.
             Perfect for headings — authoritative yet approachable.
     Nunito: Rounded, geometric sans-serif — exceptional legibility
             at body sizes. Clean, friendly, never tiring to read.
  ─────────────────────────────────────────────────────────── */
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Nunito", "Segoe UI", system-ui, sans-serif;

  /* Type scale */
  --text-xs: 0.8125rem; /* 13px */
  --text-sm: 0.9375rem; /* 15px */
  --text-base: 1rem; /* 16px base */
  --text-lg: 1.1875rem; /* 19px */
  --text-xl: 1.375rem; /* 22px */
  --text-2xl: 1.625rem; /* 26px */
  --text-3xl: clamp(1.75rem, 3vw, 2.5rem); /* 28–40px */
  --text-4xl: clamp(2.25rem, 5vw, 3.75rem); /* 36–60px */

  /* Generous line-height for comfortable reading */
  --lh-tight: 1.2;
  --lh-snug: 1.45;
  --lh-normal: 1.75;
  --lh-loose: 1.9;

  /* Header / logo */
  --qc-nav-height: 84px;
  --qc-nav-logo-height: 75px;
  --qc-site-gutter: 5%;
}

/* ============================================================
   2. RESET — minimal, targeted
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal); /* 1.75 */
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
}
ul,
ol {
  list-style: none;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
/* Headings — Lora: warm, screen-optimised serif */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: var(--lh-snug); /* 1.45 */
  color: var(--c-charcoal);
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */
/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--c-forest);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

/* Focus ring — visible but non-intrusive */
:focus-visible {
  outline: 2px solid var(--c-forest-lt);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 5%;
}
.container--sm {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 5%;
}
.container--md {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 5%;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.text-center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.section {
  padding-block: 4rem;
}

/* ============================================================
   5. TYPOGRAPHY
   ============================================================ */
.section-tag {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700; /* bigger tag */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-terra);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: var(--text-3xl);
  margin-bottom: 1.125rem;
}
.section-sub {
  font-size: var(--text-xl);
  color: var(--c-muted);
  max-width: 580px;
  line-height: var(--lh-normal);
}
.text-muted {
  color: var(--c-muted);
}
.text-white {
  color: #fff;
}

/* ============================================================
   6. BUTTONS — single source of truth
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem; /* bigger padding */
  border-radius: var(--radius-sm);
  font-size: var(--text-base); /* 17px base */
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s,
    opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--full {
  width: 100%;
}
.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-lg);
}

/* Variants */
.btn--forest {
  background: var(--c-forest);
  color: #fff;
  border-color: var(--c-forest);
  box-shadow: 0 4px 16px rgba(30, 58, 16, 0.22);
}
.btn--forest:hover {
  background: var(--c-forest-mid);
  border-color: var(--c-forest-mid);
}
.btn--terra {
  background: var(--c-terra);
  color: #fff;
  border-color: var(--c-terra);
}
.btn--terra:hover {
  background: var(--c-terra-lt);
  border-color: var(--c-terra-lt);
}
.btn--outline {
  background: transparent;
  color: var(--c-forest);
  border-color: var(--c-forest);
}
.btn--outline:hover {
  background: var(--c-forest-pale);
}
.btn--amazon {
  background: #ff9900;
  color: #111;
  border-color: #e88b00;
}
.btn--amazon:hover {
  background: #ffab33;
}
.btn--white {
  background: #fff;
  color: var(--c-forest);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--c-cream);
}

/* ============================================================
   7. ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  position: relative;
  background: var(--c-forest);
  color: #fff;
  text-align: center;
  padding: 0.625rem 3rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.announce-bar .hl {
  color: #a8d878;
}
.announce-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  translate: 0 -50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
}
.announce-bar__close:hover {
  color: #fff;
}

/* ============================================================
   8. NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--qc-nav-height, 84px);
  max-height: var(--qc-nav-height, 84px);
  gap: 1rem;
  padding-inline: var(--qc-site-gutter, 5%);
  overflow: visible;
}
.nav-inner > * {
  min-height: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: var(--qc-nav-height, 84px);
  line-height: 0;
  overflow: visible;
}
.nav-logo__img {
  display: block;
  height: var(--qc-nav-logo-height, 75px);
  max-height: var(--qc-nav-logo-height, 75px);
  width: auto;
  max-width: min(500px, 55vw);
  margin-block: calc(
    (var(--qc-nav-height, 84px) - var(--qc-nav-logo-height, 75px)) / 2
  );
  object-fit: contain;
}
.site-header .qc-logo-bound {
  height: var(--qc-nav-logo-height, 75px);
  max-height: var(--qc-nav-logo-height, 75px);
  max-width: min(500px, 55vw);
  margin-block: calc(
    (var(--qc-nav-height, 84px) - var(--qc-nav-logo-height, 75px)) / 2
  );
}
.custom-logo,
.wp-block-site-logo img {
  max-height: 56px;
  max-width: min(220px, 50vw);
  width: auto;
  height: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-menu a {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-muted); /* bigger nav links */
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--c-forest);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.nav-amazon-btn {
  font-size: var(--text-sm);
  padding: 0.75rem 1.125rem;
}
.mobile-menu__amazon {
  display: block;
  margin-top: 0.75rem;
  color: var(--c-terra);
  font-weight: 700;
}
.nav-badge {
  background: var(--c-forest-pale);
  color: var(--c-forest);
  font-size: var(--text-sm);
  font-weight: 700; /* bigger badge text */
  padding: 0.4375rem 0.875rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.25rem;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  rotate: 45deg;
  translate: 0 8px;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  rotate: -45deg;
  translate: 0 -8px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu__panel {
  background: var(--c-white);
  width: min(300px, 88vw);
  height: 100%;
  padding: 1.75rem;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: var(--text-lg);
  font-weight: 600; /* bigger mobile menu */
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.mobile-menu a:hover {
  color: var(--c-forest);
}
.mobile-menu__close {
  float: right;
  font-size: 1.75rem;
  color: var(--c-muted);
}

/* ============================================================
   9. BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 0.875rem 5%;
  font-size: var(--text-sm);
  color: var(--c-muted); /* bigger breadcrumb */
  display: flex;
  gap: 0.375rem;
  align-items: center;
  flex-wrap: wrap;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb a {
  color: var(--c-muted);
  transition: color 0.15s;
}
.breadcrumb a:hover {
  color: var(--c-forest);
}
.breadcrumb__sep {
  color: var(--c-cream-3);
  user-select: none;
}

/* ============================================================
   10. PRODUCT SECTION
   ============================================================ */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.75rem 5% 3rem;
}

/* Gallery */
.gallery {
  position: sticky;
  top: 80px;
}
.gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__badge {
  position: absolute;
  top: 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.3125rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery__badge--new {
  left: 1rem;
  background: var(--c-terra);
  color: #fff;
}
.gallery__badge--save {
  right: 1rem;
  background: var(--c-gold);
  color: #fff;
}
.gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.gallery__thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--c-border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.gallery__thumb.active,
.gallery__thumb:hover {
  border-color: var(--c-forest);
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product info column */
.pi-brand {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em; /* bigger brand label */
  text-transform: uppercase;
  color: var(--c-forest);
  margin-bottom: 0.625rem;
}
.pi-title {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}
.pi-title em {
  color: var(--c-terra);
  font-style: italic;
}

/* Rating */
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.stars {
  color: var(--c-gold);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
} /* bigger stars */
.rating-count {
  font-size: var(--text-base);
  color: var(--c-muted);
}
.rating-link {
  font-size: var(--text-base);
  color: var(--c-forest);
  font-weight: 600;
  border-bottom: 1px solid rgba(74, 138, 40, 0.3);
}
.badge-top {
  background: var(--c-gold-pale);
  color: var(--c-gold);
  font-size: var(--text-sm);
  font-weight: 700; /* bigger badge */
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 144, 42, 0.25);
}

/* Price block */
.price-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--c-forest-pale);
  border: 1px solid rgba(74, 138, 40, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; /* more padding */
  margin-bottom: 1.5rem;
}
.price-block__label {
  font-size: var(--text-sm);
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.price-block__row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.price-now {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--c-forest);
}
.price-was {
  font-size: 1.125rem;
  color: var(--c-muted);
  text-decoration: line-through;
}
.price-save {
  background: var(--c-terra);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
}
.prime-badge {
  border-left: 1px solid rgba(74, 138, 40, 0.2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-forest); /* bigger prime badge */
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  margin-left: 0.25rem;
}

/* Stock */
.stock-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.stock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%; /* bigger dot */
  background: var(--c-success);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}
.stock-text {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-success);
} /* bigger */
.stock-warn {
  font-size: var(--text-sm);
  color: var(--c-terra);
  font-weight: 600;
}

/* Options */
.option-label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.625rem;
}
.option-group {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 1.375rem;
}
.option-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm); /* bigger option buttons */
  border: 2px solid var(--c-border);
  background: var(--c-white);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.option-btn.active,
.option-btn:hover {
  border-color: var(--c-forest);
  background: var(--c-forest-pale);
  color: var(--c-forest);
}

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.625rem;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 48px;
  height: 52px;
  background: var(--c-cream-2);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
} /* bigger qty buttons */
.qty-btn:hover {
  background: var(--c-cream-3);
}
.qty-input {
  width: 60px;
  height: 52px;
  text-align: center;
  border: none;
  border-inline: 2px solid var(--c-border);
  font-size: 1.125rem;
  font-weight: 700;
  background: #fff;
}
.qty-input::-webkit-inner-spin-button {
  display: none;
}

/* CTA stack */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.375rem;
}

/* Trust badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.375rem;
}
.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius-sm); /* more padding */
  background: var(--c-white);
  border: 1px solid var(--c-border);
  font-size: var(--text-sm);
  font-weight: 600;
}
.trust-badge__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
} /* bigger trust icons */
.trust-badge__sub {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--c-muted);
  margin-top: 0.125rem;
}

/* Shipping info */
.ship-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.125rem 1.375rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.375rem;
}
.ship-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-base);
} /* bigger ship rows */
.ship-row strong {
  color: var(--c-charcoal);
}

/* Accordion */
.tabs {
  border-top: 1px solid var(--c-border);
}
.tab {
  border-bottom: 1px solid var(--c-border);
}
.tab__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-charcoal); /* bigger tab headers */
  text-align: left;
  background: none;
  cursor: pointer;
}
.tab__head:hover {
  color: var(--c-forest);
}
.tab__icon {
  font-size: 1.5rem;
  color: var(--c-muted);
  transition: rotate 0.25s;
} /* bigger icon */
.tab__icon.open {
  rotate: 45deg;
}
.tab__body {
  display: none;
  padding-bottom: 1.125rem;
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: var(--lh-normal);
}
.tab__body.open {
  display: block;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.spec-list li {
  display: flex;
  gap: 0.625rem;
  font-size: var(--text-base);
  line-height: var(--lh-normal);
} /* bigger specs */
.spec-list li::before {
  content: "→";
  color: var(--c-forest);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   11. FEATURES BAR — bigger icons and text
   ============================================================ */
.features-bar {
  background: var(--c-forest);
  padding: 2.25rem 5%; /* more vertical padding */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
}
.feat-item__icon {
  font-size: 2.5rem;
} /* was 1.75rem — much bigger */
.feat-item__label {
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
} /* bigger */
.feat-item__sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   12. ABOUT / FEATURE DETAIL
   ============================================================ */
.about-section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 4rem 5%;
}
.about-visual {
  aspect-ratio: 1;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}
.about-visual img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--c-forest-pale);
  color: var(--c-forest);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  border: 1px solid rgba(74, 138, 40, 0.2);
}

/* ============================================================
   13. SPECS / MEASUREMENTS
   ============================================================ */
.measure-section {
  background: var(--c-cream-2);
  padding: 4rem 0;
}
.spec-cards {
  width: 100%;
}
.spec-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.spec-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: var(--c-forest);
}
.spec-card__val {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1;
  margin-bottom: 0.5rem;
} /* bigger */
.spec-card__val sub {
  font-size: 1.5rem;
}
.spec-card__label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-charcoal);
  margin-bottom: 0.375rem;
} /* bigger */
.spec-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
}

/* ============================================================
   14. USE CASES — bigger icons and body text
   ============================================================ */
.usecases-section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 4rem 5%;
}
.usecase-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 2rem 1.75rem; /* more padding */
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.usecase-card:hover {
  border-color: var(--c-forest-lt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.usecase-card__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.usecase-card__head h3 {
  font-size: var(--text-xl);
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}
.usecase-card__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.usecase-card p {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: var(--lh-normal);
}

/* ============================================================
   15. BUNDLE — bigger icons and text
   ============================================================ */
.bundle-section {
  background: var(--c-forest);
  padding: 4rem 5%;
}
.bundle-inner {
  max-width: 960px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.bundle-text h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.bundle-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  font-size: var(--text-base);
  line-height: var(--lh-normal);
}
.bundle-price {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bundle-now {
  font-family: var(--font-display);
  font-size: 2.625rem;
  font-weight: 700;
  color: #fff;
}
.bundle-was {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}
.bundle-save {
  background: var(--c-terra);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
}
.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.bundle-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem; /* more padding */
}
.bundle-item__icon {
  font-size: 2rem;
} /* was 1.5rem */
.bundle-item__name {
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.125rem;
}
.bundle-item__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}
.bundle-item__price {
  margin-left: auto;
  font-size: var(--text-base);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

/* ============================================================
   16. REVIEWS — bigger throughout
   ============================================================ */
.reviews-section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 4rem 5%;
}
.reviews-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.rating-summary {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.rs-score {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--c-charcoal);
  line-height: 1;
} /* bigger score */
.rs-stars {
  color: var(--c-gold);
  font-size: 1.5rem;
  margin: 0.625rem 0;
} /* bigger stars */
.rs-count {
  font-size: var(--text-base);
  color: var(--c-muted);
}
.rs-bars {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
}
.rs-bar-lbl {
  width: 2.25rem;
  text-align: right;
  color: var(--c-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.rs-bar-track {
  flex: 1;
  height: 8px;
  background: var(--c-cream-3);
  border-radius: 4px;
  overflow: hidden;
} /* taller bars */
.rs-bar-fill {
  height: 100%;
  background: var(--c-gold);
  border-radius: 4px;
}
.rs-bar-pct {
  width: 2rem;
  font-size: var(--text-sm);
  color: var(--c-muted);
  flex-shrink: 0;
}
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem; /* more padding */
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
} /* bigger avatar */
.review-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-charcoal);
}
.review-meta {
  font-size: var(--text-sm);
  color: var(--c-muted);
  margin-top: 0.125rem;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-forest);
  background: var(--c-forest-pale);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.review-card__rating {
  text-align: right;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
  font-size: 0.875rem;
  justify-content: flex-end;
  letter-spacing: 0.02em;
}
.review-stars__empty,
.review-stars {
  color: var(--c-gold);
}
.review-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-charcoal);
  margin-bottom: 0.625rem;
}
.review-card__text {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: var(--lh-normal);
}
.reviews-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.reviews-list__sort {
  width: auto;
  font-size: 0.8125rem;
  cursor: pointer;
}
.verified-badge--vine {
  color: var(--c-muted);
  font-weight: 600;
}
.btn-load-more {
  display: block;
  width: 100%;
  padding: 1rem;
  background: none;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-muted);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  font-family: inherit;
  margin-top: 0.875rem;
}
.btn-load-more:hover {
  border-color: var(--c-forest);
  color: var(--c-forest);
}

/* ============================================================
   17. COMPARE TABLE — bigger text
   ============================================================ */
.compare-section {
  background: var(--c-cream-2);
  padding: 4rem 5%;
}
.compare-inner {
  max-width: 900px;
  margin-inline: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}
.compare-table thead {
  background: var(--c-forest);
}
.compare-table thead th {
  padding: 1.125rem 1.25rem;
  color: #fff;
  font-size: var(--text-base);
  font-weight: 700;
  text-align: left;
}
.compare-table thead th.hl {
  background: rgba(255, 255, 255, 0.12);
}
.compare-table tbody tr {
  background: #fff;
}
.compare-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}
.compare-table tbody tr:hover {
  background: var(--c-cream);
}
.compare-table tbody th {
  padding: 1rem 1.25rem;
  font-size: var(--text-base);
  font-weight: 700;
  text-align: left;
  color: #1a1a1a;
  border-bottom: 1px solid var(--c-border);
}
.compare-table td {
  padding: 1rem 1.25rem;
  font-size: var(--text-base);
  color: #1a1a1a;
  border-bottom: 1px solid var(--c-border);
}
.compare-table td.hl {
  font-weight: 700;
  color: var(--c-forest);
  background: rgba(74, 138, 40, 0.05);
}
.ic-yes {
  color: var(--c-success);
  font-weight: 700;
}
.ic-no {
  color: var(--c-error);
}
.ic-maybe {
  color: var(--c-gold);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ============================================================
   18. FAQ — bigger questions, more padding
   ============================================================ */
.faq-section {
  padding: 4rem 5%;
}
.faq-inner {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-charcoal); /* bigger FAQ question */
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  background: none;
  font-family: var(--font-display);
}
.faq-q:hover {
  color: var(--c-forest);
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0; /* bigger toggle */
  background: var(--c-forest-pale);
  color: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  transition:
    rotate 0.25s,
    background 0.2s;
}
.faq-q[aria-expanded="true"] .faq-toggle {
  rotate: 45deg;
  background: var(--c-forest);
  color: #fff;
}
.faq-a {
  display: none;
  padding-bottom: 1.375rem;
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: var(--lh-normal);
} /* bigger answer */
.faq-a.open {
  display: block;
}

/* ============================================================
   19. FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--c-forest);
  padding: 5.5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 12px 12px;
}
.final-cta > * {
  position: relative;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.final-cta h2 em {
  color: #a8d878;
  font-style: italic;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-size: var(--text-lg);
} /* bigger */
.final-cta__btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta__assurance {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}
.assurance-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ============================================================
   20. STICKY BUY BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 0.75rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  translate: 0 100%;
  transition: translate 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: wrap;
}
.sticky-bar.visible {
  translate: 0 0;
}
.sticky-bar__info {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.sticky-bar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-charcoal);
} /* bigger */
.sticky-bar__price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-forest);
}
.sticky-bar__stock {
  font-size: var(--text-sm);
  color: var(--c-muted);
}
.sticky-bar__btns {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}
.sticky-btn {
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
} /* bigger */
.sticky-btn--cart {
  background: var(--c-forest);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 58, 16, 0.22);
}
.sticky-btn--buy {
  background: var(--c-forest);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 58, 16, 0.22);
}
.sticky-btn--buy:hover,
.sticky-btn--cart:hover {
  background: var(--c-forest-mid);
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.qc-footer {
  background: var(--c-charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 0 0 2rem;
}
.qc-footer__container {
  width: 100%;
  padding-inline: var(--qc-site-gutter, 5%);
}
.qc-footer__columns {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 1fr) minmax(
      160px,
      1fr
    );
  align-items: start;
  width: 100%;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 0.5rem 0 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.qc-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.qc-footer__logo {
  display: block;
  line-height: 0;
  margin: 50px 0 1rem;
}
.qc-footer__logo-img {
  display: block;
  height: var(--qc-nav-logo-height, 75px);
  max-height: var(--qc-nav-logo-height, 75px);
  width: auto;
  max-width: min(500px, 100%);
  object-fit: contain;
  object-position: left top;
  filter: brightness(0) invert(1);
}
.qc-footer__tagline {
  max-width: 36ch;
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--lh-normal);
}
.qc-footer__col {
  margin: 0;
  padding: 50px 0 0;
}
.qc-footer__heading {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.qc-footer__heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.qc-footer__heading a:hover {
  color: #fff;
}
.qc-footer__links,
.qc-footer__links.menu,
.qc-footer__posts,
.qc-footer__posts.menu {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qc-footer__links a {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.qc-footer__links a:hover {
  color: #fff;
}
.qc-footer__post {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.qc-footer__posts a {
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-normal);
  text-decoration: none;
  transition: color 0.2s;
}
.qc-footer__posts a:hover {
  color: #fff;
}
.qc-footer__post-date {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}
.qc-footer__empty {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
}
.qc-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.qc-footer__copyright {
  margin: 0;
  font-size: var(--text-sm);
}

/* ============================================================
   22. BLOG / CONTENT
   ============================================================ */
.page-hero {
  background: var(--c-forest);
  padding: 2rem 5%;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 0.875rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-inline: auto;
  font-size: var(--text-lg);
}
.content-wrap {
  max-width: 760px;
  margin: 3.5rem auto;
  padding-inline: 5%;
}
.content-wrap h2 {
  margin: 2.25rem 0 1rem;
}
.content-wrap h3 {
  margin: 1.75rem 0 0.875rem;
}
.content-wrap p {
  margin-bottom: 1.25rem;
  font-size: var(--text-base);
}
.content-wrap ul,
.content-wrap ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.content-wrap li {
  margin-bottom: 0.625rem;
  font-size: var(--text-base);
  color: var(--c-muted);
  list-style: disc;
}
.content-wrap img {
  border-radius: var(--radius-md);
  margin-block: 1.75rem;
}

/* ============================================================
   23. WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 5%;
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.woocommerce ul.products li.product {
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  padding: 0.875rem 1.125rem 0.375rem;
}
.woocommerce ul.products li.product .price {
  color: var(--c-forest);
  font-size: var(--text-xl);
  font-weight: 700;
  padding: 0 1.125rem;
}
.woocommerce ul.products li.product .button {
  display: block;
  margin: 0.875rem 1.125rem 1.125rem;
  padding: 0.75rem 1.375rem;
  background: var(--c-forest);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-base);
  text-align: center;
  transition: background 0.2s;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--c-forest-mid);
}
.woocommerce div.product .price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--c-forest);
  font-weight: 700;
}
.woocommerce div.product .single_add_to_cart_button {
  background: var(--c-forest);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 700;
  transition: background 0.2s;
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--c-forest-mid);
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--c-terra);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 700;
}
.woocommerce #payment #place_order {
  background: var(--c-forest);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 700;
}
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--c-forest);
  background: var(--c-forest-pale);
}

/* ============================================================
   24. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  translate: 0 18px;
  transition:
    opacity 0.5s ease,
    translate 0.5s ease;
}
.reveal.in {
  opacity: 1;
  translate: 0 0;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .qc-footer__columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .qc-footer__col {
    padding-top: 0;
  }
  .qc-footer__logo {
    margin-top: 1.5rem;
  }
  .bundle-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .qc-footer {
    padding-bottom: 1.5rem;
  }
  .qc-footer__columns {
    justify-items: center;
    text-align: center;
    gap: 0.625rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .qc-footer__brand {
    align-items: center;
  }
  .qc-footer__logo {
    margin: 1.25rem auto 0.625rem;
  }
  .qc-footer__logo-img {
    object-position: center center;
    margin-inline: auto;
  }
  .qc-footer__tagline {
    max-width: 100%;
  }
  .qc-footer__col {
    width: 100%;
    padding-top: 0;
  }
  .qc-footer__links,
  .qc-footer__posts {
    align-items: center;
  }
  .product-section {
    grid-template-columns: 1fr;
  }
  .gallery {
    position: static;
  }
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section .grid-2 {
    grid-template-columns: 1fr;
  }
  .spec-cards.grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .usecases-section .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-top {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-amazon-btn {
    display: none;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .usecases-section .grid-3,
  .spec-cards.grid-3 {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .qc-footer__columns {
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .qc-footer__logo {
    margin: 1rem auto 0.5rem;
  }
  .qc-footer__heading {
    margin-bottom: 0.375rem;
  }
  .qc-footer__links,
  .qc-footer__posts {
    gap: 0.375rem;
  }
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .compare-table th:nth-child(n + 4),
  .compare-table td:nth-child(n + 4) {
    display: none;
  }
}
