/* ============================================
   GARDELIO - Premium Garden Marketplace
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --white: #FFFFFF;
  --forest-green: #2E7D32;
  --forest-green-dark: #1B5E20;
  --forest-green-light: #4CAF50;
  --olive: #6B8E23;
  --olive-light: #8AAD34;
  --slate: #334155;
  --slate-light: #64748B;
  --slate-dark: #1E293B;
  --sand-beige: #EAD7B7;
  --sand-beige-light: #F5ECD8;
  --light-gray: #F8FAFC;
  --border-color: #E2E8F0;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

.serif-heading { font-family: var(--font-serif); }

p { color: var(--text-secondary); line-height: 1.75; }

/* ============ LAYOUT ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-fluid { max-width: 100%; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.grid { display: grid; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--forest-green);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: var(--sand-beige); font-weight: 600; }

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

.header-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--forest-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; color: white; }

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest-green);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--olive); }

.header-search {
  flex: 1;
  max-width: 560px;
  position: relative;
}

.header-search input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border-color);
  border-radius: 100px;
  padding: 0 52px 0 20px;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--light-gray);
  transition: var(--transition);
  outline: none;
}

.header-search input:focus {
  border-color: var(--forest-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.header-search input::placeholder { color: var(--text-muted); }

.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--forest-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.search-btn:hover { background: var(--forest-green-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.header-action-btn:hover { background: var(--light-gray); color: var(--forest-green); }

.header-action-btn svg { width: 22px; height: 22px; }

.badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--forest-green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ NAVIGATION ============ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--forest-green); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--forest-green);
  border-radius: 2px;
}

.nav-link svg { width: 14px; height: 14px; transition: var(--transition); }

.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--forest-green);
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--text-primary);
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--light-gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  color: var(--text-muted);
}

.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--forest-green); }
.breadcrumb-list li:last-child { color: var(--text-primary); font-weight: 500; }

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,41,59,0.82) 0%, rgba(30,41,59,0.45) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-beige);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-serif);
  line-height: 1.15;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest-green);
  color: white;
  border-color: var(--forest-green);
}
.btn-primary:hover {
  background: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.35);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

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

.btn-outline-slate {
  background: transparent;
  color: var(--slate);
  border-color: var(--border-color);
}
.btn-outline-slate:hover {
  background: var(--light-gray);
  border-color: var(--slate);
}

.btn-sand {
  background: var(--sand-beige);
  color: var(--slate-dark);
  border-color: var(--sand-beige);
}
.btn-sand:hover {
  background: #dcc9a4;
  border-color: #dcc9a4;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }

.btn svg { width: 17px; height: 17px; }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-color);
  background: var(--white);
  color: var(--text-secondary);
  transition: var(--transition);
}
.btn-icon:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
  background: rgba(46,125,50,0.05);
}
.btn-icon.active {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: white;
}

/* ============ SECTION HEADERS ============ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-title-group { max-width: 580px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--forest-green);
  border-radius: 2px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ============ CATEGORY CARDS ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  background: var(--slate-dark);
  transition: var(--transition);
}

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

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.8;
}

.category-card:hover img { transform: scale(1.05); opacity: 0.7; }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,41,59,0.85) 0%, rgba(30,41,59,0.15) 55%, transparent 100%);
}

.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: white;
}

.category-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: white; }
.category-card-body p { font-size: 12px; color: rgba(255,255,255,0.72); margin-bottom: 12px; }

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sand-beige);
  letter-spacing: 0.02em;
}

.category-link svg { width: 14px; height: 14px; transition: var(--transition); }
.category-card:hover .category-link svg { transform: translateX(4px); }

/* ============ PRODUCT CARDS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: rgba(46,125,50,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--light-gray);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card-body { padding: 16px 18px 18px; }

.product-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a:hover { color: var(--forest-green); }

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars { display: flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; fill: #F59E0B; color: #F59E0B; }
.stars svg.empty { fill: var(--border-color); color: var(--border-color); }

.rating-count { font-size: 12px; color: var(--text-muted); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-green);
}

.price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 11px;
  font-weight: 700;
  background: #FEF2F2;
  color: #DC2626;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============ FILTERS PANEL ============ */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-panel {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.filter-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border-color); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  cursor: pointer;
}

.filter-heading h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-heading svg { width: 16px; height: 16px; color: var(--text-muted); transition: var(--transition); }
.filter-heading.open svg { transform: rotate(180deg); }

.filter-options { display: flex; flex-direction: column; gap: 8px; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.filter-option:hover { color: var(--forest-green); }

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--forest-green);
  flex-shrink: 0;
}

.filter-option .count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--light-gray);
  padding: 1px 7px;
  border-radius: 100px;
}

.price-range-inputs { display: flex; gap: 10px; align-items: center; }
.price-range-inputs input {
  flex: 1;
  height: 38px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 10px;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.price-range-inputs input:focus { border-color: var(--forest-green); }
.price-range-inputs span { color: var(--text-muted); font-size: 13px; }

/* ============ SORT BAR ============ */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.sort-bar-left { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.sort-bar-left strong { color: var(--text-primary); }

.sort-select {
  height: 38px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--forest-green); }

/* ============ PRODUCT DETAIL ============ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery { position: sticky; top: 90px; }

.product-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-gray);
  margin-bottom: 12px;
}

.product-main-image img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbnails { display: flex; gap: 10px; }

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--forest-green); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }

.product-info-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.product-detail-price .price-current { font-size: 2rem; }
.product-detail-price .price-old { font-size: 1.1rem; }

.product-options { margin-bottom: 24px; }
.option-label { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-color);
  border-radius: 100px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}

.qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--light-gray); color: var(--forest-green); }

.qty-input {
  width: 52px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
}

.add-to-cart-row { display: flex; gap: 12px; margin-bottom: 20px; }
.add-to-cart-row .btn-primary { flex: 1; height: 52px; font-size: 15px; }

/* ============ PRODUCT SPECS TABLE ============ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.specs-table tr { border-bottom: 1px solid var(--border-color); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 12px 0;
  font-size: 14px;
  vertical-align: top;
}

.specs-table td:first-child {
  width: 45%;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 16px;
}

.specs-table td:last-child { color: var(--text-secondary); }

/* ============ COMPARISON TABLE ============ */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare-table th, .compare-table td {
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  font-size: 14px;
  vertical-align: top;
  text-align: left;
}

.compare-table thead th {
  background: var(--forest-green);
  color: white;
  font-weight: 600;
  font-size: 13px;
}

.compare-table thead th:first-child { background: var(--slate-dark); }

.compare-table tbody tr:nth-child(even) td { background: var(--light-gray); }
.compare-table tbody tr:hover td { background: rgba(46,125,50,0.04); }
.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }

.compare-check { color: var(--forest-green); font-size: 16px; }
.compare-cross { color: #DC2626; }
.compare-best { background: #F0FDF4 !important; font-weight: 600; color: var(--forest-green); }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--light-gray); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body { padding: 20px; }
.blog-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--forest-green); margin-bottom: 8px; }
.blog-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card-title a:hover { color: var(--forest-green); }
.blog-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-muted); }
.blog-meta svg { width: 13px; height: 13px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--slate-dark); padding: 80px 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 15px; height: 15px; fill: #F59E0B; color: #F59E0B; }

.testimonial-text { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-location { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--forest-green);
  padding: 32px 0;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.stat-item {
  text-align: center;
  color: white;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.stat-label { font-size: 13px; color: rgba(255,255,255,0.78); }

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  padding: 60px 0;
}

.newsletter-content { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter-content h2 { color: white; margin-bottom: 10px; }
.newsletter-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }

.newsletter-form input {
  flex: 1;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0 20px;
  font-size: 14px;
  color: white;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }

/* ============ CART ============ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

.cart-items { display: flex; flex-direction: column; gap: 0; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-gray);
  flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-sku { font-size: 12px; color: var(--text-muted); }

.cart-summary-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total { font-weight: 700; font-size: 1rem; }
.cart-summary-row.total .price-current { font-size: 1.25rem; }

/* ============ CHECKOUT FORM ============ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }

.form-section {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.form-section h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border-color); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.full { grid-template-columns: 1fr; }

.form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }

.form-control {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-control:focus { border-color: var(--forest-green); box-shadow: 0 0 0 3px rgba(46,125,50,0.08); }
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { height: auto; padding: 12px 14px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ============ CONTACT ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(46,125,50,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-body p { font-size: 14px; color: var(--text-muted); margin: 0; }
.contact-info-body a:hover { color: var(--forest-green); }

.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--light-gray);
  margin-top: 24px;
}

.contact-form-wrap {
  background: var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 36px;
}

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; }
.about-image img { width: 100%; height: auto; display: block; }

.about-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.about-list-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-secondary); }
.about-list-item svg { color: var(--forest-green); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ============ POLICY PAGES ============ */
.policy-page { max-width: 800px; margin: 0 auto; padding: 60px 24px; }

.policy-page h1 { font-size: 2rem; margin-bottom: 8px; }
.policy-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border-color); }

.policy-page h2 { font-size: 1.25rem; margin: 36px 0 14px; color: var(--text-primary); }
.policy-page h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text-primary); }
.policy-page p { margin-bottom: 16px; font-size: 14.5px; line-height: 1.8; }
.policy-page ul, .policy-page ol { margin: 12px 0 16px 20px; list-style: disc; }
.policy-page ol { list-style: decimal; }
.policy-page li { font-size: 14.5px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 6px; }
.policy-page table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.policy-page table th, .policy-page table td { border: 1px solid var(--border-color); padding: 12px 14px; text-align: left; }
.policy-page table th { background: var(--light-gray); font-weight: 700; }
.policy-page table tr:nth-child(even) td { background: var(--sand-beige-light); }

.policy-toc {
  background: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
}

.policy-toc h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.policy-toc ol { margin: 0; padding-left: 18px; list-style: decimal; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { font-size: 13.5px; color: var(--forest-green); }
.policy-toc a:hover { text-decoration: underline; }

/* ============ SITEMAP ============ */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-group h3 { font-size: 14px; font-weight: 700; color: var(--forest-green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--forest-green); }
.sitemap-group ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-group a { font-size: 13.5px; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.sitemap-group a:hover { color: var(--forest-green); }

/* ============ FOOTER ============ */
.site-footer { background: var(--slate-dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }

.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.footer-brand .logo-text { color: white; font-size: 1.4rem; }
.footer-brand .logo-text span { color: var(--sand-beige); }

.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-top: 12px; margin-bottom: 20px; line-height: 1.6; }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--forest-green); background: var(--forest-green); color: white; }
.footer-social a svg { width: 15px; height: 15px; }

.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 18px; }

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--sand-beige); }

.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--forest-green-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============ CARDS & MISC ============ */
.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(46,125,50,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--forest-green);
}
.info-card-icon svg { width: 26px; height: 26px; }
.info-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 0; }

/* ============ ALERTS & MESSAGES ============ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-warning { background: #FFFBEB; border: 1px solid #FEF08A; color: #92400E; }
.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

.success-message {
  display: none;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #166534;
  text-align: center;
  margin-top: 16px;
}
.success-message.visible { display: block; }
.success-message svg { width: 32px; height: 32px; margin: 0 auto 10px; color: #16A34A; display: block; }
.success-message strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.success-message p { color: #15803D; font-size: 13.5px; margin: 0; }

/* ============ TABS ============ */
.tabs { border-bottom: 1px solid var(--border-color); margin-bottom: 28px; }
.tab-list { display: flex; gap: 0; overflow-x: auto; }
.tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--forest-green); border-bottom-color: var(--forest-green); font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--text-primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============ PAGINATION ============ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.page-btn:hover { border-color: var(--forest-green); color: var(--forest-green); }
.page-btn.active { background: var(--forest-green); border-color: var(--forest-green); color: white; }
.page-btn svg { width: 16px; height: 16px; }

/* ============ SEARCH PAGE ============ */
.search-hero { background: var(--slate-dark); padding: 48px 0; color: white; }
.search-hero h1 { color: white; }
.search-form { display: flex; gap: 12px; max-width: 640px; margin-top: 20px; }
.search-input {
  flex: 1;
  height: 52px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0 24px;
  font-size: 15px;
  color: white;
  outline: none;
  transition: var(--transition);
}
.search-input:focus { border-color: var(--forest-green); background: rgba(255,255,255,0.15); }
.search-input::placeholder { color: rgba(255,255,255,0.5); }

/* ============ ACCOUNT ============ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.account-sidebar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 90px;
}
.account-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
  margin-bottom: 2px;
}
.account-nav-link:hover, .account-nav-link.active { background: var(--light-gray); color: var(--forest-green); }
.account-nav-link svg { width: 17px; height: 17px; }

/* ============ TAGS ============ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.tag-green { background: rgba(46,125,50,0.1); color: var(--forest-green); }
.tag-sand { background: var(--sand-beige-light); color: var(--olive); }
.tag-slate { background: var(--light-gray); color: var(--slate); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  background: var(--slate-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 14px; }
.cookie-banner p a { color: var(--sand-beige); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--forest-green-dark); transform: translateY(-3px); }

/* ============ UTILITY CLASSES ============ */
.text-center { text-align: center; }
.text-green { color: var(--forest-green); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.bg-light { background: var(--light-gray); }
.bg-sand { background: var(--sand-beige-light); }
.bg-green { background: var(--forest-green); }
.mt-0 { margin-top: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }

.divider { height: 1px; background: var(--border-color); margin: 32px 0; }

.rounded-full { border-radius: 100px; }

.highlight-box {
  background: var(--sand-beige-light);
  border: 1px solid var(--sand-beige);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

/* ============ EMPTY STATE ============ */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-state svg { width: 64px; height: 64px; color: var(--text-muted); margin: 0 auto 16px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

/* ============ GUIDE PAGE ============ */
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content h2 { margin: 40px 0 16px; }
.guide-content h3 { margin: 28px 0 12px; }
.guide-content p { margin-bottom: 18px; font-size: 15px; line-height: 1.8; }
.guide-content ul, .guide-content ol { margin: 12px 0 18px 22px; }
.guide-content ul { list-style: disc; }
.guide-content ol { list-style: decimal; }
.guide-content li { font-size: 15px; line-height: 1.75; margin-bottom: 8px; color: var(--text-secondary); }

.guide-tip {
  background: rgba(46,125,50,0.07);
  border-left: 4px solid var(--forest-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.guide-tip strong { color: var(--forest-green); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 6px; }
.guide-tip p { font-size: 14px; margin: 0; color: var(--text-secondary); }

.guide-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0;
}
.guide-image img { width: 100%; height: 360px; object-fit: cover; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-card { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .nav-list { display: none; }
  .mobile-menu-btn { display: block; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 420px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .cart-item { grid-template-columns: 80px 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: var(--white);
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-links { display: flex; flex-direction: column; gap: 0; }
.mobile-menu-links a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============ FEATURED BAND ============ */
.featured-band {
  background: var(--sand-beige-light);
  border-top: 1px solid var(--sand-beige);
  border-bottom: 1px solid var(--sand-beige);
  padding: 20px 0;
}

.featured-band-inner { display: flex; align-items: center; gap: 40px; overflow-x: auto; }
.featured-band-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; flex-shrink: 0; }
.featured-band-item svg { width: 20px; height: 20px; color: var(--forest-green); }
.featured-band-item span { font-size: 13px; font-weight: 600; color: var(--slate); }

/* ============ REVIEW SECTION ============ */
.review-card {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-top: 8px; }

/* ============ ABOUT PAGE ============ */
.about-hero { padding: 80px 0; background: var(--white); }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-hero-text h1 { font-size: 2.4rem; margin-bottom: 1.25rem; }
.about-hero-text .lead-text { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.value-card h3 { font-size: 1.05rem; margin: 1rem 0 0.5rem; }
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.value-icon { width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-block {}
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--forest-green); line-height: 1; }
.stat-label { display: block; font-size: 14px; color: var(--text-secondary); margin-top: 6px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card h4 { font-size: 1rem; margin: 1rem 0 0.25rem; }
.team-role { font-size: 12px; color: var(--forest-green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.team-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-top: 0.75rem; }
.mission-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.mission-block h2 { margin-bottom: 1rem; }

/* ============ CONTACT PAGE ============ */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.contact-form-block h2 { margin-bottom: 0.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border-color); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; color: var(--text-primary); background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest-green);
}
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.form-check label { font-size: 13px; color: var(--text-secondary); }
.form-success-msg { text-align: center; padding: 3rem 2rem; }
.form-success-msg h3 { font-size: 1.4rem; color: var(--forest-green); margin: 1rem 0 0.5rem; }
.form-success-msg p { color: var(--text-secondary); }
.contact-info-card { background: var(--light-gray); border-radius: var(--radius-md); padding: 24px; }
.contact-info-card h3 { margin-bottom: 1.25rem; font-size: 1.05rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-icon { flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-info-list p, .contact-info-list span { font-size: 13px; color: var(--text-secondary); margin: 0; }
.contact-info-list a { color: var(--forest-green); }

/* ============ FAQ PAGE ============ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 18px 20px;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text-primary);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question.open { color: var(--forest-green); }
.faq-arrow { font-size: 22px; color: var(--text-muted); transition: transform 0.2s; line-height: 1; }
.faq-question.open .faq-arrow { transform: rotate(90deg); color: var(--forest-green); }
.faq-answer { display: none; padding: 0 20px 18px; background: var(--light-gray); }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ============ BLOG ARTICLE ============ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 2rem; }
.article-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.article-cat { background: var(--forest-green); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.article-meta time, .article-meta span { font-size: 13px; color: var(--text-muted); }
.article-header h1 { font-size: 2rem; line-height: 1.3; margin-bottom: 1rem; }
.article-lead { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }
.article-body h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--text-primary); }
.article-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.4rem; }
.article-tip-box { background: #e8f5e9; border-left: 4px solid var(--forest-green); padding: 16px 18px; border-radius: 0 8px 8px 0; margin: 1.5rem 0; font-size: 14px; color: var(--text-primary); }
.article-product-list { list-style: none; padding: 0; }
.article-product-list li { padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.article-product-list a { color: var(--forest-green); font-weight: 500; font-size: 14px; }
.article-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); display: flex; gap: 2rem; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.article-tags, .article-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; }
.article-tags a, .article-share a { background: var(--light-gray); padding: 4px 12px; border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-color); }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--light-gray); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; }
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-post-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-post-list a { font-size: 13px; color: var(--text-secondary); line-height: 1.5; padding: 4px 0; border-bottom: 1px solid var(--border-color); display: block; }
.sidebar-post-list a:last-child { border-bottom: none; }
.sidebar-cta { background: var(--forest-green); }
.sidebar-cta h3, .sidebar-cta p { color: rgba(255,255,255,0.9); }
.sidebar-cta p { font-size: 13px; margin-bottom: 1rem; }

/* ============ POLICY PAGES ============ */
.policy-container { max-width: 780px; }
.policy-container h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.policy-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 2rem; }
.policy-container h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: var(--text-primary); padding-bottom: 0.4rem; border-bottom: 2px solid var(--border-color); }
.policy-container h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; }
.policy-container p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.policy-container ul, .policy-container ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-container li { font-size: 14.5px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0.4rem; }
.policy-container a { color: var(--forest-green); }
.policy-container table { width: 100%; }

/* ============ SITEMAP ============ */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sitemap-col h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-primary); padding-bottom: 0.5rem; border-bottom: 2px solid var(--forest-green); }
.sitemap-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sitemap-links a { font-size: 14px; color: var(--text-secondary); padding: 4px 0; border-bottom: 1px dashed var(--border-color); display: block; }
.sitemap-links a:hover { color: var(--forest-green); }

/* ============ ABOUT / MISSION ============ */
@media (max-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-block { grid-template-columns: 1fr; gap: 32px; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .article-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* auto-fix: structural classes */
.footer-col { }
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;opacity:.65;}
.footer-col ul{padding:0;list-style:none} .footer-col li{margin-bottom:7px}
.footer-brand { }
.footer-brand .logo-text,.footer-brand .site-logo__name{color:#fff}
.cerez-banner,.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1a2e;color:#fff;padding:16px 24px;z-index:9999;display:none}
