/* =====================================================
   ALLXTRA STORE — Complete Stylesheet v1.0.0
   All classes prefixed ax- to avoid theme conflicts
   ===================================================== */

/* ── VARIABLES ── */
:root {
  --ax-green:        #1a7a4a;
  --ax-green-dark:   #145c38;
  --ax-green-light:  #e8f5ee;
  --ax-orange:       #f5801e;
  --ax-orange-dark:  #d96d10;
  --ax-text:         #1a1a1a;
  --ax-muted:        #6b7280;
  --ax-border:       #e5e7eb;
  --ax-bg:           #f9fafb;
  --ax-white:        #ffffff;
  --ax-radius:       10px;
  --ax-shadow:       0 2px 10px rgba(0,0,0,0.08);
  --ax-max:          1200px;
}

/* ── BASE RESETS (scoped) ── */
.ax-topbar, .ax-header, .ax-nav, .ax-hero, .ax-trust,
.ax-section, .ax-about, .ax-footer, .ax-cart-sidebar,
.ax-mobile-nav, .ax-overlay, .ax-toast {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ax-topbar *, .ax-header *, .ax-nav *, .ax-hero *,
.ax-trust *, .ax-section *, .ax-about *, .ax-footer *,
.ax-cart-sidebar *, .ax-mobile-nav * { box-sizing: border-box; }

/* ── TOP BAR ── */
.ax-topbar {
  background: var(--ax-green);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  line-height: 1.4;
}
.ax-topbar a { color: #a8f0c8; text-decoration: underline; }

/* ── HEADER ── */
.ax-header {
  background: var(--ax-white);
  border-bottom: 1px solid var(--ax-border);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: var(--ax-shadow);
}
.ax-header-inner {
  max-width: var(--ax-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
}
.ax-logo {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ax-green);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.ax-logo span { color: var(--ax-orange); }

/* Search */
.ax-search {
  flex: 1;
  display: flex;
  max-width: 520px;
  border: 2px solid var(--ax-green);
  border-radius: 8px;
  overflow: hidden;
}
.ax-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--ax-white);
  color: var(--ax-text);
}
.ax-search button {
  background: var(--ax-green);
  border: none;
  color: #fff;
  padding: 0 18px;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.ax-search button:hover { background: var(--ax-green-dark); }

/* Header actions */
.ax-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ax-action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: var(--ax-muted);
  gap: 2px;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.ax-action-link:hover { background: var(--ax-green-light); color: var(--ax-green); }
.ax-icon { font-size: 20px; line-height: 1; }
.ax-label { font-size: 11px; }
.ax-cart-link {
  background: var(--ax-green) !important;
  color: #fff !important;
  border-radius: 8px !important;
  position: relative;
  padding: 8px 12px !important;
}
.ax-cart-link:hover { background: var(--ax-green-dark) !important; }
.ax-cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--ax-orange);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ax-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ax-text);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* ── CATEGORY NAV ── */
.ax-nav {
  background: var(--ax-white);
  border-bottom: 1px solid var(--ax-border);
}
.ax-nav-inner {
  max-width: var(--ax-max);
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ax-nav-inner::-webkit-scrollbar { display: none; }
.ax-nav-inner a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ax-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
.ax-nav-inner a:hover,
.ax-nav-inner a.active {
  color: var(--ax-green);
  border-bottom-color: var(--ax-green);
}

/* ── MOBILE NAV OVERLAY ── */
.ax-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ax-white);
  z-index: 600;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.ax-mobile-nav.ax-open { display: flex; }
.ax-mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ax-close-nav {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--ax-text);
  padding: 4px;
}
.ax-mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--ax-border);
  font-size: 15px;
  font-weight: 500;
  color: var(--ax-text);
  text-decoration: none;
}
.ax-mobile-nav a:hover { color: var(--ax-green); }

/* ── HERO ── */
.ax-hero {
  background: linear-gradient(135deg, #0f4d2e 0%, #1a7a4a 55%, #2da15f 100%);
  color: #fff;
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ax-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.ax-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.ax-hero h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}
.ax-hero p {
  font-size: 16px;
  opacity: .88;
  margin: 0 0 26px;
  color: #fff;
}
.ax-hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.ax-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  color: #fff;
}
.ax-hero-search {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}
.ax-hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ax-text);
}
.ax-hero-search button {
  background: var(--ax-orange);
  border: none;
  color: #fff;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Sora', inherit;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.ax-hero-search button:hover { background: var(--ax-orange-dark); }

/* ── TRUST STRIP ── */
.ax-trust {
  background: var(--ax-green-light);
  border-bottom: 1px solid var(--ax-border);
}
.ax-trust-inner {
  max-width: var(--ax-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ax-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-right: 1px solid var(--ax-border);
  font-size: 13px;
  color: var(--ax-text);
}
.ax-trust-item:last-child { border-right: none; }
.ax-trust-item > span { font-size: 24px; flex-shrink: 0; }
.ax-trust-item strong { display: block; font-weight: 600; font-size: 13px; }
.ax-trust-item small { color: var(--ax-muted); font-size: 12px; }

/* ── SECTION WRAPPER ── */
.ax-section {
  max-width: var(--ax-max);
  margin: 0 auto;
  padding: 36px 20px;
}
.ax-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ax-section-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ax-text);
  margin: 0;
}
.ax-view-all {
  font-size: 13px;
  color: var(--ax-green);
  font-weight: 600;
  padding: 6px 14px;
  border: 1.5px solid var(--ax-green);
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.ax-view-all:hover { background: var(--ax-green); color: #fff; }

/* ── PROMO BANNERS ── */
.ax-promos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.ax-promo {
  border-radius: 14px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ax-promo-green { background: linear-gradient(135deg, #0f4d2e, #2da15f); color: #fff; }
.ax-promo-orange { background: linear-gradient(135deg, #b34c00, #f5801e); color: #fff; }
.ax-promo h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.ax-promo p { font-size: 14px; opacity: .88; margin: 0 0 16px; color: #fff; }
.ax-promo-emoji {
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 72px;
  opacity: .2;
  pointer-events: none;
}
.ax-promo-btn {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  width: fit-content;
}
.ax-promo-btn:hover { background: rgba(255,255,255,.35); color: #fff; }

/* ── CATEGORY GRID ── */
.ax-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.ax-cat-card {
  background: var(--ax-green-light);
  border-radius: var(--ax-radius);
  padding: 18px 10px;
  text-align: center;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
  display: block;
}
.ax-cat-card:hover {
  border-color: var(--ax-green);
  background: #d0eddc;
  transform: translateY(-2px);
}
.ax-cat-icon { font-size: 30px; margin-bottom: 8px; line-height: 1.2; }
.ax-cat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ax-green-dark);
  line-height: 1.3;
}

/* ── PRODUCT GRID ── */
.ax-product-section { padding-top: 0 !important; }
.ax-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.ax-product-card {
  background: var(--ax-white);
  border: 1.5px solid var(--ax-border);
  border-radius: var(--ax-radius);
  padding: 12px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.ax-product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.ax-sale-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ax-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}
.ax-product-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ax-bg);
  margin-bottom: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ax-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ax-product-emoji { font-size: 52px; }
.ax-product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ax-text);
  line-height: 1.4;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
  flex: 1;
}
.ax-product-name:hover { color: var(--ax-green); }
.ax-product-price {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ax-green);
  margin-bottom: 10px;
}
/* WooCommerce price html */
.ax-product-price ins { text-decoration: none; }
.ax-product-price del {
  font-size: 12px;
  color: var(--ax-muted);
  font-weight: 400;
  margin-right: 4px;
}
.ax-add-btn {
  width: 100%;
  padding: 9px 8px;
  background: var(--ax-green);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Sora', inherit;
  transition: background .2s;
  margin-top: auto;
}
.ax-add-btn:hover { background: var(--ax-green-dark); }
.ax-add-btn:disabled { background: #aaa; cursor: not-allowed; }
.ax-out-of-stock {
  font-size: 12px;
  color: var(--ax-muted);
  text-align: center;
  padding: 6px 0;
  display: block;
}

/* WooCommerce notice */
.ax-woo-notice {
  background: #fff8e1;
  border: 1.5px solid #ffc107;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ax-text);
}
.ax-woo-notice code {
  background: #f1f1f1;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
}

/* ── ABOUT ── */
.ax-about {
  background: var(--ax-bg);
  border-top: 1px solid var(--ax-border);
  padding: 48px 20px;
}
.ax-about-inner {
  max-width: var(--ax-max);
  margin: 0 auto;
}
.ax-about h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ax-text);
}
.ax-about p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ax-muted);
  max-width: 820px;
  margin: 0;
}

/* ── FOOTER ── */
.ax-footer {
  background: #111;
  color: #ccc;
  padding: 48px 20px 24px;
}
.ax-footer-inner { max-width: var(--ax-max); margin: 0 auto; }
.ax-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.ax-footer-logo {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.ax-footer-logo span { color: var(--ax-orange); }
.ax-footer-brand p { font-size: 13px; line-height: 1.75; color: #999; margin: 0; }
.ax-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.ax-footer-social a {
  width: 36px; height: 36px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.ax-footer-social a:hover { background: var(--ax-green); color: #fff; }
.ax-footer-col h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 14px;
}
.ax-footer-col a {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color .2s;
}
.ax-footer-col a:hover { color: var(--ax-green); }
.ax-footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #666;
}

/* ── CART SIDEBAR ── */
.ax-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 800;
}
.ax-overlay.ax-open { display: block; }
.ax-cart-sidebar {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--ax-white);
  z-index: 801;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
}
.ax-cart-sidebar.ax-open { transform: translateX(0); }
.ax-cart-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--ax-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.ax-cart-head h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--ax-text);
}
.ax-close-cart {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ax-muted);
  padding: 4px;
  line-height: 1;
}
.ax-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.ax-cart-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--ax-muted);
  font-size: 14px;
}
.ax-cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--ax-border);
}
.ax-ci-img {
  width: 58px; height: 58px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--ax-bg);
  flex-shrink: 0;
}
.ax-ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ax-ci-info { flex: 1; }
.ax-ci-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; color: var(--ax-text); }
.ax-ci-price { font-size: 13px; font-weight: 700; color: var(--ax-green); margin-bottom: 3px; }
.ax-ci-qty { font-size: 12px; color: var(--ax-muted); }
.ax-cart-foot {
  padding: 16px 20px;
  border-top: 1px solid var(--ax-border);
  flex-shrink: 0;
}
.ax-cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ax-text);
}
.ax-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--ax-green);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Sora', inherit;
  transition: background .2s;
  text-align: center;
  text-decoration: none;
  margin-bottom: 8px;
}
.ax-checkout-btn:hover { background: var(--ax-green-dark); color: #fff; }
.ax-view-cart-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: transparent;
  color: var(--ax-green);
  border: 1.5px solid var(--ax-green);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.ax-view-cart-btn:hover { background: var(--ax-green-light); }

/* ── TOAST ── */
.ax-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #1a1a1a;
  color: #fff;
  padding: 13px 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.ax-toast.ax-show {
  transform: translateY(0);
  opacity: 1;
}

/* ── WOOCOMMERCE OVERRIDES ── */
/* Make WooCommerce shop page use Allxtra grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce ul.products li.product {
  background: var(--ax-white) !important;
  border: 1.5px solid var(--ax-border) !important;
  border-radius: var(--ax-radius) !important;
  padding: 12px !important;
  margin: 0 !important;
  transition: box-shadow .2s, transform .2s !important;
  float: none !important;
  width: auto !important;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
  transform: translateY(-3px) !important;
}
.woocommerce ul.products li.product img { border-radius: 8px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px !important;
  padding: 6px 0 4px !important;
  color: var(--ax-text) !important;
}
.woocommerce ul.products li.product .price {
  color: var(--ax-green) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  background: var(--ax-green) !important;
  color: #fff !important;
  border-radius: 7px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 9px !important;
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  transition: background .2s !important;
  border: none !important;
  box-shadow: none !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--ax-green-dark) !important; }
.woocommerce .onsale {
  background: var(--ax-orange) !important;
  border-radius: 4px !important;
}
/* Cart, checkout, account buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--ax-green) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--ax-green-dark) !important;
  color: #fff !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ax-header-inner { flex-wrap: wrap; gap: 10px; padding: 10px 16px; }
  .ax-search { order: 3; flex: 0 0 100%; max-width: 100%; }
  .ax-label { display: none; }
  .ax-hamburger { display: block; }
  .ax-nav { display: none; }
  .ax-hero { padding: 44px 16px; }
  .ax-hero h1 { font-size: 26px; }
  .ax-trust-item { flex: 1 1 140px; border-right: none; border-bottom: 1px solid var(--ax-border); }
  .ax-trust-item:last-child { border-bottom: none; }
  .ax-product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .woocommerce ul.products { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important; }
  .ax-footer-grid { gap: 24px; }
}
@media (max-width: 480px) {
  .ax-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ax-footer-grid { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .ax-promo { min-height: 150px; padding: 22px 20px; }
  .ax-promo-emoji { font-size: 50px; right: 14px; }
}
