/*
Theme Name: GB Organic
Theme URI: http://gborganic.pk/
Author: GB Organic
Author URI: http://gborganic.pk/
Description: Premium organic products from Gilgit Baltistan - Shilajit, Dry Fruits, Oils, Teas & Herbs
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gb-organic
Tags: e-commerce, organic, woocommerce, responsive
*/

/* =====================================================
   GB ORGANIC – DESIGN TOKENS
   Palette: Deep forest greens + warm gold + cream
   Typography: Playfair Display (display) + Inter (body)
   Signature: Diagonal texture banner with mountain silhouette
===================================================== */

:root {
  --forest:     #1a3a2a;
  --forest-mid: #2d5a3d;
  --moss:       #4a7c59;
  --sage:       #8ab89a;
  --cream:      #f5f0e8;
  --warm-white: #fdfaf4;
  --gold:       #c8902a;
  --gold-light: #e8b84b;
  --bark:       #6b4c2a;
  --text-dark:  #1c1c1c;
  --text-mid:   #4a4a4a;
  --text-light: #888;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-pill: 50px;

  --shadow-card: 0 4px 24px rgba(26,58,42,0.10);
  --shadow-btn:  0 4px 16px rgba(200,144,42,0.30);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--forest);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,144,42,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--forest);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left span, .top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar svg { width: 14px; height: 14px; fill: var(--gold-light); flex-shrink: 0; }

/* =====================================================
   HEADER
===================================================== */
.site-header {
  background: var(--warm-white);
  box-shadow: 0 2px 16px rgba(26,58,42,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.logo-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* NAV */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--forest);
  background: rgba(74,124,89,0.1);
}
.main-nav .menu-shop > a {
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 20px;
}
.main-nav .menu-shop > a:hover { background: var(--gold-light); }

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}
.header-icon-btn:hover { background: var(--cream); color: var(--forest); }
.header-icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* MOBILE HAMBURGER */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--forest);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Mountain silhouette – the signature decorative element */
.hero-mountain {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
}
.hero-mountain svg { width: 100%; height: auto; display: block; }

/* Texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,90,61,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(200,144,42,0.12) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0;
}

.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,144,42,0.2);
  border: 1px solid rgba(200,144,42,0.4);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; }

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-product-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 340px;
  width: 100%;
}
.hero-product-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.hero-product-img-placeholder {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 50% 50%, rgba(200,144,42,0.3), rgba(74,124,89,0.2));
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-img-placeholder svg {
  width: 80px; height: 80px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1;
  opacity: 0.7;
}
.hero-product-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
.hero-product-origin {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}
.hero-floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
}

/* =====================================================
   MARQUEE STRIP
===================================================== */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   CATEGORIES SECTION
===================================================== */
.categories-section {
  padding: 80px 0;
  background: var(--warm-white);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.category-card:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.category-card:hover .cat-name { color: #fff; }
.category-card:hover .cat-desc { color: rgba(255,255,255,0.7); }
.category-card:hover .cat-icon-wrap { background: rgba(255,255,255,0.15); }

/* Image-based category cards (front-page.php) */
.cat-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 auto 20px;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.category-card:hover .cat-img-wrap img {
  transform: scale(1.07);
}
.cat-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(26,58,42,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.cat-icon-wrap svg {
  width: 32px; height: 32px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}
.category-card:hover .cat-icon-wrap svg { stroke: var(--gold-light); }
.cat-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
  transition: var(--transition);
}
.cat-desc {
  font-size: 12px;
  color: var(--text-light);
  transition: var(--transition);
}

/* =====================================================
   FEATURED PRODUCTS
===================================================== */
.products-section {
  padding: 80px 0;
  background: var(--cream);
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26,58,42,0.06);
  border: 1px solid rgba(26,58,42,0.06);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream), rgba(74,124,89,0.1));
}
.product-image-placeholder svg {
  width: 60px; height: 60px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-badge.badge-sale { background: var(--gold); }
.product-badge.badge-new  { background: var(--moss); }

.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--forest); color: #fff; }
.product-action-btn svg { width: 16px; height: 16px; }

.product-info { padding: 20px; }
.product-origin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-light); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
}
.product-price .old-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 4px;
  font-family: var(--font-body);
}
.add-to-cart-btn {
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--gold); }
.add-to-cart-btn svg { width: 14px; height: 14px; }

/* =====================================================
   WHY GB ORGANIC (USP SECTION)
===================================================== */
.usp-section {
  padding: 88px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.usp-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200,144,42,0.08);
  pointer-events: none;
}
.usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.usp-text .section-label { color: var(--gold-light); }
.usp-text .section-title { color: #fff; }
.usp-text .section-desc { color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.usp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.usp-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.usp-feature-icon {
  width: 44px; height: 44px;
  background: rgba(200,144,42,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(200,144,42,0.25);
}
.usp-feature-icon svg { width: 20px; height: 20px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.usp-feature-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.usp-feature-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

.usp-visual {
  position: relative;
}
.usp-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.usp-vis-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.usp-vis-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}
.usp-vis-card.tall { grid-row: span 2; }
.usp-vis-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.usp-vis-label { font-size: 14px; color: rgba(255,255,255,0.6); }

/* =====================================================
   SHILAJIT SPOTLIGHT
===================================================== */
.spotlight-section {
  padding: 88px 0;
  background: var(--warm-white);
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotlight-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
}
.spotlight-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.spotlight-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(160deg, var(--cream), rgba(26,58,42,0.05));
}
.spotlight-image-placeholder svg {
  width: 80px; height: 80px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 0.8;
}
.spotlight-origin-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--forest);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
}
.spotlight-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.benefit-icon { font-size: 20px; }
.benefit-text { font-size: 14px; color: var(--text-mid); }
.benefit-text strong { color: var(--forest); display: block; margin-bottom: 2px; }

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-section {
  padding: 88px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(26,58,42,0.06);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.test-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.test-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.test-text::before { content: '\201C'; font-family: var(--font-display); font-size: 40px; color: var(--sage); line-height: 0; vertical-align: -14px; margin-right: 4px; }
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}
.test-author-name { font-weight: 600; font-size: 14px; color: var(--forest); }
.test-author-loc { font-size: 12px; color: var(--text-light); }

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--bark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-label { color: var(--gold-light); margin-bottom: 16px; }
.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: #0f2318;
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--forest-mid);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-newsletter h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; border-radius: var(--radius-sm); overflow: hidden; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: #fff;
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn {
  background: var(--gold);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.5; }
.social-btn:hover svg { stroke: #fff; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =====================================================
   MOBILE MENU OVERLAY
===================================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1998;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--warm-white);
  z-index: 1999;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay.open { display: block; }
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--forest); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px; font-family: var(--font-body);
}
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.mobile-menu nav a:hover { background: var(--cream); color: var(--forest); }

/* =====================================================
   UTILITIES & WP CLASSES
===================================================== */
.aligncenter { text-align: center; }
.wp-block-image.aligncenter { margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999em; }
.skip-link { position: absolute; left: -9999em; }
.skip-link:focus { left: 6px; top: 6px; z-index: 9999; background: var(--gold); color: #fff; padding: 8px 16px; border-radius: var(--radius-sm); }

/* WooCommerce basic resets */
.woocommerce-message, .woocommerce-info { background: var(--cream); border-left: 4px solid var(--forest); padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.woocommerce ul.products li.product .price { color: var(--forest); font-family: var(--font-display); font-weight: 700; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .usp-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .usp-features { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .usp-visual-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
}
