/* =============================================
   Clarivo — Premium Home Care Technology
   style.css | clarivo.digital
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --white:      #FFFFFF;
  --green:      #166534;
  --green-light:#15803d;
  --green-dark: #14532d;
  --blue:       #38BDF8;
  --blue-dark:  #0ea5e9;
  --slate:      #334155;
  --slate-light:#64748b;
  --sand:       #EAD7B7;
  --sand-light: #F5EDD9;
  --light:      #F8FAFC;
  --border:     #E2E8F0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --font:       'Inter', system-ui, sans-serif;
  --transition: 0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 {
  color: var(--slate);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* --- Container --- */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 860px; }

/* --- Utility --- */
.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;
}
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-blue { color: var(--blue-dark); }
.text-slate-light { color: var(--slate-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.section-gap { padding: 72px 0; }
.section-gap--sm { padding: 48px 0; }
.section-gap--lg { padding: 96px 0; }
.bg-light { background: var(--light); }
.bg-sand { background: var(--sand-light); }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate);
  color: var(--white);
  z-index: 9999;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
#cookie-banner p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.88); }
#cookie-banner a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--green); color: var(--white);
  border: none; padding: 9px 22px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 600;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--green-dark); }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25); padding: 9px 18px;
  border-radius: var(--radius-sm); font-size: 13.5px;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.45rem; font-weight: 800; color: var(--green);
  letter-spacing: -.5px; white-space: nowrap;
}
.logo span { color: var(--blue-dark); }
.logo-icon {
  width: 36px; height: 36px; background: var(--green);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: var(--white); }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--slate);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  background: var(--light); color: var(--green);
}
.nav-arrow {
  width: 14px; height: 14px; opacity: .6;
  transition: transform var(--transition);
}
.main-nav > li:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 999;
}
.main-nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 18px;
  font-size: 13.5px; color: var(--slate);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--light); color: var(--green); padding-left: 24px; }
.dropdown-section-title {
  padding: 6px 18px 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--slate-light);
}

/* Header CTA */
.header-cta {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.btn-compare-nav {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 600;
  border: 1.5px solid var(--green); color: var(--green);
  background: transparent; transition: all var(--transition);
}
.btn-compare-nav:hover { background: var(--green); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--slate); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto;
  padding: 20px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 13px 16px;
  border-radius: var(--radius-sm); font-size: 15px;
  color: var(--slate); border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--light); color: var(--green); }
.mobile-nav .mobile-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--slate-light);
  padding: 14px 16px 6px; display: block;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  background: var(--light); border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--slate-light); flex-wrap: wrap;
}
.breadcrumb a { color: var(--slate-light); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--border); font-size: 12px; }
.breadcrumb li:last-child { color: var(--slate); font-weight: 500; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 26px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 600; border: none;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,101,52,.25); }
.btn-secondary {
  background: var(--white); color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn-blue {
  background: var(--blue-dark); color: var(--white);
}
.btn-blue:hover { background: #0284c7; color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--slate-light);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: var(--light); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-icon svg { width: 17px; height: 17px; }

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--slate);
  min-height: 560px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: .22;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 640px; }
.hero p {
  color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.65;
  max-width: 540px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   CATEGORY HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 52px 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.82); margin: 0; font-size: 15.5px; max-width: 640px; }
.page-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 20px;
}
.page-hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,.78);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--green);
  padding: 28px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 12px 20px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem; font-weight: 800; color: var(--white); display: block;
  line-height: 1;
}
.stat-label { font-size: 12.5px; color: rgba(255,255,255,.75); margin-top: 4px; display: block; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--slate-light); font-size: 15.5px; max-width: 580px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--green);
  background: rgba(22,101,52,.08); padding: 4px 12px;
  border-radius: 99px; margin-bottom: 12px;
}

/* =============================================
   CATEGORY CARDS — HOMEPAGE
   ============================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 28px 22px;
  text-align: center; transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.category-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.category-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--sand-light); display: flex; align-items: center;
  justify-content: center;
}
.category-icon svg { width: 30px; height: 30px; fill: var(--green); }
.category-card h3 { font-size: 14.5px; font-weight: 700; margin: 0; }
.category-card p { font-size: 12.5px; color: var(--slate-light); margin: 0; }
.category-count {
  font-size: 11.5px; font-weight: 600; color: var(--green);
  background: rgba(22,101,52,.08); padding: 3px 10px;
  border-radius: 99px;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--light);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-brand {
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--slate-light);
}
.product-card h3 { font-size: 15.5px; font-weight: 700; margin: 0; }
.product-card h3 a { color: var(--slate); }
.product-card h3 a:hover { color: var(--green); }
.product-specs-mini {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px;
}
.spec-badge {
  font-size: 11.5px; padding: 3px 9px; border-radius: 99px;
  background: var(--light); color: var(--slate-light);
  border: 1px solid var(--border); white-space: nowrap;
}
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 10px;
}
.product-price {
  font-size: 1.25rem; font-weight: 800; color: var(--slate);
}
.product-price span { font-size: 13px; font-weight: 400; color: var(--slate-light); display: block; }
.product-actions { display: flex; gap: 8px; align-items: center; }
.btn-wishlist {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: none;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0;
}
.btn-wishlist:hover { border-color: var(--green); background: var(--light); }
.btn-wishlist svg { width: 17px; height: 17px; stroke: var(--slate-light); fill: none; }
.btn-wishlist.active svg { stroke: red; fill: red; }

/* =============================================
   FILTER SIDEBAR + LAYOUT
   ============================================= */
.catalog-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 32px; align-items: start;
}
.filter-sidebar {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); position: sticky; top: 86px;
}
.filter-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.filter-header h3 { font-size: 14px; font-weight: 700; margin: 0; }
.btn-filter-reset {
  font-size: 12px; color: var(--slate-light); background: none; border: none;
  cursor: pointer; transition: color var(--transition);
}
.btn-filter-reset:hover { color: var(--green); }
.filter-section { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }
.filter-section-title {
  font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--slate-light); margin-bottom: 12px;
}
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--green); flex-shrink: 0; }
.filter-option label { font-size: 13.5px; color: var(--slate); cursor: pointer; }
.filter-option .filter-count {
  margin-left: auto; font-size: 11.5px; color: var(--slate-light);
  background: var(--light); padding: 1px 7px; border-radius: 99px;
}
.price-range-inputs { display: flex; gap: 10px; align-items: center; }
.price-range-inputs input[type="number"] {
  width: 90px; padding: 7px 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px;
  transition: border-color var(--transition);
}
.price-range-inputs input:focus { outline: none; border-color: var(--green); }
.price-range-sep { color: var(--slate-light); font-size: 13px; }
.btn-apply-price {
  width: 100%; margin-top: 10px; background: var(--green);
  color: var(--white); border: none; padding: 9px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  transition: background var(--transition);
}
.btn-apply-price:hover { background: var(--green-dark); }

/* Catalog Toolbar */
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.catalog-toolbar-count { font-size: 13.5px; color: var(--slate-light); }
.catalog-toolbar-count strong { color: var(--slate); }
.sort-select {
  padding: 8px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13.5px; color: var(--slate);
  background: var(--white); cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { outline: none; border-color: var(--green); }
.view-toggle { display: flex; gap: 6px; }
.btn-view {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: none;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.btn-view:hover, .btn-view.active {
  border-color: var(--green); background: rgba(22,101,52,.06);
}
.btn-view svg { width: 15px; height: 15px; fill: var(--slate-light); }
.btn-view.active svg { fill: var(--green); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1.5px solid var(--border); }
.comparison-table {
  width: 100%; border-collapse: collapse; min-width: 700px;
}
.comparison-table th {
  background: var(--green); color: var(--white);
  padding: 14px 18px; font-size: 13.5px; font-weight: 700;
  text-align: left; white-space: nowrap;
}
.comparison-table th:first-child { min-width: 200px; }
.comparison-table td {
  padding: 12px 18px; font-size: 13.5px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--sand-light); }
.comparison-table td:first-child { font-weight: 600; color: var(--slate-light); font-size: 12.5px; }
.compare-yes { color: #16a34a; font-weight: 600; }
.compare-no { color: #dc2626; }
.compare-best {
  background: rgba(22,101,52,.08) !important;
  font-weight: 700; color: var(--green);
}

/* Spec Table (product detail) */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(odd) td { background: var(--light); }
.spec-table tr:nth-child(even) td { background: var(--white); }
.spec-table td {
  padding: 11px 16px; font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.spec-table td:first-child { font-weight: 600; width: 40%; color: var(--slate-light); }
.spec-table tr:last-child td { border-bottom: none; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--slate-light);
}
.blog-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--green);
  background: rgba(22,101,52,.08); padding: 3px 9px; border-radius: 99px;
}
.blog-card h3 { font-size: 16px; font-weight: 700; margin: 0; }
.blog-card h3 a { color: var(--slate); }
.blog-card h3 a:hover { color: var(--green); }
.blog-excerpt { font-size: 13.5px; color: var(--slate-light); line-height: 1.6; margin: 0; }
.blog-read-more {
  margin-top: auto; font-size: 13.5px; font-weight: 600;
  color: var(--green); display: flex; align-items: center; gap: 6px;
}
.blog-read-more svg { width: 15px; height: 15px; transition: transform var(--transition); }
.blog-card:hover .blog-read-more svg { transform: translateX(4px); }

/* Blog Article */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.article-header { margin-bottom: 36px; }
.article-header h1 { margin-bottom: 16px; }
.article-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--slate-light);
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.article-img-main {
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 32px; aspect-ratio: 16/8;
}
.article-img-main img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 { margin: 36px 0 16px; font-size: 1.35rem; }
.article-body h3 { margin: 28px 0 12px; font-size: 1.1rem; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 1em; }
.article-body ul li { list-style: disc; margin-bottom: 6px; }
.article-body ol li { list-style: decimal; margin-bottom: 6px; }

/* Article Sidebar */
.article-sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px; overflow: hidden;
}
.sidebar-widget h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-widget ul li { margin-bottom: 8px; }
.sidebar-widget ul li a { font-size: 13.5px; color: var(--slate-light); display: flex; align-items: flex-start; gap: 8px; }
.sidebar-widget ul li a:hover { color: var(--green); }
.sidebar-widget ul li a::before { content: '→'; flex-shrink: 0; color: var(--green); }

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-hero {
  background: var(--light); padding: 48px 0;
}
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-gallery-main {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1.5px solid var(--border);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-info-header { margin-bottom: 20px; }
.product-info-header h1 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 8px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.stars { color: #f59e0b; letter-spacing: 2px; font-size: 16px; }
.rating-count { font-size: 12.5px; color: var(--slate-light); }
.product-price-main {
  font-size: 2rem; font-weight: 800; color: var(--slate);
  margin-bottom: 4px;
}
.product-price-info { font-size: 12.5px; color: var(--slate-light); margin-bottom: 20px; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.product-highlights {
  background: var(--sand-light); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
}
.highlight-item { display: flex; align-items: flex-start; gap: 12px; }
.highlight-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.highlight-icon svg { width: 16px; height: 16px; fill: var(--green); }
.highlight-text strong { display: block; font-size: 13px; color: var(--slate); }
.highlight-text span { font-size: 12.5px; color: var(--slate-light); }

/* Product Tabs */
.product-tabs { margin-top: 48px; }
.tabs-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.tab-btn {
  padding: 13px 22px; font-size: 14px; font-weight: 600;
  color: var(--slate-light); background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  cursor: pointer; white-space: nowrap; transition: all var(--transition);
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-pane { display: none; padding: 32px 0; }
.tab-pane.active { display: block; }

/* =============================================
   COMPARISON PAGE
   ============================================= */
.comparison-selector {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 32px;
}
.comparison-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.comparison-slot {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center; min-height: 120px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; transition: all var(--transition);
}
.comparison-slot.filled { border-color: var(--green); border-style: solid; }
.comparison-slot p { font-size: 13px; color: var(--slate-light); margin: 0; }

/* =============================================
   INFO CARDS (Features, Benefits)
   ============================================= */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.info-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all var(--transition);
}
.info-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.info-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.info-card-icon.green { background: rgba(22,101,52,.1); }
.info-card-icon.blue { background: rgba(56,189,248,.12); }
.info-card-icon.sand { background: var(--sand-light); }
.info-card-icon svg { width: 24px; height: 24px; }
.info-card-icon.green svg { fill: var(--green); }
.info-card-icon.blue svg { fill: var(--blue-dark); }
.info-card-icon.sand svg { fill: #92400e; }
.info-card h3 { font-size: 15px; font-weight: 700; margin: 0; }
.info-card p { font-size: 13.5px; color: var(--slate-light); margin: 0; }

/* =============================================
   ALERT & INFO BOXES
   ============================================= */
.info-box {
  border-radius: var(--radius); padding: 18px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  margin: 20px 0;
}
.info-box-green { background: rgba(22,101,52,.07); border-left: 4px solid var(--green); }
.info-box-blue { background: rgba(56,189,248,.1); border-left: 4px solid var(--blue-dark); }
.info-box-sand { background: var(--sand-light); border-left: 4px solid #d97706; }
.info-box svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.info-box-green svg { fill: var(--green); }
.info-box-blue svg { fill: var(--blue-dark); }
.info-box-sand svg { fill: #d97706; }
.info-box-content strong { display: block; font-size: 14px; margin-bottom: 4px; }
.info-box-content p { font-size: 13.5px; margin: 0; color: var(--slate-light); }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-form { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--slate); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--slate);
  background: var(--white); transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none; background: rgba(22,101,52,.08);
  border: 1.5px solid var(--green); border-radius: var(--radius);
  padding: 22px; text-align: center; margin-top: 16px;
}
.form-success.visible { display: block; }
.form-success svg { width: 36px; height: 36px; fill: var(--green); margin: 0 auto 10px; display: block; }
.form-success strong { display: block; font-size: 15.5px; color: var(--green); margin-bottom: 6px; }
.form-success p { font-size: 13.5px; color: var(--slate-light); margin: 0; }
.contact-info-block { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(22,101,52,.08); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 21px; height: 21px; fill: var(--green); }
.contact-info-text strong { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 3px; }
.contact-info-text span { font-size: 13.5px; color: var(--slate-light); }

/* =============================================
   HAKKIMIZDA
   ============================================= */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.about-value {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; transition: all var(--transition);
}
.about-value:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.about-value-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--sand-light); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.about-value-icon svg { width: 26px; height: 26px; fill: var(--green); }
.about-value h4 { font-size: 14.5px; margin-bottom: 8px; }
.about-value p { font-size: 13px; color: var(--slate-light); margin: 0; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.policy-nav-sidebar {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 0; position: sticky; top: 86px;
}
.policy-nav-sidebar h4 {
  padding: 0 18px 12px; font-size: 13px; font-weight: 700;
  border-bottom: 1px solid var(--border); margin-bottom: 8px;
  color: var(--slate-light); text-transform: uppercase; letter-spacing: .5px;
}
.policy-nav-sidebar a {
  display: block; padding: 9px 18px;
  font-size: 13px; color: var(--slate-light);
  border-left: 2px solid transparent; transition: all var(--transition);
}
.policy-nav-sidebar a:hover,
.policy-nav-sidebar a.active {
  color: var(--green); border-left-color: var(--green);
  background: rgba(22,101,52,.05);
}
.policy-content {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.policy-content h1 { font-size: 1.7rem; margin-bottom: 8px; }
.policy-content .policy-date {
  font-size: 13px; color: var(--slate-light); margin-bottom: 32px; display: block;
}
.policy-content h2 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--green); }
.policy-content h3 { font-size: 1rem; margin: 22px 0 10px; font-weight: 700; }
.policy-content ul { padding-left: 22px; margin-bottom: 1em; }
.policy-content ul li { list-style: disc; margin-bottom: 6px; font-size: 14px; line-height: 1.65; }
.policy-content ol { padding-left: 22px; margin-bottom: 1em; }
.policy-content ol li { list-style: decimal; margin-bottom: 6px; font-size: 14px; line-height: 1.65; }
.policy-content p { font-size: 14px; line-height: 1.7; }
.policy-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13.5px;
}
.policy-content table th {
  background: var(--green); color: var(--white);
  padding: 10px 14px; text-align: left; font-size: 13px;
}
.policy-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.policy-content table tr:nth-child(even) td { background: var(--light); }

/* =============================================
   REHBER (GUIDE) PAGE
   ============================================= */
.guide-toc {
  background: var(--sand-light); border-radius: var(--radius);
  padding: 22px; margin-bottom: 32px;
}
.guide-toc h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 12px; }
.guide-toc ol { padding-left: 20px; }
.guide-toc ol li { margin-bottom: 6px; font-size: 13.5px; }
.guide-toc ol li a { color: var(--green); }
.guide-toc ol li a:hover { color: var(--green-dark); }
.guide-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.guide-section h2 { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--sand); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--slate); color: rgba(255,255,255,.8);
  margin-top: 0;
}
.footer-main { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.footer-logo span { color: var(--blue); }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a {
  font-size: 13px; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-mini a:hover { color: var(--white); }
.footer-contact-mini svg { width: 14px; height: 14px; fill: var(--blue); flex-shrink: 0; }
.footer-col h5 {
  font-size: 12.5px; font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.45); margin: 0; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-legal-links a:hover { color: rgba(255,255,255,.8); }

/* =============================================
   BADGES & TAGS
   ============================================= */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
  padding: 3px 10px; border-radius: 99px;
}
.badge-green { background: rgba(22,101,52,.1); color: var(--green); }
.badge-blue { background: rgba(56,189,248,.12); color: var(--blue-dark); }
.badge-sand { background: var(--sand-light); color: #92400e; }
.badge-slate { background: rgba(51,65,85,.08); color: var(--slate); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.page-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--slate-light);
  border: 1.5px solid var(--border); background: var(--white);
  cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.page-btn:hover { border-color: var(--green); color: var(--green); background: var(--light); }
.page-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.page-btn.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--green);
  padding: 72px 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.78); font-size: 16px; max-width: 540px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: var(--white); color: var(--green); padding: 14px 32px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  border: none; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-cta-white:hover { background: var(--sand-light); color: var(--green-dark); transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6); padding: 14px 32px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); transform: translateY(-2px); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 22px 0;
}
.trust-grid {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--slate);
  white-space: nowrap;
}
.trust-item svg { width: 22px; height: 22px; fill: var(--green); flex-shrink: 0; }

/* =============================================
   PRICE TREND (Chart area placeholder)
   ============================================= */
.price-chart-box {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin: 20px 0;
}
.price-chart-title { font-size: 13.5px; font-weight: 700; margin-bottom: 16px; color: var(--slate); }
.price-chart-canvas { width: 100%; height: 160px; position: relative; overflow: hidden; }
.price-bars { display: flex; align-items: flex-end; gap: 6px; height: 120px; padding: 0 4px; }
.price-bar { flex: 1; border-radius: 4px 4px 0 0; position: relative; cursor: default; }
.price-bar-green { background: var(--green); opacity: .75; }
.price-bar-blue { background: var(--blue-dark); opacity: .75; }
.price-bar-sand { background: #d97706; opacity: .6; }
.price-chart-labels { display: flex; gap: 6px; margin-top: 6px; }
.price-chart-labels span { flex: 1; text-align: center; font-size: 10.5px; color: var(--slate-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta .btn-compare-nav { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .comparison-slots { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav-sidebar { position: static; display: none; }
}
@media (max-width: 640px) {
  .hero { min-height: 420px; }
  .hero p { font-size: 15px; }
  .section-gap { padding: 48px 0; }
  .section-gap--lg { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .policy-content { padding: 22px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table-wrap { font-size: 12px; }
  .footer-main { padding: 40px 0 30px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
