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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #334155;
  background: #F8FAFC;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --white: #FFFFFF;
  --green: #166534;
  --green-light: #22c55e;
  --green-dark: #0f4723;
  --sky: #38BDF8;
  --slate: #334155;
  --slate-light: #64748B;
  --sand: #EAD7B7;
  --sand-light: #F5EDD8;
  --gray: #F8FAFC;
  --gray-mid: #E2E8F0;
  --gray-dark: #CBD5E1;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(51,65,85,0.08);
  --shadow-md: 0 8px 40px rgba(51,65,85,0.12);
  --shadow-lg: 0 16px 60px rgba(51,65,85,0.15);
  --transition: 0.25s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; color: var(--slate); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--slate-light); }
strong { font-weight: 600; color: var(--slate); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
}
.logo span { color: var(--sky); }
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--green); background: rgba(22,101,52,0.06); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--slate);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--gray); color: var(--green); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--slate);
  transition: var(--transition);
  position: relative;
}
.btn-icon:hover { background: var(--gray); color: var(--green); }
.badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--green);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  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(--radius-sm);
  color: var(--slate);
}
.hamburger:hover { background: var(--gray); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--gray-mid);
}
.mobile-menu a:hover { background: var(--gray); color: var(--green); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-light);
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--slate-light); transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--gray-dark); }
.breadcrumb-inner span { color: var(--slate); font-weight: 500; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(22,101,52,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(22,101,52,0.4);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--sky);
  color: white;
  box-shadow: 0 4px 14px rgba(56,189,248,0.3);
}
.btn-secondary:hover {
  background: #0ea5e9;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: white; transform: translateY(-1px); }
.btn-ghost {
  background: var(--gray);
  color: var(--slate);
  border: 1px solid var(--gray-mid);
}
.btn-ghost:hover { background: var(--gray-mid); color: var(--slate); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #15803d 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,71,35,0.88) 0%, rgba(22,101,52,0.7) 60%, rgba(56,189,248,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}
.hero-content h1 { color: white; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; 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,0.2);
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-num { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--sky); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 2px; margin-bottom: 0; }

/* ===== CATEGORY HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--slate) 0%, var(--green) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(56,189,248,0.08);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 0; max-width: 600px; }

/* ===== SEARCH BAR ===== */
.search-bar-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-top: -28px;
  position: relative;
  z-index: 10;
}
.search-bar {
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-input-wrap {
  flex: 1;
  position: relative;
}
.search-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--slate-light);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--slate);
  transition: var(--transition);
  background: var(--gray);
}
.search-input:focus { outline: none; border-color: var(--green); background: white; }
.search-select {
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--gray);
  min-width: 160px;
  cursor: pointer;
  transition: var(--transition);
}
.search-select:focus { outline: none; border-color: var(--green); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-mid);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 4/3;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.04); }
.card-body { padding: 20px; }
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  background: rgba(22,101,52,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.card-date { font-size: 0.8rem; color: var(--slate-light); }
.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  line-height: 1.4;
}
.card-title a:hover { color: var(--green); }
.card-excerpt { font-size: 0.875rem; color: var(--slate-light); margin-bottom: 16px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-mid);
}
.card-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.card-read-more:hover { gap: 8px; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 1;
  padding: 20px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tag-new { background: var(--sky); color: white; }
.tag-popular { background: var(--green); color: white; }
.tag-sale { background: #ef4444; color: white; }
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: var(--slate-light);
  transition: var(--transition);
}
.product-wishlist:hover { color: #ef4444; transform: scale(1.1); }
.product-body { padding: 18px; }
.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sky);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-name a:hover { color: var(--green); }
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.spec-chip {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gray);
  color: var(--slate-light);
  border: 1px solid var(--gray-mid);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: #f59e0b; font-size: 0.85rem; }
.rating-count { font-size: 0.8rem; color: var(--slate-light); }
.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.product-price-old {
  font-size: 0.85rem;
  color: var(--slate-light);
  text-decoration: line-through;
}
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.product-actions .btn { flex: 1; font-size: 0.85rem; padding: 10px; }
.compare-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  color: var(--slate-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.compare-btn:hover { border-color: var(--sky); color: var(--sky); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ===== SIDEBAR LAYOUT ===== */
.layout-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.sidebar-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Filter Group */
.filter-group { margin-bottom: 20px; }
.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
  display: block;
}
.filter-check-list { display: flex; flex-direction: column; gap: 8px; }
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--slate);
  cursor: pointer;
}
.filter-check input { accent-color: var(--green); width: 16px; height: 16px; }
.filter-check:hover { color: var(--green); }
.filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--slate-light);
  background: var(--gray);
  padding: 1px 6px;
  border-radius: 10px;
}

/* Price Range */
.price-range { display: flex; gap: 8px; align-items: center; }
.price-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--slate);
}
.price-input:focus { outline: none; border-color: var(--green); }

/* ===== TABLE ===== */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--green);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--slate);
  vertical-align: middle;
}
.comparison-table tr:nth-child(even) td { background: var(--gray); }
.comparison-table tr:hover td { background: rgba(22,101,52,0.04); }
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .cross { color: #ef4444; }

/* ===== INFO BOXES ===== */
.info-box {
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  border-left: 4px solid;
}
.info-box-green { background: rgba(22,101,52,0.06); border-color: var(--green); }
.info-box-sky { background: rgba(56,189,248,0.06); border-color: var(--sky); }
.info-box-sand { background: rgba(234,215,183,0.4); border-color: #d4a847; }
.info-box h4 { margin-bottom: 8px; }
.info-box p { margin-bottom: 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(22,101,52,0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--slate-light); margin-bottom: 0; }

/* ===== CATEGORIES GRID ===== */
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.cat-card a { display: block; }
.cat-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray);
}
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }
.cat-card-body { padding: 18px; }
.cat-icon {
  width: 52px;
  height: 52px;
  background: rgba(22,101,52,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.cat-icon svg { width: 26px; height: 26px; color: var(--green); }
.cat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.cat-count { font-size: 0.8rem; color: var(--slate-light); }

/* ===== FEATURE SECTIONS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-bottom: 12px;
}
.feature-list { margin-top: 24px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.feature-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(22,101,52,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item-icon svg { width: 20px; height: 20px; color: var(--green); }
.feature-item-text h5 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-item-text p { font-size: 0.875rem; margin-bottom: 0; }

/* ===== STATS BANNER ===== */
.stats-banner {
  background: linear-gradient(135deg, var(--slate) 0%, #1e293b 100%);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-card { text-align: center; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0; }

/* ===== TESTIMONIALS / REVIEWS ===== */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; color: var(--slate); margin-bottom: 16px; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--slate); }
.review-location { font-size: 0.8rem; color: var(--slate-light); }

/* ===== BLOG ===== */
.blog-article-header { padding: 60px 0 40px; background: var(--white); border-bottom: 1px solid var(--gray-mid); }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--slate-light); }
.article-content h2 { font-size: 1.6rem; margin: 32px 0 16px; color: var(--slate); }
.article-content h3 { font-size: 1.25rem; margin: 24px 0 12px; color: var(--slate); }
.article-content p { font-size: 1rem; line-height: 1.75; color: var(--slate); margin-bottom: 20px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { margin-bottom: 8px; font-size: 1rem; color: var(--slate); line-height: 1.7; }
.article-content img { border-radius: var(--radius); margin: 24px 0; }
.article-content blockquote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  background: rgba(22,101,52,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--slate);
}
.tags-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.tag {
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--gray);
  color: var(--slate);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.tag:hover { background: var(--green); color: white; border-color: var(--green); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none;
  background: rgba(22,101,52,0.08);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ===== MAP / CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(22,101,52,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--green); }
.contact-item-label { font-size: 0.8rem; color: var(--slate-light); margin-bottom: 4px; }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--slate); margin-bottom: 0; }
.contact-item-value a:hover { color: var(--green); }
.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
  font-size: 0.9rem;
  margin-top: 20px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.8);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo { color: white; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover { background: var(--green); color: white; }
.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--sky); padding-left: 4px; }
.footer-newsletter h4 { color: white; font-size: 0.95rem; margin-bottom: 12px; }
.footer-newsletter p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.875rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { outline: none; border-color: var(--sky); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--sky); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--gray-mid);
  color: var(--slate);
  background: var(--white);
  transition: var(--transition);
  padding: 0 10px;
}
.page-btn:hover { border-color: var(--green); color: var(--green); }
.page-btn.active { background: var(--green); color: white; border-color: var(--green); }

/* ===== CHIPS / BADGES ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.chip-green { background: rgba(22,101,52,0.1); color: var(--green); }
.chip-sky { background: rgba(56,189,248,0.1); color: #0284c7; }
.chip-sand { background: rgba(234,215,183,0.5); color: #92400e; }
.chip-slate { background: rgba(51,65,85,0.08); color: var(--slate); }

/* ===== TABS ===== */
.tabs { margin-bottom: 32px; }
.tab-list {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gray-mid);
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--slate); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-content > div { display: none; }
.tab-content > div.active { display: block; }

/* ===== ACCORDION ===== */
.accordion { border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-mid); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
  text-align: left;
  transition: var(--transition);
}
.accordion-header:hover { background: var(--gray); color: var(--green); }
.accordion-header.open { color: var(--green); }
.accordion-icon { font-size: 1.2rem; transition: transform 0.2s; }
.accordion-header.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ===== POLICY PAGES ===== */
.policy-page { max-width: 860px; margin: 0 auto; }
.policy-page h1 { font-size: 2rem; margin-bottom: 8px; }
.policy-page .policy-date { font-size: 0.85rem; color: var(--slate-light); margin-bottom: 32px; }
.policy-page h2 { font-size: 1.3rem; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-mid); }
.policy-page h3 { font-size: 1.1rem; margin: 20px 0 10px; }
.policy-page p, .policy-page li { font-size: 0.95rem; line-height: 1.8; color: #475569; }
.policy-page ul, .policy-page ol { padding-left: 22px; margin-bottom: 16px; }
.policy-page li { margin-bottom: 6px; }
.policy-page .highlight-box {
  background: rgba(22,101,52,0.05);
  border: 1px solid rgba(22,101,52,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}

/* ===== TOOLTIPS ===== */
.tooltip-wrap { position: relative; display: inline-flex; }
.tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate);
  color: white;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 99;
}
.tooltip-wrap:hover .tooltip { display: block; }

/* ===== NOTIFY TOAST ===== */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 340px;
}
#toast.show { opacity: 1; transform: translateY(0); }

/* ===== COMPARE STRIP ===== */
#compare-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--green);
  padding: 12px 24px;
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
#compare-strip.show { display: flex; }
#compare-strip .compare-items { display: flex; gap: 12px; flex: 1; }
.compare-slot {
  width: 120px;
  height: 48px;
  border: 2px dashed var(--gray-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--slate-light);
}
.compare-slot.filled { border-style: solid; border-color: var(--green); background: rgba(22,101,52,0.05); }

/* ===== MISC ===== */
.divider { border: none; border-top: 1px solid var(--gray-mid); margin: 32px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-sky { color: var(--sky); }
.text-slate { color: var(--slate); }
.text-muted { color: var(--slate-light); }
.fw-700 { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .search-bar { flex-direction: column; }
  .search-select { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { height: 64px; }
}

/* ==========================================
   POLICY PAGES
   ========================================== */
.policy-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.policy-toc strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-light);
  margin-bottom: 8px;
  display: block;
}
.policy-toc a {
  font-size: 0.83rem;
  color: var(--slate);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.policy-toc a:hover { background: var(--gray-light); color: var(--green); text-decoration: none; }
.policy-body { min-width: 0; }
.policy-section { margin-bottom: 36px; }
.policy-section h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-mid);
  color: var(--slate);
}
.policy-section h3 {
  font-size: 1rem;
  margin: 20px 0 10px;
  color: var(--slate);
}
.policy-section p { color: var(--slate-light); line-height: 1.75; margin-bottom: 12px; }
.policy-section ul, .policy-section ol { padding-left: 20px; color: var(--slate-light); line-height: 2.1; }
.policy-section li { margin-bottom: 2px; }

/* Info table (within policy pages / company info) */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.info-table th, .info-table td { padding: 10px 14px; border: 1px solid var(--gray-mid); text-align: left; }
.info-table th { background: var(--gray-light); font-weight: 600; color: var(--slate); width: 160px; white-space: nowrap; }
.info-table td { color: var(--slate-light); }
.info-table a { color: var(--green); }

/* Info boxes */
.info-box { padding: 18px 22px; border-radius: var(--radius); border-left: 4px solid; margin-bottom: 20px; }
.info-box h4 { margin-bottom: 8px; font-size: 0.95rem; }
.info-box p { margin-bottom: 0; font-size: 0.88rem; line-height: 1.65; }
.info-box-green { background: #f0fdf4; border-color: var(--green); }
.info-box-green h4 { color: var(--green); }
.info-box-sky { background: #f0f9ff; border-color: var(--sky); }
.info-box-sky h4 { color: #0369a1; }
.info-box-sand { background: #fefce8; border-color: #f59e0b; }
.info-box-sand h4 { color: #92400e; }

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate);
  color: white;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
#cookie-banner p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--sky); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Product page tabs */
.product-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-mid); margin-bottom: 28px; }
.product-tab { padding: 12px 20px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; background: none; color: var(--slate-light); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; }
.product-tab.active { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Spec grid for product detail */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin: 20px 0; }
.spec-item { background: var(--gray-light); border-radius: 10px; padding: 14px 16px; }
.spec-item-label { font-size: 0.74rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.spec-item-value { font-size: 1rem; font-weight: 700; color: var(--slate); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: #f0fdf4; border: 1.5px solid #bbf7d0; border-radius: 10px; padding: 20px; text-align: center; display: none; }
.form-success h3 { color: var(--green); margin-bottom: 8px; }

/* Responsive policy */
@media (max-width: 900px) {
  .policy-wrap { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
