/*
Theme Name: ShopGhana360
Theme URI: https://shopghana360.com
Author: ShopGhana360
Description: Premium dark-gold WooCommerce theme for ShopGhana360
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: shopghana360
*/

:root {
  --gold: #d4a847;
  --gold-light: #e8c06a;
  --gold-dim: rgba(212,168,71,0.15);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-5: #2e2e2e;
  --text: #f0ede6;
  --text-muted: #888888;
  --text-dim: #555555;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }

/* =============================================
   NAVBAR
============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 64px; display: flex; align-items: center;
  padding: 0 16px; gap: 12px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center;
  text-decoration: none; color: var(--text);
}
.nav-logo span { color: var(--gold); }

.nav-logo--image { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo--image a { display: flex; align-items: center; line-height: 1; }
.nav-logo--image img { height: 36px; width: auto; max-width: 160px; object-fit: contain; display: block; }

.nav-search { flex: 1; max-width: 400px; position: relative; }
.nav-search input, .nav-search form input {
  width: 100%; background: var(--dark-3); border: 1px solid var(--dark-5);
  border-radius: 40px; padding: 9px 16px 9px 40px;
  color: var(--text); font-family: var(--font-body); font-size: 13px;
  transition: border-color var(--transition);
}
.nav-search input:focus, .nav-search form input:focus { outline: none; border-color: var(--gold); }
.nav-search input::placeholder, .nav-search form input::placeholder { color: var(--text-dim); }
.nav-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-dim); pointer-events: none; }

.primary-navigation { flex: 1; display: flex; justify-content: center; }
.primary-navigation ul { display: flex; gap: 24px; align-items: center; }
.primary-navigation ul li a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); white-space: nowrap; }
.primary-navigation ul li a:hover,
.primary-navigation ul li.current-menu-item a { color: var(--text); }

.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; margin-left: auto; }

.btn-cart {
  background: var(--gold); color: var(--dark); border-radius: var(--radius-sm);
  padding: 9px 18px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  transition: background var(--transition), transform var(--transition); white-space: nowrap;
}
.btn-cart:hover { background: var(--gold-light); transform: translateY(-1px); }
.cart-count {
  background: var(--dark); color: var(--gold); border-radius: 50%;
  width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: var(--transition); }

/* =============================================
   MOBILE SEARCH BAR
============================================= */
.mobile-search {
  display: none;
  background: var(--dark-2);
  padding: 10px 16px;
  border-bottom: 1px solid var(--dark-4);
  position: sticky; top: 64px; z-index: 99;
}
.mobile-search form { position: relative; }
.mobile-search form input[type="search"] {
  width: 100%; background: var(--dark-3);
  border: 1px solid var(--dark-5); border-radius: 40px;
  padding: 10px 16px 10px 42px;
  color: var(--text); font-family: var(--font-body); font-size: 14px;
}
.mobile-search form input[type="search"]:focus { outline: none; border-color: var(--gold); }
.mobile-search form input[type="search"]::placeholder { color: var(--text-dim); }
.mobile-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-dim); pointer-events: none; }

/* =============================================
   MOBILE NAV
============================================= */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark-2); z-index: 999;
  padding: 24px; flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px; border-radius: var(--radius-md);
  font-size: 15px; color: var(--text-muted); border: 1px solid var(--dark-4);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--text); background: var(--dark-3); }

/* =============================================
   MAIN CONTENT
============================================= */
.site-main { padding-top: 64px; }

/* =============================================
   HERO
============================================= */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 24px 60px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,168,71,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,71,0.05) 0%, transparent 50%), var(--dark);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid rgba(212,168,71,0.25);
  border-radius: 40px; padding: 6px 14px; font-size: 12px; color: var(--gold);
  margin-bottom: 24px; animation: fadeUp 0.6s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(38px,7vw,72px); font-weight: 900;
  line-height: 1.05; margin-bottom: 20px; animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .outline { -webkit-text-stroke: 1px var(--text-muted); color: transparent; }
.hero-sub { font-size: 16px; color: var(--text-muted); max-width: 460px; line-height: 1.7; margin-bottom: 36px; animation: fadeUp 0.6s 0.2s ease both; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.btn-primary {
  background: var(--gold); color: var(--dark); padding: 15px 32px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,71,0.25); }
.btn-secondary {
  background: transparent; color: var(--text); padding: 15px 32px;
  border-radius: var(--radius-sm); border: 1px solid var(--dark-5);
  font-size: 14px; font-weight: 500; transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 48px; animation: fadeUp 0.6s 0.4s ease both; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.trust-icon { width: 28px; height: 28px; background: var(--gold-dim); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stats { position: absolute; right: 40px; bottom: 60px; display: flex; gap: 16px; animation: fadeUp 0.6s 0.5s ease both; }
.stat-card { background: var(--dark-3); border: 1px solid var(--dark-5); border-radius: var(--radius-md); padding: 16px 20px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

/* =============================================
   CATEGORY BAR
============================================= */
.category-bar {
  background: var(--dark-2); border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4); padding: 0 24px;
  overflow-x: auto; scrollbar-width: none; display: flex; gap: 4px;
}
.category-bar::-webkit-scrollbar { display: none; }
.cat-btn {
  padding: 14px 20px; background: none; color: var(--text-muted);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.cat-btn:hover { color: var(--text); }
.cat-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* =============================================
   SECTIONS
============================================= */
.section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.section-title { font-family: var(--font-display); font-size: clamp(24px,4vw,36px); font-weight: 700; line-height: 1.2; }
.section-title span { color: var(--gold); }
.section-sub { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.see-all { font-size: 13px; color: var(--gold); display: flex; align-items: center; gap: 4px; transition: gap var(--transition); white-space: nowrap; }
.see-all:hover { gap: 8px; }

/* =============================================
   WOOCOMMERCE PRODUCT GRID
============================================= */
.woocommerce ul.products,
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr)) !important;
  gap: 16px !important; margin: 0 !important; padding: 0 !important;
}
.woocommerce ul.products li.product,
.product-card {
  background: var(--dark-2) !important; border: 1px solid var(--dark-4) !important;
  border-radius: var(--radius-lg) !important; overflow: hidden !important;
  transition: all var(--transition) !important; position: relative !important;
  margin: 0 !important; float: none !important; width: auto !important;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  border-color: rgba(212,168,71,0.3) !important; transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4) !important;
}
.woocommerce ul.products li.product a img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 0.4s ease; background: var(--dark-3);
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important; font-weight: 600 !important; color: var(--text) !important;
  padding: 14px 14px 4px !important; line-height: 1.3 !important;
}
.woocommerce ul.products li.product .price {
  color: var(--gold) !important; font-size: 17px !important; font-weight: 700 !important;
  padding: 0 14px 10px !important; display: block !important;
}
.woocommerce ul.products li.product .price del { color: var(--text-dim) !important; font-size: 13px !important; font-weight: 400 !important; opacity: 1 !important; }
.woocommerce span.onsale {
  background: var(--gold) !important; color: var(--dark) !important;
  font-size: 10px !important; font-weight: 700 !important;
  padding: 3px 8px !important; border-radius: 4px !important;
  min-height: unset !important; min-width: unset !important;
  top: 12px !important; left: 12px !important; right: auto !important;
}
.woocommerce ul.products li.product .button,
.woocommerce .button {
  width: calc(100% - 28px) !important; margin: 0 14px 14px !important;
  background: var(--dark-4) !important; color: var(--text) !important;
  padding: 10px !important; border-radius: var(--radius-sm) !important;
  font-size: 13px !important; font-weight: 500 !important;
  border: 1px solid var(--dark-5) !important; transition: all var(--transition) !important;
  text-align: center !important; display: block !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce .button:hover { background: var(--gold) !important; color: var(--dark) !important; border-color: var(--gold) !important; }

/* =============================================
   WOOCOMMERCE SINGLE PRODUCT
============================================= */
.woocommerce div.product { padding: 30px 24px; max-width: 1200px; margin: 0 auto; }
.woocommerce div.product .product_title { font-family: var(--font-display) !important; font-size: clamp(24px,4vw,40px) !important; color: var(--text) !important; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--gold) !important; font-size: 28px !important; font-weight: 700 !important; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--text-muted) !important; font-size: 14px !important; line-height: 1.7 !important; }
.woocommerce div.product form.cart .button { background: var(--gold) !important; color: var(--dark) !important; padding: 14px 32px !important; font-size: 15px !important; font-weight: 700 !important; border-radius: var(--radius-sm) !important; border: none !important; }
.woocommerce div.product form.cart .button:hover { background: var(--gold-light) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--dark-4) !important; background: none !important; padding: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: none !important; border: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--text-muted) !important; font-size: 14px !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--gold) !important; }
.woocommerce div.product .woocommerce-tabs .panel { background: var(--dark-2) !important; border: 1px solid var(--dark-4) !important; border-radius: var(--radius-md) !important; padding: 24px !important; color: var(--text-muted) !important; }

/* =============================================
   CART & CHECKOUT
============================================= */
.woocommerce-cart .woocommerce, .woocommerce-checkout .woocommerce { padding: 30px 24px; max-width: 1200px; margin: 0 auto; }
.woocommerce table.shop_table { background: var(--dark-2) !important; border: 1px solid var(--dark-4) !important; border-radius: var(--radius-md) !important; color: var(--text) !important; }
.woocommerce table.shop_table th { background: var(--dark-3) !important; color: var(--text-muted) !important; font-size: 12px !important; text-transform: uppercase !important; letter-spacing: 0.8px !important; border: none !important; }
.woocommerce table.shop_table td { border-color: var(--dark-4) !important; }
.woocommerce form .form-row label { color: var(--text-muted) !important; font-size: 13px !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { background: var(--dark-3) !important; border: 1px solid var(--dark-5) !important; color: var(--text) !important; border-radius: var(--radius-sm) !important; padding: 10px 14px !important; font-family: var(--font-body) !important; }
.woocommerce form .form-row input.input-text:focus { border-color: var(--gold) !important; outline: none !important; }

/* =============================================
   PROMO BANNER
============================================= */
.promo-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, #1a1208 100%);
  border: 1px solid rgba(212,168,71,0.2); border-radius: var(--radius-xl);
  padding: 40px; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.promo-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(212,168,71,0.12), transparent 70%); border-radius: 50%; pointer-events: none; }
.promo-label { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.promo-title { font-family: var(--font-display); font-size: clamp(22px,4vw,32px); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.promo-sub { font-size: 14px; color: var(--text-muted); }
.promo-icon { font-size: 56px; }

/* =============================================
   WHATSAPP STRIP
============================================= */
.wa-strip { background: #0a2010; border-top: 1px solid #0d3018; border-bottom: 1px solid #0d3018; padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.wa-strip p { font-size: 14px; color: #aaa; }
.wa-strip strong { color: var(--text); }
.btn-wa { background: #25D366; color: white; padding: 10px 22px; border-radius: 40px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); white-space: nowrap; }
.btn-wa:hover { background: #1db954; transform: translateY(-1px); }

/* =============================================
   FEATURES
============================================= */
.features-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; padding: 48px 24px; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--dark-2); border: 1px solid var(--dark-4); border-radius: var(--radius-md); padding: 24px; transition: border-color var(--transition); }
.feature-card:hover { border-color: rgba(212,168,71,0.2); }
.feature-icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feature-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.feature-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   FOOTER
============================================= */
.site-footer { background: var(--dark-2); border-top: 1px solid var(--dark-4); padding: 48px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand .logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-dim); padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--dark-4); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.payment-badges { display: flex; gap: 8px; }
.pay-badge { background: var(--dark-4); border: 1px solid var(--dark-5); border-radius: 4px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--text-muted); }
.logo--image { display: flex; align-items: center; margin-bottom: 12px; }
.logo--image a { display: flex; align-items: center; }
.logo--image img { height: 40px; width: auto; max-width: 180px; object-fit: contain; }

/* =============================================
   FLOATING WHATSAPP
============================================= */
.fab-wa { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: all var(--transition); }
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.fab-wa svg { width: 26px; height: 26px; fill: white; }

/* =============================================
   TOAST
============================================= */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark-3); border: 1px solid rgba(212,168,71,0.3); border-radius: 40px; padding: 10px 20px; font-size: 13px; color: var(--text); z-index: 2000; opacity: 0; transition: all 0.3s ease; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============================================
   WOOCOMMERCE NOTICES
============================================= */
.woocommerce-message, .woocommerce-info, .woocommerce-error { background: var(--dark-3) !important; border-top: 3px solid var(--gold) !important; color: var(--text) !important; border-radius: var(--radius-sm) !important; }
.woocommerce-message a.button, .woocommerce-info a.button { background: var(--gold) !important; color: var(--dark) !important; }

/* =============================================
   HIDE PAGE TITLE ON HOMEPAGE & WOO PAGES
============================================= */
.home .page-title,
.home .entry-title,
.home h1.page-title,
.woocommerce-page .woocommerce-products-header__title,
.woocommerce-page h1.page-title,
.page .entry-title { display: none !important; }

/* =============================================
   FIX EMPTY PRODUCT GRID SLOTS
============================================= */
.woocommerce ul.products li.product:empty,
.woocommerce ul.products li.product:not(:has(a)) { display: none !important; }
.woocommerce ul.products li.product { min-height: unset !important; }

/* =============================================
   SINGULAR (pages/posts)
============================================= */
.entry-title { font-family: var(--font-display); font-size: clamp(24px,4vw,40px); margin-bottom: 24px; }
.entry-content { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.entry-content h2, .entry-content h3 { color: var(--text); font-family: var(--font-display); margin: 24px 0 12px; }
.entry-content a { color: var(--gold); }
.entry-content a:hover { text-decoration: underline; }

/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 768px) {
  /* Hide desktop nav & search */
  .primary-navigation { display: none; }
  .nav-search { display: none; }

  /* Mobile navbar: logo left, cart+hamburger right */
  .site-header { padding: 0 14px; gap: 10px; }
  .nav-logo, .nav-logo--image { flex-shrink: 0; }
  .nav-actions { margin-left: auto; gap: 8px; }

  /* Show hamburger */
  .hamburger { display: flex; }
  .btn-cart { padding: 8px 12px; font-size: 12px; gap: 5px; }

  /* Show mobile search bar */
  .mobile-search { display: block; }

  /* Hero */
  .hero { padding: 90px 20px 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 36px; justify-content: center; }

  /* Products — 2 columns, no gaps */
  .woocommerce ul.products,
  .product-grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 12px !important;
  }

  /* Promo */
  .promo-banner { padding: 24px; }
  .promo-icon { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .features-row { grid-template-columns: repeat(2,1fr); }
  .section { padding: 40px 16px; }
}

@media (max-width: 400px) {
  .woocommerce ul.products,
  .product-grid { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; }
  .hero-stats { flex-wrap: wrap; }
}
