/*
Theme Name: Careprost
Description: Professional healthcare e-commerce theme for BuyAuthenticCareprost. Clean, fast, WooCommerce-ready.
Author: BuyAuthenticCareprost
Version: 4.0
*/

/* ================================================================
   MASTER DESIGN TOKENS
   Primary:  #1a5c35  (deep forest green)
   Mid:      #2d8653  (medium green)  
   Light:    #e8f5ee  (mint tint)
   Accent:   #c8841a  (warm amber/gold)
   Dark:     #0e3520  (very dark green — topbar, footer)
   ================================================================ */
:root {
  --green-dark:    #0e3520;
  --green-primary: #1a5c35;
  --green-mid:     #2d8653;
  --green-light:   #e8f5ee;
  --green-border:  #c3dccb;
  --amber:         #c8841a;
  --amber-light:   #fff5e6;
  --white:         #ffffff;
  --bg:            #f6f8f6;
  --surface:       #ffffff;
  --border:        #e2e8e4;
  --text:          #1a2a1e;
  --text-mid:      #3d5445;
  --text-muted:    #728c7a;
  --text-light:    #a0b5a7;
  --danger:        #c0392b;
  --success:       #1a8a50;

  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 999px;

  --s-xs:  0 1px 3px rgba(0,0,0,.06);
  --s-sm:  0 2px 10px rgba(0,0,0,.08);
  --s-md:  0 6px 24px rgba(0,0,0,.10);
  --s-lg:  0 16px 48px rgba(0,0,0,.13);

  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     .2s var(--ease);
}

/* ── ULTIMATE CUSTOMIZER VARS (fallbacks) ────────────────────────── */
:root {
  --uc-body-text:           var(--text);
  --uc-global-bg:           var(--bg);
  --uc-heading:             var(--text);
  --uc-link:                var(--green-primary);
  --uc-link-hover:          var(--green-mid);
  --uc-topbar-bg:           var(--green-dark);
  --uc-topbar-text:         #fff;
  --uc-header-bg:           var(--white);
  --uc-logo-color:          var(--green-primary);
  --uc-search-border:       var(--border);
  --uc-search-btn-bg:       var(--green-primary);
  --uc-search-btn-text:     #fff;
  --uc-nav-bg:              var(--green-primary);
  --uc-nav-link-color:      #fff;
  --uc-nav-hover-bg:        rgba(255,255,255,.15);
  --uc-submenu-bg:          var(--green-mid);
  --uc-btn-bg:              var(--green-primary);
  --uc-btn-text:            #fff;
  --uc-btn-hover:           var(--green-dark);
  --uc-footer-bg:           var(--green-dark);
  --uc-footer-text:         rgba(255,255,255,.75);
  --uc-footer-link:         rgba(255,255,255,.6);
  --uc-card-border:         var(--border);
  --uc-review-border:       var(--green-primary);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--green-mid); }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -.02em;
}

ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border);
}

/* Top bar */
.header-top {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 8px 0;
  font-size: 12.5px;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a { color: rgba(255,255,255,.8); }
.header-top a:hover { color: #fff; }
.header-top .header-meta a { margin-left: 14px; }

/* Main header */
.header-main { padding: 14px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo { flex-shrink: 0; }
.logo img { height: 46px; width: auto; }
.logo .site-name-text,
.logo a span {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: -.03em;
}

/* Search */
.search-bar { flex: 1; max-width: 460px; position: relative; }
.search-bar form { display: flex; align-items: center; }
.search-bar input[type="text"],
.search-bar input[type="search"] {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.search-bar input:focus {
  border-color: var(--green-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,92,53,.1);
}
.search-bar button[type="submit"] {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--green-primary);
  color: #fff; border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background var(--t);
}
.search-bar button[type="submit"]:hover { background: var(--green-dark); }
#search-results-container { position: absolute; top: 100%; left: 0; width: 100%; z-index: 9999; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header-actions a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.header-actions a:hover { background: var(--green-light); color: var(--green-primary); }

/* Cart link */
a.cart-contents {
  background: var(--green-light) !important;
  color: var(--green-primary) !important;
  padding: 9px 16px !important;
  border-radius: var(--r-full) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border: 1.5px solid var(--green-border) !important;
  gap: 7px !important;
  display: inline-flex !important; align-items: center !important;
  transition: all var(--t) !important;
}
a.cart-contents:hover {
  background: var(--green-primary) !important;
  color: #fff !important;
  border-color: var(--green-primary) !important;
}
.cart-count-and-total { font-size: 12px; }

/* Account dropdown */
.account-dropdown-container { position: relative; display: inline-block; }
.account-main-link { display: inline-flex !important; align-items: center !important; gap: 5px !important; }
.account-main-link .fa-chevron-down { font-size: 9px !important; }
.account-dropdown-content {
  display: none;
  position: absolute; top: 100%; right: 0;
  background: #fff;
  min-width: 200px;
  border-radius: var(--r-sm);
  box-shadow: var(--s-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-primary);
  z-index: 9999;
  overflow: hidden;
}
.account-dropdown-content::before {
  content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px;
}
.account-dropdown-container:hover .account-dropdown-content { display: block; }
.dropdown-greeting {
  display: block; padding: 12px 16px;
  font-size: 13px; font-weight: 700; color: var(--green-primary);
  background: var(--green-light);
  border-bottom: 1px solid var(--green-border);
}
.account-dropdown-content a {
  display: block; padding: 11px 16px;
  font-size: 13px; color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: background var(--t), color var(--t);
}
.account-dropdown-content a:hover {
  background: var(--green-light); color: var(--green-primary);
}
.account-dropdown-content a:last-child { border-bottom: none; }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.main-navigation { background: var(--green-primary); }
.main-navigation.desktop-nav { display: block; }
.nav-inner {
  display: flex;
  align-items: stretch;
  min-height: 48px;
}
.nav-menu { display: flex; align-items: stretch; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center;
  height: 48px; padding: 0 18px;
  color: rgba(255,255,255,.9);
  font-size: 13.5px; font-weight: 500;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* Sub-menu mega */
.nav-menu .menu-item-has-children ul.sub-menu {
  display: none !important;
  position: absolute; top: 100%; left: 0;
  background: var(--green-mid);
  min-width: 860px;
  padding: 16px;
  z-index: 9999;
  box-shadow: var(--s-md);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.nav-menu .menu-item-has-children:hover > ul.sub-menu {
  display: flex !important;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 380px;
}
.nav-menu .sub-menu li { width: 210px; padding: 1px 0; }
.nav-menu .sub-menu li a {
  color: rgba(255,255,255,.88) !important;
  font-size: 13px; display: block; padding: 5px 8px;
  border-radius: var(--r-xs);
  transition: background var(--t) !important;
}
.nav-menu .sub-menu li a:hover {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
}

/* Offers pill */
.header-offers-link { margin-left: auto; display: flex; align-items: center; padding-right: 4px; }
.header-offers-link a {
  display: flex; align-items: center; gap: 7px;
  background: var(--amber);
  color: #fff; padding: 7px 18px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700;
  transition: background var(--t);
}
.header-offers-link a:hover { background: #a86c10; color: #fff; }

/* ── OFF-CANVAS MOBILE ───────────────────────────────────────────── */
.off-canvas-menu {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100%;
  background: #fff; z-index: 99999;
  transition: left .3s var(--ease);
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,.18);
}
body.mobile-menu-open .off-canvas-menu { left: 0; }
.off-canvas-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 9998;
}
body.mobile-menu-open .off-canvas-overlay { display: block; }
.off-canvas-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: var(--green-primary); color: #fff;
}
.menu-title { font-weight: 700; font-size: 17px; }
.close-menu-btn {
  background: none; border: none; color: #fff;
  font-size: 22px; line-height: 1;
}
.mobile-nav-menu li a {
  display: block; padding: 12px 20px;
  color: var(--text-mid); font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t), color var(--t);
}
.mobile-nav-menu li a:hover { background: var(--green-light); color: var(--green-primary); }
.mobile-nav-menu .sub-menu { display: none; background: var(--bg); }
.mobile-nav-menu li.sub-menu-open > .sub-menu { display: block; }
.mobile-nav-menu .sub-menu a { padding-left: 36px; font-size: 13px; }
.menu-arrow-btn {
  float: right; background: none; border: none;
  padding: 0 20px; color: var(--text-muted); font-size: 13px;
}

/* ── MOBILE STACK HEADER ─────────────────────────────────────────── */
.mobile-stack-layout {
  display: none;
  background: #fff; width: 100%;
  box-shadow: 0 1px 0 var(--border);
  position: relative; z-index: 1001;
}
.mobile-row-1 {
  display: flex; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.menu-toggle-mobile {
  background: none; border: none;
  font-size: 22px; color: var(--text-mid);
  margin-right: 12px; padding: 0;
}
.mobile-logo a { display: flex; align-items: center; }
.mobile-logo img { height: 36px; width: auto; }
.mobile-logo .site-name-text { font-size: 17px; font-weight: 800; color: var(--green-primary); }

.mobile-row-2 { padding: 10px 14px; background: var(--bg); position: relative; }
.mobile-search-form { display: flex; position: relative; }
.mobile-search-form input {
  width: 100% !important; height: 44px !important;
  border: 2px solid var(--green-border) !important;
  border-radius: var(--r-full) !important;
  padding: 0 50px 0 18px !important;
  background: #fff !important; font-size: 14px !important;
  outline: none !important;
}
.mobile-search-form button {
  position: absolute !important; right: 4px !important; top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important; height: 36px !important;
  background: var(--green-primary) !important; color: #fff !important;
  border: none !important; border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 13px !important;
}
#mobile-search-results-clone {
  position: absolute; top: 100%; left: 0; width: 100%;
  background: #fff; z-index: 99999;
  box-shadow: var(--s-md); border: 1px solid var(--border); border-top: none;
  max-height: 400px; overflow-y: auto; display: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.mobile-row-3 {
  display: flex; justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.mobile-icon-item {
  text-decoration: none; color: var(--text-mid);
  display: flex; flex-direction: column; align-items: center;
  font-size: 11px; font-weight: 500; gap: 3px; position: relative;
}
.mobile-icon-item i { font-size: 19px; color: var(--green-primary); }
.mobile-icon-item .count {
  position: absolute; top: -4px; right: 2px;
  background: var(--amber); color: #fff;
  border-radius: 50%; width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}
.mobile-offers-link i, .mobile-offers-link span { color: var(--amber) !important; }

/* ── RESPONSIVE SWITCH ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .mobile-stack-layout { display: block; }
  .header-top, .header-main, .desktop-nav { display: none !important; }
}

/* ================================================================
   TRUST BADGES — COMPACT TOP STRIP
   ================================================================ */
.trust-badges-section {
  background: var(--green-dark);
  border: none;
  padding: 0;
}
.trust-badges-section .container { padding-top: 0; padding-bottom: 0; }
.trust-badges-section .trust-badges-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  padding: 0 !important;
  gap: 0 !important;
  animation: none !important;
}
.trust-badges-section .trust-badge-item {
  flex: 1;
  display: flex !important;
  align-items: center !important;
  gap: 11px;
  padding: 11px 20px !important;
  min-width: 0;
  border-right: 1px solid rgba(255,255,255,.1) !important;
}
.trust-badges-section .trust-badge-item:last-child { border-right: none !important; }
.trust-badges-section .badge-icon { font-size: 20px; flex-shrink: 0; }
.trust-badges-section .badge-icon i { color: rgba(255,255,255,.75) !important; font-size: 20px; }
.trust-badges-section .badge-text strong {
  display: block; font-size: 12.5px; font-weight: 700;
  color: #fff !important; line-height: 1.3;
}
.trust-badges-section .badge-text span {
  font-size: 11px; color: rgba(255,255,255,.6) !important; line-height: 1.3;
}

/* Second trust row (simple badges) */
.trust-badges-section.second-trust-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-badges-section.second-trust-row .trust-badges-grid {
  padding: 12px 0 !important;
  justify-content: space-around;
}
.trust-badges-section.second-trust-row .trust-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  flex: 1; justify-content: center;
  padding: 4px 0;
  border-right: 1px solid var(--border);
}
.trust-badges-section.second-trust-row .trust-badge:last-child { border-right: none; }
.trust-badges-section.second-trust-row .trust-badge i { color: var(--green-primary); font-size: 16px; }

/* ================================================================
   HERO SLIDESHOW
   ================================================================ */
.slideshow-section { position: relative; overflow: hidden; background: #000; }
.slideshow-container { position: relative; max-width: 100%; }
.slide { display: none; width: 100%; position: relative; }
.slide img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 500px; }

.prev, .next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  color: #fff; font-weight: bold; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: background var(--t);
  border: 1px solid rgba(255,255,255,.3);
  text-decoration: none; cursor: pointer;
}
.prev { left: 16px; }
.next { right: 16px; border-radius: 50%; }
.prev:hover, .next:hover { background: rgba(255,255,255,.35); color: #fff; }

.slideshow-section .dot-container {
  position: absolute; bottom: 14px; width: 100%;
  display: flex; justify-content: center; gap: 7px; z-index: 5;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer;
  border: none; transition: background var(--t), transform var(--t);
}
.dot.active { background: #fff; transform: scale(1.35); }

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.section-title {
  font-size: clamp(19px, 2.8vw, 26px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  display: block;
}
.section-title::after {
  content: '';
  display: block;
  width: 44px; height: 3px;
  background: var(--green-primary);
  border-radius: 2px;
  margin: 7px auto 0;
}
.section-title-container { text-align: center; margin-bottom: 32px; }

/* ================================================================
   CATEGORY GRID
   ================================================================ */
.photo-categories-section {
  padding: 52px 0;
  background: var(--white);
}
.category-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.category-photo-item {
  border-radius: var(--r-md);
  background-size: cover; background-position: center;
  overflow: hidden; position: relative;
  height: 180px;
  transition: transform var(--t), box-shadow var(--t);
}
.category-photo-item:hover { transform: translateY(-4px); box-shadow: var(--s-md); }
.category-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 14px;
  transition: background var(--t);
}
.category-photo-item:hover .category-item-overlay {
  background: linear-gradient(to top, rgba(26,92,53,.78) 0%, transparent 60%);
}
.category-item-overlay h3 {
  color: #fff; font-size: 13px; font-weight: 700; margin: 0;
}

/* ================================================================
   PRODUCT SLIDER / SHOP LOOP
   ================================================================ */
.product-section { padding: 52px 0; background: var(--bg); }

ul.products, .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 18px !important;
  list-style: none !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
}
ul.products::before, ul.products::after { display: none !important; }

li.product, .woocommerce li.product {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  padding: 18px !important;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
  overflow: hidden;
  width: 100% !important;
}
li.product::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--amber));
  opacity: 0; transition: opacity var(--t);
}
li.product:hover { box-shadow: var(--s-md); transform: translateY(-3px); }
li.product:hover::before { opacity: 1; }

li.product img { height: 170px !important; object-fit: contain !important; border-radius: var(--r-xs); }

.woocommerce-loop-product__title {
  font-size: 13.5px !important; font-weight: 600 !important;
  color: var(--text) !important; line-height: 1.4 !important;
  margin: 10px 0 4px !important;
}
.woocommerce-loop-product__title a { color: var(--text); }
.woocommerce-loop-product__title a:hover { color: var(--green-primary); }

.price, .woocommerce .price {
  color: var(--green-primary) !important;
  font-weight: 700 !important; font-size: 15px !important;
}
.price del { color: var(--text-light) !important; font-weight: 400 !important; font-size: 13px !important; }
ins { text-decoration: none !important; }

/* Product meta loop */
.product-loop-meta { font-size: 12px; color: var(--text-muted); margin: 4px 0 10px; line-height: 1.4; }
.product-loop-meta strong { color: var(--green-primary); }

/* Sale badge */
span.onsale {
  background: var(--amber) !important;
  color: #fff !important;
  border-radius: var(--r-xs) !important;
  font-size: 11px !important; font-weight: 700 !important;
  padding: 3px 8px !important; line-height: 1.4 !important;
  min-height: auto !important;
  top: 10px !important; left: 10px !important;
  box-shadow: none !important;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
a.button, button.button, input[type="submit"].button,
.woocommerce a.button, .woocommerce button.button,
.woocommerce input[type="submit"] {
  background: var(--green-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--r-full) !important;
  padding: 10px 22px !important;
  font-size: 13px !important; font-weight: 600 !important;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
  text-decoration: none;
  letter-spacing: .01em;
}
a.button:hover, button.button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input[type="submit"]:hover {
  background: var(--green-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,92,53,.28) !important;
}
a.button.alt, button.button.alt,
.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--amber) !important;
}
a.button.alt:hover, button.button.alt:hover { background: #a86c10 !important; }

/* ── LOOP VARIATION FORM ─────────────────────────────────────────── */
.loop-variation-form { margin-top: 10px; }
.loop-variation-form-wrap { margin-top: 10px; }
.loop-variation-select {
  width: 100% !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 8px 12px !important;
  font-size: 13px !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  margin-bottom: 8px !important;
  outline: none;
  transition: border-color var(--t);
}
.loop-variation-select:focus { border-color: var(--green-primary) !important; }
.loop-variation-buttons { display: flex; gap: 7px; }
.loop-add-to-cart-button {
  flex: 1; background: var(--green-primary) !important;
  color: #fff !important; border: none !important;
  border-radius: var(--r-full) !important;
  padding: 9px 14px !important; font-weight: 600 !important; font-size: 13px !important;
  transition: background var(--t);
}
.loop-add-to-cart-button:disabled { opacity: .4; cursor: not-allowed; }
.loop-add-to-cart-button:not(:disabled):hover { background: var(--green-dark) !important; }
.loop-add-to-cart-button.loading { opacity: .65; cursor: wait; }
.loop-add-to-cart-message {
  font-size: 12px; font-weight: 600; margin-top: 6px;
  padding: 6px 10px; border-radius: var(--r-sm);
}
.loop-add-to-cart-message.success { background: #e6f7ed; color: var(--success); }
.loop-add-to-cart-message.error   { background: #fde8e8; color: var(--danger); }

/* Cart form v13 (add-to-cart dropdown on category pages) */
.variation-wrap-v13 { margin-top: 10px; }
.cart-form-v13 select, .cart-select-v13 {
  width: 100%; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 8px 10px;
  font-size: 13px; background: var(--bg); color: var(--text);
  margin-bottom: 8px; outline: none;
}
.cart-form-v13 .button { width: 100%; justify-content: center; }
.add-btn-v13 {
  background: var(--green-primary) !important; color: #fff !important;
  border: none !important; border-radius: var(--r-full) !important;
  padding: 9px !important; font-weight: 600 !important; width: 100%;
}
.cart-message-v13 { font-size: 12px; font-weight: 600; margin-top: 6px; }

/* ── SINGLE PRODUCT PAGE ─────────────────────────────────────────── */
.breadcrumb-container-wrapper { padding: 14px 0 4px; }
.woocommerce .woocommerce-breadcrumb {
  font-size: 13px; color: var(--text-muted); margin: 0 !important;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--green-primary); }

.woocommerce div.product {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; margin: 16px 0; border: 1px solid var(--border);
}
.woocommerce div.product .product_title {
  font-size: clamp(20px, 3vw, 28px) !important; font-weight: 800 !important;
  color: var(--text) !important; margin-bottom: 10px !important;
}
.woocommerce div.product p.price {
  font-size: 22px !important; color: var(--green-primary) !important; font-weight: 700 !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* Product spec box */
.product-specs-box {
  background: var(--green-light) !important;
  border: 1px solid var(--green-border) !important;
  border-radius: var(--r-md) !important;
  padding: 14px 16px !important;
  margin: 14px 0 18px !important;
  font-size: 13.5px !important;
}
.product-specs-box div { padding-bottom: 7px !important; margin-bottom: 7px !important; }
.product-specs-box span[style*="color: #7DA23F"],
.product-specs-box span { color: var(--green-primary) !important; }

/* Sales proof */
.sales-social-proof-small {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber-light);
  border: 1px solid rgba(200,132,26,.2);
  border-radius: var(--r-full); padding: 5px 14px; margin: 8px 0;
}
.sales-count { font-size: 13px; font-weight: 700; color: var(--amber); }

/* Variation table (single product) */
.product-variation-table-wrapper {
  margin: 18px 0; overflow-x: auto; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border);
}
.product-variation-table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
.product-variation-table thead { background: var(--green-primary); }
.product-variation-table th {
  color: #fff; padding: 12px 16px;
  font-weight: 600; text-align: left; font-size: 13px;
}
.product-variation-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.product-variation-table tbody tr:last-child td { border-bottom: none; }
.product-variation-table tbody tr:hover { background: var(--green-light); }
.product-variation-table .button.alt { background: var(--amber) !important; padding: 8px 16px !important; }
.product-variation-table .button.alt:hover { background: #a86c10 !important; }
.quantity-dropdown, .quantity-add-to-cart select {
  border: 1.5px solid var(--border); border-radius: var(--r-xs);
  padding: 6px 10px; font-size: 13px; background: var(--bg);
}

/* Tabs */
.woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--border) !important;
  padding: 0 !important; margin-bottom: 0 !important;
}
.woocommerce-tabs ul.tabs li {
  background: none !important; border: none !important; border-radius: 0 !important;
  margin-bottom: -2px; border-bottom: 2px solid transparent !important;
}
.woocommerce-tabs ul.tabs li a {
  color: var(--text-muted) !important; font-weight: 600 !important; font-size: 13.5px !important;
  padding: 10px 18px !important;
}
.woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--green-primary) !important;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--green-primary) !important; }
.woocommerce-tabs .panel { padding: 22px 0 !important; }

/* Review summary (Amazon style) */
.amazon-review-wrapper {
  display: flex; gap: 28px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px; margin-bottom: 24px;
}
.ar-col-left { min-width: 110px; text-align: center; }
.ar-average-score { font-size: 48px; font-weight: 800; color: var(--text); line-height: 1; }
.ar-total-count { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.ar-col-middle { flex: 1; min-width: 200px; }
.ar-bar-row { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; }
.ar-star-label { font-size: 12px; color: var(--text-muted); min-width: 38px; }
.ar-progress-bg { flex: 1; height: 9px; background: var(--border); border-radius: 5px; overflow: hidden; }
.ar-progress-fill { height: 100%; background: var(--amber); border-radius: 5px; transition: width .5s; }
.ar-percent-label { font-size: 12px; color: var(--text-muted); min-width: 30px; text-align: right; }
.ar-col-right { min-width: 180px; }
.ar-col-right h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.ar-col-right p  { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.ar-btn {
  display: inline-block; padding: 9px 20px;
  border-radius: var(--r-full); font-size: 13px; font-weight: 600;
}
.ar-write-btn { background: var(--green-primary); color: #fff !important; }
.ar-write-btn:hover { background: var(--green-dark); }
.ar-login-btn { background: var(--green-light); color: var(--green-primary) !important; }

/* Review photo */
.review-photo-box { margin-top: 14px; }
.review-photo-box img { max-width: 140px; border-radius: var(--r-sm); border: 1px solid var(--border); }

/* FAQ accordion */
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); margin-bottom: 9px; overflow: hidden;
}
.faq-question {
  background: var(--white) !important; color: var(--text) !important;
  padding: 15px 20px !important; font-size: 14.5px !important; font-weight: 600 !important;
  cursor: pointer; width: 100%; text-align: left; border: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--t) !important;
}
.faq-question:hover, .faq-question.active {
  background: var(--green-light) !important; color: var(--green-primary) !important;
}
.faq-question:not(:has(i))::after { content: '+'; font-size: 20px; color: var(--green-primary); font-weight: 700; }
.faq-question.active:not(:has(i))::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease-out, padding .25s ease;
  background: var(--white) !important; padding: 0 20px !important;
  border-top: 0;
}
.faq-answer.open {
  max-height: 600px; padding: 14px 20px !important;
  border-top: 1px solid var(--border);
}
.faq-answer p { color: var(--text-muted); font-size: 13.5px; line-height: 1.75; margin: 0; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-slider-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #163d27 100%);
}
.testimonial-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.testimonial-container .section-title { color: #fff; }
.testimonial-container .section-title::after { background: var(--amber); }

.rating-summary {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap;
}
.rating-value { font-size: 46px; font-weight: 800; color: #fff; line-height: 1; }
.rating-summary .stars { color: #F5C518; font-size: 19px; display: flex; gap: 2px; }
.reviews-count { font-size: 13px; color: rgba(255,255,255,.65); }
.see-all-reviews {
  background: rgba(255,255,255,.12); color: #fff !important;
  padding: 6px 16px; border-radius: var(--r-full); font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  transition: background var(--t);
}
.see-all-reviews:hover { background: rgba(255,255,255,.22); }

.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 22px; margin: 6px;
  transition: background var(--t), transform var(--t);
}
.testimonial-card:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.reviewer-name { font-weight: 700; color: #fff; font-size: 14px; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.testimonial-card .stars { color: #F5C518; font-size: 13px; display: flex; gap: 2px; }
.testimonial-title { color: rgba(255,255,255,.9); font-size: 13.5px; font-weight: 600; margin: 6px 0; }
.testimonial-content p { color: rgba(255,255,255,.7); font-size: 13.5px; line-height: 1.65; margin: 0; }
.testimonial-date { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 10px; }

.slider-arrow {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: background var(--t); cursor: pointer;
}
.slider-arrow:hover { background: rgba(255,255,255,.25); }

/* ================================================================
   BLOG SECTION
   ================================================================ */
.recent-posts-section { padding: 56px 0; background: var(--white); }
.recent-posts-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.recent-post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.recent-post-card:hover { box-shadow: var(--s-md); transform: translateY(-3px); }
.recent-post-card .post-thumbnail-link { display: block; overflow: hidden; }
.recent-post-card img { width: 100%; height: 190px; object-fit: cover; transition: transform .4s var(--ease); }
.recent-post-card:hover img { transform: scale(1.04); }
.post-card-content { padding: 18px; }
.post-card-date { font-size: 11.5px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.post-card-title { font-size: 15px; font-weight: 700; margin: 7px 0 9px; line-height: 1.4; }
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--green-primary); }
.post-card-excerpt p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.view-all-container { text-align: center; margin-top: 36px; }

/* ================================================================
   INFO / ABOUT / FAQ SECTION
   ================================================================ */
.info-layout-section { padding: 56px 0; background: var(--bg); }
.info-layout-section .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.info-title {
  font-size: 15px; font-weight: 800; color: var(--green-primary);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 14px; padding-bottom: 9px;
  border-bottom: 2px solid var(--green-border);
}
.about-content p, .why-content p {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px;
}
.features-list-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 14px;
}
.features-list-grid ul { padding: 0; }
.features-list-grid li {
  padding: 4px 0; font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 7px;
}
.features-list-grid li i { color: var(--green-primary); font-size: 10px; }
.btn-read-more {
  display: inline-block; margin-top: 14px; padding: 9px 22px;
  background: var(--green-light); color: var(--green-primary);
  border-radius: var(--r-full); font-size: 13px; font-weight: 600;
  transition: background var(--t), color var(--t);
}
.btn-read-more:hover { background: var(--green-primary); color: #fff; }

/* About / Why grid inside info section */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 48px;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-primary) 0%, #2a9d5e 100%);
  padding: 60px 0; text-align: center;
}
.newsletter-section h3 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 7px; }
.newsletter-section > .container > p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 26px; }
#newsletter-form-wrapper { display: flex; justify-content: center; }
#newsletter-form {
  display: flex; max-width: 460px; width: 100%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-full); overflow: hidden;
}
#newsletter-form input[type="email"] {
  flex: 1; background: transparent; border: none;
  padding: 13px 20px; color: #fff; font-size: 14px; outline: none;
}
#newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.65); }
#newsletter-form button, #newsletter-submit-btn {
  background: #fff !important; color: var(--green-primary) !important;
  border: none !important; padding: 12px 26px !important;
  font-weight: 700 !important; font-size: 14px !important;
  border-radius: 0 !important; cursor: pointer;
  transition: background var(--t) !important;
}
#newsletter-form button:hover { background: var(--green-light) !important; }
#newsletter-message { margin-top: 14px; font-size: 14px; font-weight: 600; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.72); }
.footer-content {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: 44px;
  padding: 52px 0 36px;
}
.footer-section h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.footer-section p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.55); }
.footer-links { padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: 13px; transition: color var(--t); }
.footer-links a:hover { color: var(--amber); }
.social-links { display: flex; gap: 9px; margin-top: 16px; }
.social-links a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.social-links a:hover {
  background: var(--green-primary); color: #fff; border-color: var(--green-primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.65; margin-bottom: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.38); margin: 0; }

/* ================================================================
   POPUP / COUPON BAR
   ================================================================ */
.footer-signup-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); border-top: 3px solid var(--green-primary);
  box-shadow: 0 -6px 28px rgba(0,0,0,.14);
  padding: 18px 0;
}
.footer-signup-bar .container {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.popup-title { font-size: 17px; font-weight: 800; color: var(--text); margin: 0 0 3px; }
.popup-text  { font-size: 13px; color: var(--text-muted); margin: 0; }
.form-inputs { display: flex; gap: 9px; flex-wrap: wrap; }
.input-group {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-full); padding: 8px 16px; min-width: 170px;
}
.input-group i { color: var(--text-muted); font-size: 13px; }
.input-group input { background: none; border: none; outline: none; font-size: 13.5px; color: var(--text); width: 100%; }
#popup-submit {
  background: var(--green-primary); color: #fff; border: none;
  border-radius: var(--r-full); padding: 10px 24px;
  font-weight: 700; font-size: 13.5px; cursor: pointer;
  transition: background var(--t); white-space: nowrap;
}
#popup-submit:hover { background: var(--green-dark); }
#welcome-popup-close {
  position: absolute; top: 10px; right: 16px;
  background: none; border: none; font-size: 20px;
  color: var(--text-muted); cursor: pointer; line-height: 1;
}
#welcome-popup-close:hover { color: var(--danger); }

/* ================================================================
   WOOCOMMERCE CART & CHECKOUT
   ================================================================ */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content,
.woocommerce-page .entry-content { max-width: 100% !important; margin: 0 !important; }

/* Cart page heading */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
  font-size: 26px !important; font-weight: 800 !important;
  text-align: left !important; margin-bottom: 22px !important;
}

.woocommerce table.shop_table {
  border-collapse: collapse !important; width: 100% !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important; overflow: hidden !important;
}
.woocommerce table.shop_table th {
  background: var(--green-primary) !important; color: #fff !important;
  font-size: 13px !important; font-weight: 600 !important;
  padding: 13px 18px !important; border: none !important;
}
.woocommerce table.shop_table td {
  padding: 14px 18px !important; border-bottom: 1px solid var(--border) !important;
  vertical-align: middle !important; font-size: 13.5px !important;
}
.woocommerce table.shop_table tbody tr:last-child td { border-bottom: none !important; }
.woocommerce table.shop_table .product-thumbnail img {
  width: 68px !important; height: 68px !important;
  object-fit: contain !important; border-radius: var(--r-sm) !important;
  border: 1px solid var(--border) !important;
}
.woocommerce table.shop_table .product-name a { color: var(--text) !important; font-weight: 600 !important; }
.woocommerce table.shop_table .product-name a:hover { color: var(--green-primary) !important; }
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal { color: var(--green-primary) !important; font-weight: 700 !important; }

/* Cart totals */
.woocommerce .cart-collaterals .cart_totals {
  background: var(--white) !important; border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important; padding: 22px !important;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 17px !important; font-weight: 800 !important;
  margin-bottom: 14px !important; padding-bottom: 10px !important;
  border-bottom: 2px solid var(--green-border) !important;
}
.woocommerce .cart-collaterals .cart_totals table th { background: none !important; color: var(--text-muted) !important; font-size: 13px !important; padding: 9px 0 !important; }
.woocommerce .cart-collaterals .cart_totals table td { font-weight: 600 !important; padding: 9px 0 !important; border: none !important; }
.woocommerce .cart-collaterals .cart_totals .order-total td { color: var(--green-primary) !important; font-size: 17px !important; font-weight: 800 !important; }

/* Checkout button */
.woocommerce a.checkout-button, .woocommerce .checkout-button {
  background: var(--green-primary) !important; color: #fff !important;
  width: 100% !important; text-align: center !important;
  padding: 13px !important; border-radius: var(--r-full) !important;
  font-size: 15px !important; font-weight: 700 !important;
  display: block !important; margin-top: 14px !important;
}
.woocommerce a.checkout-button:hover { background: var(--green-dark) !important; }

/* Update/coupon buttons */
.woocommerce .cart .button[name="update_cart"] {
  background: transparent !important; color: var(--text-muted) !important;
  border: 1.5px solid var(--border) !important;
}
.woocommerce .cart .button[name="update_cart"]:hover { border-color: var(--green-primary) !important; color: var(--green-primary) !important; }

/* ================================================================
   WOOCOMMERCE FORMS & NOTICES
   ================================================================ */
.woocommerce-message { border-top-color: var(--green-primary) !important; background: var(--green-light) !important; }
.woocommerce-info    { border-top-color: var(--green-mid) !important; }
.woocommerce-error   { border-top-color: var(--danger) !important; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 10px 14px !important; font-size: 14px !important;
  transition: border-color var(--t), box-shadow var(--t) !important;
  outline: none !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--green-primary) !important;
  box-shadow: 0 0 0 3px rgba(26,92,53,.1) !important;
}
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; color: var(--text-mid); }

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-color: var(--border) !important; color: var(--text) !important;
  border-radius: var(--r-sm) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--green-primary) !important; color: #fff !important;
  border-color: var(--green-primary) !important;
}

/* ================================================================
   LIVE SEARCH DROPDOWN
   ================================================================ */
.search-results-wrapper {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--s-md);
  max-height: 440px; overflow-y: auto;
  position: absolute; z-index: 100000;
  width: 100%; left: 0; top: 100%; margin-top: 6px;
}
.search-result-item {
  display: flex; padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-decoration: none !important; color: var(--text) !important;
  transition: background var(--t);
}
.search-result-item:hover { background: var(--green-light); }
.search-result-item:last-child { border-bottom: none; }
.result-thumbnail { width: 48px; height: 48px; margin-right: 12px; flex-shrink: 0; border-radius: var(--r-xs); overflow: hidden; background: var(--bg); }
.result-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.result-content { flex-grow: 1; }
.result-title { font-size: 14px; margin: 0 0 3px !important; font-weight: 600; color: var(--text); line-height: 1.3; }
.result-ingredient, .result-generic { font-size: 11.5px; margin: 0 0 2px !important; color: var(--text-muted); }
.result-price { color: var(--green-primary); font-weight: 700; font-size: 13px; margin-top: 4px; }
.search-see-all { padding: 10px 12px; background: #fff; border-top: 1px solid var(--border); text-align: center; position: sticky; bottom: 0; }
.see-all-link {
  background: var(--green-primary); color: #fff !important;
  padding: 8px 20px; border-radius: var(--r-full);
  display: inline-block; font-size: 13px; font-weight: 600;
}
.see-all-link:hover { background: var(--green-dark); }
.no-results-found { padding: 18px; text-align: center; color: var(--text-muted); }
.no-results-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ================================================================
   SHOP ARCHIVE (CATEGORY PAGE)
   ================================================================ */
.shop-layout-wrapper {
  display: flex; flex-wrap: wrap; gap: 36px;
  max-width: 1300px; margin: 0 auto; padding: 48px 20px;
}
.shop-sidebar { flex: 0 0 270px; width: 270px; }
.woocommerce-products-area { flex: 1; min-width: 0; }
.shop-sidebar .widget {
  border: 1px solid var(--border); padding: 22px;
  background: var(--white); margin-bottom: 24px; border-radius: var(--r-md);
}
.shop-sidebar .widget-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--green-border); }
.woocommerce .woocommerce-ordering select { border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 8px 12px; font-size: 13px; }
.woocommerce-result-count { font-size: 13px; color: var(--text-muted); }

/* Category info tabs */
.cat-info-container { display: block; width: 100%; margin-top: 44px; clear: both; }
.cat-tabs { display: flex; background: var(--green-primary); border-radius: var(--r-sm) var(--r-sm) 0 0; }
.cat-tab-link {
  flex: 1; background: var(--green-mid); border: none; cursor: pointer;
  padding: 14px 20px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.85);
  text-align: center; transition: background var(--t);
}
.cat-tab-link.active { background: #fff !important; color: var(--green-primary) !important; border-radius: var(--r-sm) var(--r-sm) 0 0; margin-bottom: -2px; padding-bottom: 16px; z-index: 10; position: relative; }
.cat-content-box { border: 2px solid var(--green-primary); border-top: none; border-radius: 0 0 var(--r-sm) var(--r-sm); background: #fff !important; padding: 26px; }
.cat-tab-content { display: none; }
.cat-tab-content.active { display: block; }
.cat-tab-content p, .cat-tab-content li { color: var(--text-muted); font-size: 13.5px; }

/* ================================================================
   SINGLE POST / BLOG
   ================================================================ */
.single-post-page { padding: 40px 0 60px; }
.single-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.main-content-area { min-width: 0; }
.blog-post-full { background: var(--white); border-radius: var(--r-md); padding: 32px; border: 1px solid var(--border); }
.entry-header { margin-bottom: 24px; }
.entry-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; line-height: 1.25; margin-bottom: 12px; }
.entry-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.entry-meta i { color: var(--green-primary); margin-right: 5px; }
.post-thumbnail-wrapper { margin: 0 0 24px; border-radius: var(--r-md); overflow: hidden; }
.post-thumbnail-wrapper img { width: 100%; height: auto; object-fit: cover; }
.entry-content { font-size: 15px; line-height: 1.8; color: var(--text-mid); }
.entry-content h2, .entry-content h3 { margin: 24px 0 12px; color: var(--text); }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; }
.entry-content a { color: var(--green-primary); text-decoration: underline; }

/* Sidebar */
#secondary.widget-area { min-width: 0; }
#secondary .widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; margin-bottom: 22px; }
#secondary .widget-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--green-border); color: var(--text); }
#secondary .widget ul li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
#secondary .widget ul li:last-child { border-bottom: none; }
#secondary .widget a { color: var(--text-mid); }
#secondary .widget a:hover { color: var(--green-primary); }

/* ================================================================
   CHECKOUT SPECIFIC
   ================================================================ */
.checkout-tabs-nav { display: flex; list-style: none; gap: 4px; margin-bottom: 24px; padding: 0; border-bottom: 2px solid var(--border); }
.checkout-tabs-nav li { padding: 9px 20px; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--text-muted); border-radius: var(--r-sm) var(--r-sm) 0 0; transition: background var(--t), color var(--t); margin-bottom: -2px; }
.checkout-tabs-nav li.active { background: var(--green-light); color: var(--green-primary); border-bottom: 2px solid var(--green-primary); }
.tab-content { display: none; }
#tab-contact { display: block; }

/* ================================================================
   PAGE GENERAL
   ================================================================ */
.woocommerce-cart .container,
.woocommerce-checkout .container,
.woocommerce-account .container { padding-top: 36px !important; padding-bottom: 52px !important; }

/* ================================================================
   SCROLL-TO-TOP
   ================================================================ */
.scroll-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 9990;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; box-shadow: var(--s-sm);
  transition: background var(--t), transform var(--t);
}
.scroll-to-top:hover { background: var(--green-dark); color: #fff; transform: translateY(-3px); }

/* ================================================================
   PERFORMANCE: STICKY HEADER ANIMATION
   ================================================================ */
.sticky-header { position: fixed; top: 0; left: 0; width: 100%; animation: slideDown .3s var(--ease); }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ================================================================
   REVIEWS PAGE
   ================================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; }
.review-card .reviewer-name { font-weight: 700; font-size: 14px; }
.review-card .stars { color: #F5C518; font-size: 13px; margin: 4px 0 10px; }
.review-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ================================================================
   RESPONSIVE — TABLET (1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 28px; }
  .category-photo-grid { grid-template-columns: repeat(3,1fr); }
  .single-post-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .info-layout-section .container { grid-template-columns: 1fr; gap: 32px; }
  .recent-posts-grid { grid-template-columns: repeat(2,1fr); }
  .shop-sidebar { flex: 0 0 240px; width: 240px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (768px)
   ================================================================ */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 18px; }

  /* Trust badges — keep single row on mobile */
  .trust-badges-section .trust-badges-grid {
    overflow: hidden;
    animation: badge-slider 12s infinite !important;
  }
  @keyframes badge-slider {
    0%,  30% { transform: translateX(0); }
    33%, 63% { transform: translateX(-100%); }
    66%, 96% { transform: translateX(-200%); }
    100%     { transform: translateX(0); }
  }

  .category-photo-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .category-photo-item { height: 130px; }

  .recent-posts-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }

  ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  li.product img { height: 130px !important; }

  .product-variation-table thead { display: none; }
  .product-variation-table, .product-variation-table tbody,
  .product-variation-table tr, .product-variation-table td { display: block; width: 100%; }
  .product-variation-table tr { margin-bottom: 12px; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 10px; }
  .product-variation-table td { text-align: right; padding-left: 50% !important; position: relative; border-bottom: 1px dashed var(--border); padding-bottom: 10px; margin-bottom: 8px; }
  .product-variation-table td:last-child { border-bottom: none; margin-bottom: 0; }
  .product-variation-table td::before { content: attr(data-label); position: absolute; left: 10px; width: calc(50% - 16px); text-align: left; font-weight: 600; color: var(--text-mid); font-size: 12px; }

  .woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 10px 12px !important; font-size: 12.5px !important; }

  #newsletter-form { flex-direction: column; border-radius: var(--r-md); }
  #newsletter-form input[type="email"] { border-radius: 0; padding: 13px 18px; }
  #newsletter-form button { border-radius: 0 0 var(--r-md) var(--r-md) !important; }

  .footer-content { grid-template-columns: 1fr; gap: 20px; padding: 36px 0 24px; }
  .footer-signup-bar .container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-inputs { flex-direction: column; width: 100%; }
  .input-group { min-width: auto; width: 100%; }

  .shop-layout-wrapper { flex-direction: column; }
  .shop-sidebar { width: 100%; }

  .amazon-review-wrapper { flex-direction: column; gap: 20px; }

  .trust-badges-section.second-trust-row .trust-badges-grid { flex-wrap: wrap !important; }
  .trust-badges-section.second-trust-row .trust-badge { flex: 0 0 50%; border-bottom: 1px solid var(--border); padding: 8px 0; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (480px)
   ================================================================ */
@media (max-width: 480px) {
  ul.products { grid-template-columns: 1fr !important; }
  .category-photo-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce div.product { padding: 18px; }
}

/* ================================================================
   ACCESSIBILITY & FOCUS
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ================================================================
   PAGE SPEED HINTS
   ================================================================ */
img { content-visibility: auto; }
.product-section, .testimonial-slider-section, .recent-posts-section { contain: layout style; }

/* ================================================================
   MOBILE CRITICAL FIXES v4.1 — Based on live screenshots
   ================================================================ */

/* ── FIX 1: MOBILE HEADER — search bar + cart icon not cut off ── */
.mobile-stack-layout { overflow: hidden; }

.mobile-row-1 { padding: 12px 14px; }
.mobile-row-1 .mobile-logo { flex: 1; overflow: hidden; }
.mobile-logo img { max-height: 38px; width: auto; max-width: 220px; }
.mobile-logo .site-name-text { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Search — make sure button never gets clipped */
.mobile-row-2 { padding: 8px 12px; }
.mobile-search-form { width: 100%; }
.mobile-search-form input[type="text"],
.mobile-search-form input[type="search"] {
  width: 100% !important;
  padding-right: 52px !important;
  box-sizing: border-box !important;
}

/* Row-3 icons — equal width, nothing cut off */
.mobile-row-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  padding: 6px 0 !important;
}
.mobile-icon-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 4px !important;
  font-size: 11px !important;
  min-width: 0 !important;
  text-align: center;
}
/* Cart icon specifically — style as a pill, not a circle overflowing */
.mobile-row-3 .cart-contents {
  background: var(--green-light) !important;
  border: 1.5px solid var(--green-border) !important;
  border-radius: var(--r-full) !important;
  padding: 5px 12px !important;
  flex-direction: row !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--green-primary) !important;
  white-space: nowrap;
  width: auto !important;
  justify-content: center !important;
  display: inline-flex !important;
}
.mobile-row-3 .cart-contents .count { position: static !important; background: var(--amber) !important; border-radius: var(--r-full) !important; padding: 1px 5px !important; font-size: 10px !important; font-weight: 700; }
.mobile-row-3 .cart-contents .cart-count-and-total { display: none; }

/* ── FIX 2: TRUST BADGES — stop text wrapping on mobile ── */
@media (max-width: 991px) {
  .trust-badges-section .trust-badges-grid {
    overflow: hidden !important;
    /* Slide one badge at a time */
    animation: badge-slide-v2 9s infinite !important;
  }
  .trust-badges-section .trust-badge-item {
    min-width: 100% !important;
    flex-shrink: 0 !important;
    padding: 13px 20px !important;
    justify-content: center !important;
  }
  .trust-badges-section .badge-text strong { font-size: 13px !important; }
  .trust-badges-section .badge-text span   { font-size: 12px !important; }

  @keyframes badge-slide-v2 {
    0%,  30% { transform: translateX(0%); }
    33%, 63% { transform: translateX(-100%); }
    66%, 96% { transform: translateX(-200%); }
    99%, 100% { transform: translateX(0%); }
  }
}

/* ── FIX 3: FEATURED PRODUCTS — Slick blank area on mobile ── */
/* When Slick fails or renders incorrectly on mobile, fall back to clean grid */
.product-slider {
  min-height: 0 !important;
}
/* Slick list and track — ensure no phantom height */
.product-slider .slick-list { overflow: hidden !important; }
.product-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
.product-slider .slick-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.product-slider .slick-slide > div { flex: 1; display: flex; flex-direction: column; }
.product-slider li.product { height: 100% !important; }

/* On mobile — disable slick and use grid if slick isn't initialised */
.product-slider:not(.slick-initialized) ul.products,
.product-slider:not(.slick-initialized) {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}
.product-slider:not(.slick-initialized) li.product {
  width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 480px) {
  .product-slider:not(.slick-initialized) {
    grid-template-columns: 1fr !important;
  }
}

/* ── FIX 4: TESTIMONIALS section title contrast ── */
.testimonial-slider-section .section-title {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.testimonial-container .section-title { color: #fff !important; }

/* Testimonial card text — ensure full content shows */
.testimonial-content p {
  color: rgba(255,255,255,.88) !important;
  font-size: 13.5px !important;
}
.testimonial-title {
  color: #fff !important;
  display: block;
  margin-bottom: 8px !important;
}

/* ── FIX 5: NEWSLETTER — stop overflow on mobile ── */
.newsletter-section {
  overflow: hidden !important;
  padding: 48px 0 !important;
}
.newsletter-section .container {
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.newsletter-section h3 {
  font-size: clamp(18px, 5vw, 26px) !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}
#newsletter-form-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
#newsletter-form {
  width: 100% !important;
  max-width: 460px !important;
  box-sizing: border-box !important;
}
@media (max-width: 600px) {
  #newsletter-form {
    flex-direction: column !important;
    border-radius: var(--r-md) !important;
    overflow: hidden !important;
    max-width: calc(100% - 0px) !important;
  }
  #newsletter-form input[type="email"] {
    width: 100% !important;
    border-radius: 0 !important;
    padding: 14px 18px !important;
  }
  #newsletter-form button,
  #newsletter-submit-btn {
    width: 100% !important;
    border-radius: 0 !important;
    padding: 13px !important;
  }
}

/* ── FIX 6: SECOND TRUST ROW (Free Shipping etc) — 2x2 grid on mobile ── */
@media (max-width: 600px) {
  .trust-badges-section.second-trust-row .trust-badges-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    padding: 0 !important;
    animation: none !important;
  }
  .trust-badges-section.second-trust-row .trust-badge {
    padding: 12px 8px !important;
    font-size: 12px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    flex: none !important;
  }
  .trust-badges-section.second-trust-row .trust-badge:nth-child(odd) {
    border-right: 1px solid var(--border) !important;
  }
  .trust-badges-section.second-trust-row .trust-badge:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
}

/* ── FIX 7: GENERAL OVERFLOW PREVENTION ── */
* { max-width: 100%; box-sizing: border-box; }
img { max-width: 100% !important; height: auto !important; }
.container { overflow-x: hidden; }

/* ── FIX 8: PRODUCT CARDS on mobile — better touch targets ── */
@media (max-width: 768px) {
  .loop-add-to-cart-button,
  .add-btn-v13 {
    min-height: 42px !important;
    font-size: 13px !important;
  }
  .loop-variation-select { min-height: 40px !important; }
  li.product { padding: 12px !important; }
  li.product img { height: 140px !important; }
  .woocommerce-loop-product__title { font-size: 13px !important; }
}

/* ── FIX 9: SEARCH LIVE RESULTS on mobile ── */
@media (max-width: 768px) {
  #mobile-search-results-clone {
    width: 100% !important;
    left: 0 !important;
    position: absolute !important;
    top: 100% !important;
    z-index: 99999 !important;
  }
}

/* ── FIX 10: FOOTER overflow on small screens ── */
.site-footer { overflow: hidden; }
.footer-content { overflow: hidden; }
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    padding: 28px 0 18px !important;
    gap: 16px !important;
  }
  .footer-section h4 { margin-bottom: 10px !important; }
  .footer-links li { margin-bottom: 7px !important; }
}

/* ── PRODUCT SLIDER: mobile grid mode ── */
.product-slider.mobile-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
  list-style: none !important;
  padding: 0 !important; margin: 0 !important;
}
.product-slider.mobile-grid li.product {
  width: 100% !important; margin: 0 !important;
}
@media (max-width: 400px) {
  .product-slider.mobile-grid { grid-template-columns: 1fr !important; }
}

/* Ensure slick arrows visible on desktop */
.slick-prev, .slick-next {
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
}
.slick-prev:before, .slick-next:before { color: var(--green-primary) !important; font-size: 16px !important; }
.slick-dots li button:before { color: var(--green-primary) !important; }
.slick-dots li.slick-active button:before { color: var(--green-primary) !important; opacity: 1 !important; }

/* ================================================================
   MOBILE MENU FIXES v4.2 — Full screen overlay + proper width
   ================================================================ */

/* Off-canvas menu — full height, proper width */
.off-canvas-menu {
  position: fixed !important;
  top: 0 !important;
  left: -100% !important;        /* start fully off screen */
  width: 82% !important;         /* 82% of screen width */
  max-width: 320px !important;
  height: 100% !important;
  height: 100dvh !important;     /* dynamic viewport height for iOS */
  background: #fff !important;
  z-index: 99999 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  transition: left 0.28s cubic-bezier(.4,0,.2,1) !important;
  box-shadow: 4px 0 28px rgba(0,0,0,.22) !important;
}
body.mobile-menu-open .off-canvas-menu {
  left: 0 !important;
}

/* Overlay — MUST cover 100% of screen, including right side */
.off-canvas-overlay {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  width: 100vw !important;
  height: 100% !important;
  height: 100dvh !important;
  background: rgba(0,0,0,.58) !important;
  z-index: 9998 !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}
body.mobile-menu-open .off-canvas-overlay {
  display: block !important;
}
/* Prevent body scrolling when menu is open */
body.mobile-menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* Menu header */
.off-canvas-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 20px !important;
  background: var(--green-primary) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 10 !important;
}
.menu-title { color: #fff !important; font-size: 17px !important; font-weight: 700 !important; }
.close-menu-btn {
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  color: #fff !important;
  width: 34px !important; height: 34px !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 16px !important;
}

/* Nav items */
.mobile-nav-menu {
  padding: 8px 0 80px !important; /* bottom padding so last item not hidden */
  margin: 0 !important;
}
.mobile-nav-menu li { border-bottom: 1px solid #f0f0f0 !important; position: relative !important; }
.mobile-nav-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--text) !important;
  transition: background 0.15s, color 0.15s !important;
  text-decoration: none !important;
}
.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item > a {
  background: var(--green-light) !important;
  color: var(--green-primary) !important;
}

/* Arrow button for sub-menus */
.menu-arrow-btn {
  position: absolute !important;
  top: 0 !important; right: 0 !important;
  height: 100% !important; width: 52px !important;
  background: none !important; border: none !important;
  border-left: 1px solid #f0f0f0 !important;
  color: var(--text-muted) !important;
  font-size: 12px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: background 0.15s !important;
  cursor: pointer !important;
}
.menu-arrow-btn:hover { background: var(--green-light) !important; color: var(--green-primary) !important; }

/* Sub-menu */
.mobile-nav-menu .sub-menu {
  display: none !important;
  background: #f8faf8 !important;
  border-top: 1px solid #eee !important;
  padding: 4px 0 !important;
}
.mobile-nav-menu li.sub-menu-open > .sub-menu { display: block !important; }
.mobile-nav-menu .sub-menu a {
  padding: 11px 20px 11px 40px !important;
  font-size: 13.5px !important;
  color: var(--text-mid) !important;
}
.mobile-nav-menu .sub-menu a:hover { background: var(--green-light) !important; color: var(--green-primary) !important; }

/* ── SINGLE PRODUCT TABLE — mobile friendly ── */
.variation-row td { vertical-align: middle !important; }
.var-cart-msg { display: block; font-size: 11px; font-weight: 600; margin-top: 4px; }
.cart-icon-button.ajax-variation-btn {
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important; padding: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 15px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.cart-icon-button.ajax-variation-btn:hover { transform: scale(1.08) !important; }
.out-of-stock-label { font-size: 12px; color: var(--danger); font-weight: 600; }
.out-of-stock-row { opacity: .65; }

/* Variation table mobile responsive */
@media (max-width: 650px) {
  .product-variation-table thead { display: none !important; }
  .product-variation-table,
  .product-variation-table tbody,
  .product-variation-table tr,
  .product-variation-table td { display: block !important; width: 100% !important; }
  .product-variation-table tr {
    margin-bottom: 14px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-md) !important;
    padding: 12px !important;
    background: var(--white) !important;
  }
  .product-variation-table td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 7px 0 !important;
    border-bottom: 1px dashed var(--border) !important;
    font-size: 13px !important;
  }
  .product-variation-table td:last-child { border-bottom: none !important; justify-content: flex-end !important; }
  .product-variation-table td::before {
    content: attr(data-label) !important;
    font-weight: 700 !important;
    color: var(--text-mid) !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    margin-right: 8px !important;
  }
  .product-variation-table td:last-child::before { content: none !important; }
  .product-variation-table-wrapper { border: none !important; border-radius: 0 !important; overflow: visible !important; }
}

/* Body lock when menu open — uses top offset instead of overflow:hidden alone for iOS */
body.mobile-menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  left: 0 !important;
}
