@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════ */
:root {
  --white: #FFFFFF;
  --forest: #166534;
  --forest-mid: #15803D;
  --forest-light: #BBF7D0;
  --forest-pale: #F0FDF4;
  --sky: #38BDF8;
  --sky-dark: #0EA5E9;
  --sky-pale: #F0F9FF;
  --slate: #334155;
  --slate-mid: #475569;
  --slate-light: #64748B;
  --sand: #EAD7B7;
  --sand-mid: #D4B896;
  --sand-dark: #B8996D;
  --sand-pale: #FDF6EC;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --text-dark: #0F172A;
  --text-med: #334155;
  --text-light: #64748B;
  --text-xlight: #94A3B8;
  --border: #E2E8F0;
  --border-dark: #CBD5E1;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;
  --sh-xs: 0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.10);
  --sh-lg: 0 8px 32px rgba(0,0,0,.12);
  --sh-xl: 0 16px 48px rgba(0,0,0,.14);
  --tr: .22s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
  --container: 1280px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: .9rem; font-weight: 600; }

p { line-height: 1.7; color: var(--text-med); }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .8rem; }
.text-lg { font-size: 1.1rem; }
.text-xl { font-size: 1.25rem; }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.text-forest { color: var(--forest); }
.text-sky { color: var(--sky-dark); }
.text-center { text-align: center; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.lead { font-size: 1.1rem; color: var(--text-light); line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container-sm { max-width: 860px; }
.container-md { max-width: 1080px; }

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 88px 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font);
  transition: all var(--tr);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: var(--r-sm); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--r-lg); }

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover { background: var(--forest-mid); border-color: var(--forest-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(22,101,52,.35); }

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); }

.btn-sky {
  background: var(--sky-dark);
  color: var(--white);
  border-color: var(--sky-dark);
}
.btn-sky:hover { background: #0284C7; border-color: #0284C7; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(14,165,233,.35); }

.btn-ghost {
  background: transparent;
  color: var(--text-med);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); background: var(--forest-pale); }

.btn-sand {
  background: var(--sand);
  color: var(--slate);
  border-color: var(--sand);
}
.btn-sand:hover { background: var(--sand-mid); border-color: var(--sand-mid); color: var(--slate); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════ */
.topbar {
  background: var(--slate);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.85); transition: color var(--tr); }
.topbar a:hover { color: var(--sky); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--sh-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--forest);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.logo-mark svg { width: 20px; height: 20px; color: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.03em;
}
.logo-name span { color: var(--forest); }
.logo-sub {
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-med);
  border-radius: var(--r-md);
  transition: all var(--tr);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--forest);
  background: var(--forest-pale);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--tr); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  min-width: 580px;
  padding: 20px;
  display: none;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }

.dropdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background var(--tr);
  text-decoration: none;
}
.dropdown-item:hover { background: var(--gray-50); }
.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-icon svg { width: 18px; height: 18px; color: var(--forest); }
.dropdown-text { line-height: 1.3; }
.dropdown-label { font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.dropdown-sub { font-size: .75rem; color: var(--text-light); margin-top: 1px; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; }

.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-med);
  transition: all var(--tr);
  position: relative;
  background: none; border: none;
}
.icon-btn:hover { background: var(--gray-100); color: var(--forest); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--forest); color: var(--white);
  font-size: .65rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-md);
  border: none; background: none; cursor: pointer;
  color: var(--text-dark);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.mobile-nav.open { display: block; }
.mobile-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: var(--white);
  overflow-y: auto;
  box-shadow: var(--sh-xl);
  padding: 0;
}
.mobile-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.mobile-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); border: none; background: var(--gray-100);
  cursor: pointer;
}
.mobile-close svg { width: 18px; height: 18px; }
.mobile-links { padding: 16px; }
.mobile-link {
  display: flex; align-items: center;
  padding: 12px 16px; border-radius: var(--r-md);
  font-weight: 500; color: var(--text-med);
  transition: all var(--tr); margin-bottom: 2px;
  text-decoration: none;
}
.mobile-link:hover { background: var(--forest-pale); color: var(--forest); }
.mobile-link.active { background: var(--forest-pale); color: var(--forest); font-weight: 600; }
.mobile-section-title {
  font-size: .75rem; font-weight: 700; color: var(--text-xlight);
  letter-spacing: .08em; text-transform: uppercase;
  padding: 16px 16px 6px;
}
.mobile-sub-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px 9px 28px;
  font-size: .88rem; color: var(--text-light);
  border-radius: var(--r-sm); margin-bottom: 1px;
  text-decoration: none; transition: all var(--tr);
}
.mobile-sub-link:hover { background: var(--forest-pale); color: var(--forest); }

/* ═══════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════ */
.breadcrumb-wrap {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.breadcrumb a { color: var(--text-light); font-weight: 500; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb-sep { color: var(--text-xlight); }
.breadcrumb-current { color: var(--text-med); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.75) 0%, rgba(22,101,52,.40) 60%, rgba(15,23,42,.30) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Category page hero (smaller, no badge/promo) */
.cat-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.cat-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.80) 0%, rgba(15,23,42,.20) 100%);
}
.cat-hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 32px 0;
  width: 100%;
}
.cat-hero-content h1 { color: var(--white); margin-bottom: 8px; }
.cat-hero-content p { color: rgba(255,255,255,.8); font-size: .95rem; }

/* ═══════════════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════════════ */
.section-head { margin-bottom: 40px; }
.section-head.centered { text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-pale);
  border: 1px solid var(--forest-light);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-light); max-width: 560px; }
.section-head.centered p { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════
   CATEGORY CARDS (homepage)
═══════════════════════════════════════════════════ */
.cat-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--tr);
  box-shadow: var(--sh-xs);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--forest-light); }
.cat-card-img {
  width: 100%; height: 180px;
  object-fit: cover;
}
.cat-card-body { padding: 18px 20px; }
.cat-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--forest-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.cat-card-icon svg { width: 22px; height: 22px; color: var(--forest); }
.cat-card-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.cat-card-desc { font-size: .83rem; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.cat-card-meta { display: flex; align-items: center; justify-content: space-between; }
.cat-card-count { font-size: .78rem; font-weight: 600; color: var(--forest); }
.cat-card-arrow { color: var(--text-xlight); transition: transform var(--tr); }
.cat-card:hover .cat-card-arrow { transform: translateX(4px); color: var(--forest); }

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════ */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--tr);
  box-shadow: var(--sh-xs);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--gray-300); }

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
}
.product-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-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(8px);
  transition: all var(--tr);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 34px; height: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--tr);
  box-shadow: var(--sh-xs);
}
.product-action-btn:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.product-action-btn svg { width: 16px; height: 16px; }
.product-action-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }

.brand-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--slate);
  box-shadow: var(--sh-xs);
}

.compare-check {
  position: absolute; bottom: 12px; left: 12px;
}
.compare-check label {
  display: flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 3px 10px;
  font-size: .72rem; font-weight: 600; color: var(--text-light);
  cursor: pointer; box-shadow: var(--sh-xs); transition: all var(--tr);
  white-space: nowrap;
}
.compare-check input { width: 13px; height: 13px; accent-color: var(--forest); }
.compare-check label:hover { border-color: var(--forest); color: var(--forest); }

.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-display);
  font-size: .98rem; font-weight: 600; color: var(--text-dark);
  margin-bottom: 8px; line-height: 1.35;
}
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--forest); }

.product-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.spec-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 3px 8px;
  font-size: .72rem; font-weight: 500; color: var(--text-light);
}
.spec-chip svg { width: 10px; height: 10px; }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { display: flex; gap: 2px; }
.star { width: 13px; height: 13px; color: #F59E0B; fill: #F59E0B; }
.star.empty { color: var(--gray-300); fill: var(--gray-200); }
.rating-num { font-size: .8rem; color: var(--text-light); }

.product-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  color: var(--forest);
  line-height: 1;
}
.product-price-old { font-size: .8rem; color: var(--text-xlight); text-decoration: line-through; display: block; margin-bottom: 2px; }

.product-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-100);
  display: flex; gap: 8px;
}
.product-card-footer .btn { flex: 1; padding: 8px 12px; font-size: .82rem; }

/* ═══════════════════════════════════════════════════
   FILTER SIDEBAR
═══════════════════════════════════════════════════ */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.filter-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.filter-head h3 { font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.filter-reset {
  font-size: .78rem; font-weight: 600; color: var(--forest);
  cursor: pointer; background: none; border: none; padding: 0;
  transition: color var(--tr);
}
.filter-reset:hover { color: var(--forest-mid); }

.filter-group { border-bottom: 1px solid var(--border); padding: 16px 20px; }
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; cursor: pointer;
}
.filter-group-title svg { width: 14px; height: 14px; color: var(--text-light); transition: transform var(--tr); }
.filter-group-title.collapsed svg { transform: rotate(-90deg); }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
}
.filter-option label {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text-med); cursor: pointer;
}
.filter-option input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--forest); }
.filter-count { font-size: .75rem; color: var(--text-xlight); background: var(--gray-100); border-radius: var(--r-full); padding: 1px 7px; }

.price-range-wrap { padding-top: 4px; }
.price-range-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.price-range-inputs input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .82rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--tr);
}
.price-range-inputs input:focus { border-color: var(--forest); }
input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: var(--forest);
  cursor: pointer;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   PRODUCT GRID
═══════════════════════════════════════════════════ */
.products-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.products-count { font-size: .88rem; color: var(--text-light); }
.products-count strong { color: var(--text-dark); }
.products-sort { display: flex; align-items: center; gap: 8px; }
.products-sort label { font-size: .85rem; color: var(--text-light); white-space: nowrap; }
.products-sort select {
  padding: 7px 12px; border: 1px solid var(--border);
  border-radius: var(--r-sm); font-size: .85rem;
  color: var(--text-dark); background: var(--white); cursor: pointer;
  outline: none; transition: border-color var(--tr);
}
.products-sort select:focus { border-color: var(--forest); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  background: var(--white); cursor: pointer; color: var(--text-light);
  transition: all var(--tr);
}
.view-btn.active, .view-btn:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.view-btn svg { width: 16px; height: 16px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }

.products-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 40px; flex-wrap: wrap;
}
.page-btn {
  min-width: 38px; height: 38px; padding: 0 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  background: var(--white); font-size: .85rem; font-weight: 500;
  color: var(--text-med); cursor: pointer; transition: all var(--tr);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--forest); border-color: var(--forest); color: var(--white);
}

/* ═══════════════════════════════════════════════════
   SPEC COMPARISON TABLE
═══════════════════════════════════════════════════ */
.spec-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: auto;
  margin-top: 40px;
}
.spec-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.spec-table thead tr { background: var(--forest); }
.spec-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: .85rem; font-weight: 600; color: var(--white);
  white-space: nowrap;
}
.spec-table thead th:first-child { width: 180px; }
.spec-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--tr); }
.spec-table tbody tr:last-child { border-bottom: none; }
.spec-table tbody tr:hover { background: var(--gray-50); }
.spec-table tbody tr:nth-child(even) { background: var(--gray-50); }
.spec-table tbody tr:nth-child(even):hover { background: var(--forest-pale); }
.spec-table td {
  padding: 12px 16px;
  font-size: .85rem; color: var(--text-med);
  vertical-align: middle;
}
.spec-table td:first-child {
  font-weight: 600; color: var(--text-dark);
  background: var(--gray-50); border-right: 1px solid var(--border);
}
.spec-check { color: var(--forest); }
.spec-x { color: #EF4444; }

/* ═══════════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════════ */
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--tr);
  text-decoration: none;
  box-shadow: var(--sh-xs);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--forest);
  background: var(--forest-pale); border-radius: var(--r-full);
  padding: 3px 10px; display: inline-block; margin-bottom: 10px;
}
.blog-card-title { font-size: .98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-title:hover { color: var(--forest); }
.blog-card-excerpt { font-size: .85rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.blog-card-date { font-size: .78rem; color: var(--text-xlight); }
.blog-card-read { font-size: .78rem; color: var(--text-xlight); }

/* Featured blog card */
.blog-card-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-md);
}
.blog-card-featured .blog-card-img { height: 100%; max-height: 340px; }
.blog-card-featured .blog-card-body { padding: 32px; justify-content: center; }

/* ═══════════════════════════════════════════════════
   GUIDE / REHBER CARDS
═══════════════════════════════════════════════════ */
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all var(--tr);
  box-shadow: var(--sh-xs);
}
.guide-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--forest-light); }
.guide-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: var(--forest-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.guide-card-icon svg { width: 26px; height: 26px; color: var(--forest); }
.guide-card-cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sky-dark); margin-bottom: 8px; }
.guide-card h3 { font-size: 1rem; margin-bottom: 10px; }
.guide-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.guide-card-link { font-size: .85rem; font-weight: 600; color: var(--forest); display: flex; align-items: center; gap: 6px; }
.guide-card-link svg { width: 14px; height: 14px; transition: transform var(--tr); }
.guide-card:hover .guide-card-link svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   INFO BOXES / ALERT CARDS
═══════════════════════════════════════════════════ */
.info-box {
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid;
}
.info-box.info-green { background: var(--forest-pale); border-color: var(--forest-light); }
.info-box.info-blue { background: var(--sky-pale); border-color: var(--sky); }
.info-box.info-sand { background: var(--sand-pale); border-color: var(--sand); }
.info-box-icon { width: 40px; height: 40px; border-radius: var(--r-md); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.info-green .info-box-icon { background: var(--forest); color: var(--white); }
.info-blue .info-box-icon { background: var(--sky-dark); color: var(--white); }
.info-sand .info-box-icon { background: var(--sand-mid); color: var(--white); }
.info-box-icon svg { width: 20px; height: 20px; }
.info-box-content h4 { margin-bottom: 4px; font-size: .95rem; }
.info-box-content p { font-size: .88rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   COMPARISON TABLE (full page)
═══════════════════════════════════════════════════ */
.compare-page-table { width: 100%; border-collapse: collapse; }
.compare-page-table th, .compare-page-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: .88rem;
  vertical-align: top;
  text-align: left;
}
.compare-page-table thead th {
  background: var(--gray-50); font-weight: 700; color: var(--text-dark);
}
.compare-page-table thead th:first-child { width: 200px; background: var(--forest); color: var(--white); }
.compare-page-table tbody tr:hover td { background: var(--gray-50); }
.compare-page-table .row-label { font-weight: 600; color: var(--text-dark); background: var(--gray-50); }
.compare-page-table td a { color: var(--forest); font-weight: 600; font-size: .82rem; }

/* ═══════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-label span { color: #EF4444; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .9rem; font-family: var(--font);
  color: var(--text-dark); background: var(--white);
  outline: none; transition: border-color var(--tr), box-shadow var(--tr);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(22,101,52,.12);
}
.form-input.error, .form-textarea.error { border-color: #EF4444; }
.form-error { font-size: .78rem; color: #EF4444; margin-top: 4px; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--forest); flex-shrink: 0; margin-top: 2px; }
.form-check label { font-size: .85rem; color: var(--text-med); line-height: 1.5; }
.form-check label a { color: var(--forest); }

.form-success {
  display: none;
  background: var(--forest-pale);
  border: 1px solid var(--forest-light);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 60px; height: 60px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success-icon svg { width: 28px; height: 28px; color: var(--white); }
.form-success h3 { color: var(--forest); margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: .9rem; }

/* ═══════════════════════════════════════════════════
   FEATURES / USP SECTION
═══════════════════════════════════════════════════ */
.feature-item {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--tr);
}
.feature-item:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--forest-light); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: var(--forest-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--forest); }
.feature-item h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-item p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--slate);
  padding: 56px 0;
}
.newsletter-content { max-width: 560px; }
.newsletter-section h2 { color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,.75); margin-top: 12px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.1);
  color: var(--white); font-size: .9rem; font-family: var(--font);
  outline: none; transition: border-color var(--tr);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--sky); }

/* ═══════════════════════════════════════════════════
   STATS / METRICS
═══════════════════════════════════════════════════ */
.stats-section { background: var(--forest-pale); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 800; color: var(--forest); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .88rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   ARTICLE / BLOG DETAIL
═══════════════════════════════════════════════════ */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.article-body { min-width: 0; }
.article-header { margin-bottom: 32px; }
.article-cat-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest); background: var(--forest-pale);
  border-radius: var(--r-full); padding: 4px 12px; margin-bottom: 14px;
}
.article-header h1 { margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-light); }
.article-meta-item svg { width: 14px; height: 14px; }
.article-featured-img {
  width: 100%; border-radius: var(--r-lg);
  margin-bottom: 36px; object-fit: cover;
  aspect-ratio: 16/9;
}
.article-content h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 14px; }
.article-content h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; }
.article-content p { margin-bottom: 16px; line-height: 1.75; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content ul li, .article-content ol li { margin-bottom: 6px; font-size: .95rem; color: var(--text-med); }
.article-content img { border-radius: var(--r-lg); margin: 20px 0; }
.article-content .callout {
  background: var(--forest-pale); border-left: 4px solid var(--forest);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px; margin: 24px 0;
}
.article-content .callout p { margin: 0; font-weight: 500; }

.article-sidebar { min-width: 0; }
.sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; margin-bottom: 24px;
}
.sidebar-widget-title {
  font-size: .88rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-post { display: flex; gap: 12px; margin-bottom: 14px; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-img { width: 60px; height: 60px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.sidebar-post-title { font-size: .85rem; font-weight: 600; color: var(--text-dark); line-height: 1.35; }
.sidebar-post-date { font-size: .75rem; color: var(--text-xlight); margin-top: 4px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-chip {
  font-size: .78rem; font-weight: 500;
  background: var(--gray-100); color: var(--text-med);
  border-radius: var(--r-full); padding: 4px 12px;
  border: 1px solid var(--border); transition: all var(--tr);
  text-decoration: none;
}
.tag-chip:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.about-hero { background: var(--gray-50); padding: 72px 0; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.about-img img { width: 100%; object-fit: cover; }
.value-card {
  padding: 24px; border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--white);
  transition: all var(--tr);
}
.value-card:hover { border-color: var(--forest-light); box-shadow: var(--sh-md); }
.value-card-num {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 800; color: var(--forest-light); opacity: .3;
  line-height: 1; margin-bottom: 12px;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .88rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
  background: var(--forest);
  border-radius: var(--r-xl); padding: 40px;
  color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: 12px; }
.contact-info-card p { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-item-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.contact-item-value { font-size: .95rem; font-weight: 500; color: var(--white); }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px; box-shadow: var(--sh-md);
}

/* ═══════════════════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════════════════ */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.policy-nav {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.policy-nav-title {
  padding: 14px 18px;
  font-size: .82rem; font-weight: 700; color: var(--text-light);
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--gray-50); border-bottom: 1px solid var(--border);
}
.policy-nav a {
  display: block; padding: 10px 18px;
  font-size: .85rem; color: var(--text-med); border-bottom: 1px solid var(--gray-100);
  transition: all var(--tr); text-decoration: none;
}
.policy-nav a:hover { background: var(--forest-pale); color: var(--forest); }
.policy-nav a.active { background: var(--forest-pale); color: var(--forest); font-weight: 600; }
.policy-content h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--forest-pale); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; }
.policy-content p { margin-bottom: 14px; font-size: .92rem; line-height: 1.75; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 14px; }
.policy-content ul li, .policy-content ol li { margin-bottom: 6px; font-size: .92rem; color: var(--text-med); line-height: 1.6; }
.policy-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: .88rem; }
.policy-content table th { background: var(--gray-100); padding: 10px 14px; font-weight: 700; text-align: left; border: 1px solid var(--border); }
.policy-content table td { padding: 10px 14px; border: 1px solid var(--border); }
.policy-content table tr:hover td { background: var(--gray-50); }
.policy-meta-box {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 24px; margin-bottom: 32px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.policy-meta-item { }
.policy-meta-label { font-size: .75rem; font-weight: 700; color: var(--text-xlight); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.policy-meta-value { font-size: .88rem; font-weight: 600; color: var(--text-dark); }

/* ═══════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--slate); color: var(--white);
  z-index: 9999; padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p { font-size: .88rem; color: rgba(255,255,255,.85); margin: 0; }
.cookie-text a { color: var(--sky); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* Compare bar */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 2px solid var(--forest);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  z-index: 999; padding: 14px 0;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.compare-bar.show { transform: translateY(0); }
.compare-bar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.compare-slots { display: flex; gap: 10px; flex: 1; }
.compare-slot {
  flex: 1; max-width: 180px;
  border: 1.5px dashed var(--border);
  border-radius: var(--r-md); padding: 8px 12px;
  font-size: .8rem; color: var(--text-xlight); text-align: center;
  background: var(--gray-50); min-height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.compare-slot.filled { border-color: var(--forest); border-style: solid; color: var(--text-dark); font-weight: 500; background: var(--forest-pale); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer { background: var(--slate); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 24px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: .85rem; color: rgba(255,255,255,.7);
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--sky); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--sky); }

.footer-col h4 {
  font-size: .88rem; font-weight: 700; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.6); text-decoration: none;
  transition: color var(--tr); line-height: 1.4;
}
.footer-links a:hover { color: var(--sky); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: var(--sky); }

/* ═══════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.divider-lg { margin: 48px 0; }

.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700;
}
.badge-green { background: var(--forest-pale); color: var(--forest); border: 1px solid var(--forest-light); }
.badge-blue { background: var(--sky-pale); color: var(--sky-dark); border: 1px solid var(--sky); }
.badge-sand { background: var(--sand-pale); color: var(--sand-dark); border: 1px solid var(--sand); }
.badge-gray { background: var(--gray-100); color: var(--text-light); border: 1px solid var(--border); }

.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.bg-gray { background: var(--gray-50); }
.bg-sand { background: var(--sand-pale); }
.bg-forest-pale { background: var(--forest-pale); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .catalog-layout { grid-template-columns: 220px 1fr; }
  .dropdown { min-width: 480px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions { margin-left: auto; }
  .about-split, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .blog-card-featured { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
}

@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2.sm-two { grid-template-columns: repeat(2,1fr); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0; }
  .policy-meta-box { grid-template-columns: 1fr; }
  .compare-bar-inner { justify-content: center; }
  .products-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════ */
.page-hero-plain {
  background: linear-gradient(135deg, var(--forest) 0%, #1a4a2e 100%);
  color: #fff;
  padding: 64px 0 48px;
}
.page-hero-plain .breadcrumb { margin-bottom: 20px; }
.page-hero-plain .breadcrumb a,
.page-hero-plain .breadcrumb span { color: rgba(255,255,255,.7); font-size: .85rem; }
.page-hero-plain .breadcrumb a:hover { color: #fff; }
.page-hero-plain .breadcrumb span:last-child { color: rgba(255,255,255,.5); }
.page-hero-plain h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero-plain p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

.legal-content { padding: 64px 0 80px; }

.legal-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.legal-toc h3 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 16px;
}
.legal-toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; }
.legal-toc ol li { counter-increment: toc; margin-bottom: 8px; }
.legal-toc ol li a {
  display: block;
  font-size: .85rem;
  color: var(--text-med);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background var(--tr), color var(--tr);
}
.legal-toc ol li a:hover {
  background: var(--forest-pale);
  color: var(--forest);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.legal-body p {
  color: var(--text-med);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-body ul li,
.legal-body ol li {
  color: var(--text-med);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-body a { color: var(--forest); text-decoration: underline; }
.legal-body a:hover { color: var(--forest-mid); }

.legal-info-block {
  background: var(--forest-pale);
  border: 1px solid var(--forest-light);
  border-left: 4px solid var(--forest);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.legal-info-block p { margin: 0; color: var(--text-med); line-height: 1.8; }
.legal-info-block p strong { color: var(--text-dark); }

.legal-contact-block {
  background: var(--sky-pale);
  border: 1px solid #BAE6FD;
  border-left: 4px solid var(--sky-dark);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-top: 24px;
}
.legal-contact-block p { margin: 0; line-height: 1.8; }

.legal-table-wrapper { overflow-x: auto; margin-bottom: 24px; }
.legal-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.legal-table-wrapper thead th {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}
.legal-table-wrapper tbody tr:nth-child(even) { background: var(--gray-50); }
.legal-table-wrapper tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-med);
  vertical-align: top;
  line-height: 1.5;
}
.legal-table-wrapper tbody td strong { color: var(--text-dark); }

/* ═══════════════════════════════════════════════════
   COMPARISON TABLES (full page)
═══════════════════════════════════════════════════ */
.compare-section { padding: 64px 0; }
.compare-section .section-header { text-align: center; margin-bottom: 40px; }
.compare-section .section-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.compare-section .section-header p { color: var(--text-light); max-width: 640px; margin: 0 auto; }

.compare-table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  background: #fff;
}
.compare-table th {
  background: var(--gray-50);
  padding: 0;
  text-align: center;
  vertical-align: top;
  border: 1px solid var(--border);
  min-width: 200px;
}
.compare-table th:first-child { text-align: left; min-width: 180px; padding: 16px; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); }
.compare-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  color: var(--text-med);
  text-align: center;
  vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text-dark); background: var(--gray-50); }
.compare-table tbody tr:hover td { background: var(--forest-pale); }
.compare-table tbody tr:hover td:first-child { background: var(--forest-pale); }

.compare-good { color: var(--forest); font-weight: 600; }
.compare-best { color: var(--forest); font-weight: 700; background: var(--forest-pale) !important; }

.compare-prod-head { padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.compare-prod-head img { width: 100px; height: 80px; object-fit: contain; border-radius: var(--r-sm); }
.compare-prod-name { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--text-dark); text-align: center; line-height: 1.3; }

.compare-verdict {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.verdict-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.verdict-card.verdict-featured {
  background: var(--forest);
  border-color: var(--forest);
}
.verdict-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.verdict-featured .verdict-label { color: rgba(255,255,255,.7); }
.verdict-winner {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.verdict-featured .verdict-winner { color: #fff; }
.verdict-card p { font-size: .85rem; color: var(--text-light); margin: 0; line-height: 1.55; }
.verdict-featured p { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--slate) 0%, #1e293b 100%);
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-inner p { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   COLOR LIGHT GRAY utility
═══════════════════════════════════════════════════ */
.color-light-gray { background: var(--gray-50); }

/* ═══════════════════════════════════════════════════
   BREADCRUMB (global)
═══════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color var(--tr); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: var(--text-xlight); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — legal & compare
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .legal-wrapper { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .compare-verdict { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-hero-plain h1 { font-size: 1.5rem; }
  .compare-section .section-header h2 { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════
   CATEGORY LANDING CARDS (kategoriler.php)
═══════════════════════════════════════════════════ */
.cat-landing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr);
}
.cat-landing-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.cat-landing-img-wrap { height: 200px; overflow: hidden; }
.cat-landing-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-landing-card:hover .cat-landing-img-wrap img { transform: scale(1.04); }

.cat-landing-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.cat-landing-icon {
  width: 44px; height: 44px;
  background: var(--forest-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cat-landing-icon svg { width: 22px; height: 22px; stroke: var(--forest); }
.cat-landing-body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.cat-landing-body p { font-size: .88rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.65; }

.cat-feature-list { list-style: none; padding: 0; margin: 0 0 20px; }
.cat-feature-list li {
  font-size: .83rem;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.cat-feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--forest-light);
}

/* ═══════════════════════════════════════════════════
   PRODUCTS GRID (category pages)
═══════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--gray-50);
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }

.product-fav-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: background var(--tr), transform var(--tr);
  box-shadow: var(--sh-xs);
}
.product-fav-btn:hover { background: var(--white); transform: scale(1.12); }
.product-fav-btn svg { width: 16px; height: 16px; stroke: var(--text-light); }
.product-fav-btn.active svg { stroke: #ef4444; fill: #ef4444; }

.product-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; }
.product-card-desc { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

.product-specs-mini { display: flex; gap: 6px; flex-wrap: wrap; }
.product-specs-mini span {
  font-size: .75rem;
  color: var(--forest);
  background: var(--forest-pale);
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 10px; border-top: 1px solid var(--border); margin-top: auto; }

/* ═══════════════════════════════════════════════════
   CATEGORY TOOLBAR
═══════════════════════════════════════════════════ */
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 20px;
  flex-wrap: wrap;
}
.cat-toolbar p { margin: 0; font-size: .88rem; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — products grid
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .cat-landing-card .cat-landing-img-wrap { height: 160px; }
}

/* ═══════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .cookie-banner, .compare-bar { display: none; }
  .policy-nav { display: none; }
  .policy-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .legal-wrapper { grid-template-columns: 1fr; }
}
