/* =========================================================
   PEPTIDE RESEARCH — main.css
   ========================================================= */

/* ----- Design Tokens ----- */
:root {
  --navy:        #0A1628;
  --navy-mid:    #0D2040;
  --navy-light:  #132952;
  --gold:        #C9A84C;
  --gold-dark:   #B0903E;
  --gold-glow:   rgba(201,168,76,.15);
  --off-white:   #F4F7FA;
  --white:       #ffffff;
  --text:        #1A2B3C;
  --text-mid:    #3D5068;
  --text-light:  #6B7F95;
  --border:      #D8E4ED;
  --shadow-sm:   0 2px 8px rgba(10,22,40,.07);
  --shadow-md:   0 6px 24px rgba(10,22,40,.11);
  --shadow-lg:   0 12px 48px rgba(10,22,40,.18);
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --t:           .22s;
}

/* ----- Base Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ----- Layout ----- */
.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.section {
  padding-block: clamp(56px, 8vw, 100px);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-eyebrow--light { color: var(--gold); }

.section-title { margin-bottom: 1rem; }
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0;
}
.section-sub--light { color: rgba(255,255,255,.75); }

.section-footer-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
  padding: 0;
}

.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(10,22,40,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  max-height: clamp(48px, 8vw, 70px);
  width: auto;
  object-fit: contain;
  transition: opacity var(--t);
}
.site-logo:hover .logo-img { opacity: .85; }

/* Primary nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-menu li a {
  display: block;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: 6px;
  transition: color var(--t), background var(--t);
  text-decoration: none;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Cart button */
.header-cart {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.88) !important;
  position: relative;
  padding: .4rem .5rem;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.header-cart:hover { color: var(--white) !important; background: rgba(255,255,255,.1); }
.header-cart svg { stroke: currentColor; }

.cart-count {
  font-size: .75rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,.55);
  transition: all var(--t);
}
.cart-count.has-items {
  background: var(--gold);
  color: var(--navy);
  padding: 0 5px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
  border-radius: 6px;
  transition: background var(--t);
}
.mobile-toggle:hover { background: rgba(255,255,255,.1); }
.mobile-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}
.mobile-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,14,30,.82) 0%,
    rgba(10,22,40,.70) 50%,
    rgba(13,32,64,.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 120px 80px;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  background: rgba(201,168,76,.08);
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(10,22,40,.4);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .4rem .9rem;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}
.badge-icon { font-size: 1rem; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%        { opacity: 1; transform: scaleY(1.2); }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding-block: 1.5rem;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.trust-item svg {
  flex-shrink: 0;
  stroke: var(--gold);
}

.trust-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .1rem;
}

.trust-item span {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* =========================================================
   PRODUCTS SECTION — WooCommerce overrides
   ========================================================= */
.products-section {
  background: var(--off-white);
}

/* WooCommerce product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease) !important;
  float: none !important;
  width: 100% !important;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-4px) !important;
}

/* Product image */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  transition: transform .4s var(--ease) !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* Product info area */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: .98rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  padding: 1rem 1rem .4rem !important;
  line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price {
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 0 1rem .75rem !important;
  display: block !important;
}

.woocommerce ul.products li.product .price del {
  color: var(--text-light) !important;
  font-size: .85em !important;
  margin-right: .4rem !important;
}

/* Add to cart button */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  padding: .7rem 1rem !important;
  width: calc(100% - 2rem) !important;
  margin: .25rem 1rem 1rem !important;
  border-radius: 6px !important;
  transition: background var(--t) var(--ease) !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
}

.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  min-height: auto !important;
  min-width: auto !important;
  padding: .2rem .6rem !important;
  line-height: 1.4 !important;
  font-size: .75rem !important;
  top: .75rem !important;
  left: .75rem !important;
}

.no-woo {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}
.no-woo a { color: var(--gold); }

/* =========================================================
   WHY SECTION
   ========================================================= */
.why-section {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: background var(--t), transform var(--t);
}

.why-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon svg { stroke: var(--gold); }

.why-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: .6rem;
}

.why-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 0;
}

/* =========================================================
   CATEGORIES SECTION
   ========================================================= */
.categories-section {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--t), transform var(--t);
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--off-white);
  transition: transform .4s var(--ease);
}

.category-card:hover .category-img {
  transform: scale(1.04);
}

.category-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.category-img--placeholder svg { stroke: rgba(255,255,255,.3); }

.category-info {
  padding: 1.1rem 1.25rem;
  background: var(--white);
}

.category-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}

.category-count {
  font-size: .82rem;
  color: var(--text-light);
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding-block: clamp(40px, 6vw, 72px);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: .5rem;
}

.cta-text p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 520px;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { max-height: 48px; width: auto; opacity: .9; }
.footer-logo-link { display: inline-block; margin-bottom: .9rem; }

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  max-width: 260px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  list-style: none;
}

.footer-nav li { margin: 0; }

.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  padding-block: 1.75rem;
  background: rgba(0,0,0,.25);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto;
}
.footer-disclaimer strong { color: rgba(255,255,255,.65); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 0;
}

/* =========================================================
   INNER PAGES (non-homepage)
   ========================================================= */
.inner-page { padding-top: 72px; }

.page-header-bar {
  background: var(--navy);
  padding-block: 3rem;
  margin-bottom: 3rem;
}

.page-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0;
}

.page-content {
  max-width: 900px;
  padding-bottom: 5rem;
}

.entry-content { font-size: 1.05rem; line-height: 1.75; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content li { margin-bottom: .4rem; }

/* =========================================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
   ========================================================= */
.woocommerce-page .site-main { padding-top: 72px; padding-bottom: 4rem; }

.woocommerce div.product .product_title {
  font-family: 'Montserrat', sans-serif !important;
  color: var(--navy) !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gold) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}

.woocommerce div.product .cart .single_add_to_cart_button {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: .9rem 2.5rem !important;
  border: none !important;
  font-size: 1rem !important;
  letter-spacing: .04em !important;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease) !important;
}
.woocommerce div.product .cart .single_add_to_cart_button:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 6px 20px rgba(201,168,76,.35) !important;
}

/* =========================================================
   WOOCOMMERCE — SHOP ARCHIVE
   ========================================================= */
.woocommerce-products-header__title,
.woocommerce .woocommerce-products-header h1 {
  font-family: 'Montserrat', sans-serif !important;
  color: var(--navy) !important;
}

.woocommerce-breadcrumb {
  color: var(--text-light) !important;
  font-size: .85rem !important;
  margin-bottom: 1.5rem !important;
}
.woocommerce-breadcrumb a { color: var(--gold) !important; }

/* =========================================================
   WOOCOMMERCE — CART & CHECKOUT
   ========================================================= */
.woocommerce .button,
.woocommerce-page .button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background var(--t) !important;
}
.woocommerce .button:hover,
.woocommerce-page .button:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-size: 1rem !important;
  padding: .9rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

/* =========================================================
   ADMIN BAR OFFSET
   ========================================================= */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-main { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Large mobile — 768px */
@media (max-width: 768px) {
  /* Header */
  .mobile-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100dvh;
    background: var(--navy);
    padding: 90px 1.5rem 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: right .3s var(--ease);
    box-shadow: -6px 0 30px rgba(0,0,0,.25);
    z-index: 999;
    overflow-y: auto;
  }
  .primary-nav.is-open { right: 0; }

  .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: .15rem; }
  .nav-menu li a {
    font-size: 1.1rem;
    padding: .75rem 1rem;
    width: 100%;
    border-radius: 8px;
    color: rgba(255,255,255,.88);
  }

  /* Nav overlay */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 998;
  }

  /* Hero */
  .hero { background-attachment: scroll; }
  .hero-content { padding-block: 110px 60px; max-width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .hero-badges { gap: .75rem; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }

  /* Products */
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem; }

  /* Categories */
  .category-grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { padding: .75rem 0; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
  .hero-badges { display: none; }
}
