@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&display=swap');

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  --white: #FFFFFF;
  --green: #166534;
  --green-hover: #1a7a3f;
  --green-dark: #0f4a24;
  --green-light: #dcfce7;
  --sky: #38BDF8;
  --sky-hover: #0ea5e9;
  --sky-light: #e0f2fe;
  --slate: #334155;
  --slate-light: #475569;
  --slate-lighter: #64748b;
  --sand: #EAD7B7;
  --sand-light: #f9f3e8;
  --gray: #F8FAFC;
  --gray-mid: #E2E8F0;
  --gray-dark: #94A3B8;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p { color: var(--text-light); line-height: 1.75; }
p + p { margin-top: 1em; }

.lead { font-size: 1.125rem; color: var(--text-light); line-height: 1.7; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

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

.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mb-8 { margin-bottom: 64px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

.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-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.grid { display: grid; }

.visually-hidden {
  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: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,101,52,0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-sky {
  background: var(--sky);
  color: var(--white);
}
.btn-sky:hover {
  background: var(--sky-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56,189,248,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-icon {
  width: 40px; height: 40px; padding: 0;
  border-radius: 50%;
}

/* ============================================
   TAGS / BADGES
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-sky { background: var(--sky-light); color: var(--sky-hover); }
.tag-sand { background: var(--sand-light); color: #a16207; }
.tag-slate { background: var(--gray); color: var(--slate-light); }

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

.header-top {
  background: var(--slate);
  padding: 7px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-top-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-info a {
  color: var(--gray-dark);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.header-top-info a:hover { color: var(--sand); }

.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-top-right a {
  color: var(--gray-dark);
  font-size: 0.8125rem;
  transition: color var(--transition);
}
.header-top-right a:hover { color: var(--sand); }

.header-main {
  padding: 16px 0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-search {
  flex: 1;
  max-width: 480px;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.search-form:focus-within {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}

.search-input {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--text);
}
.search-input::placeholder { color: var(--text-muted); }

.search-btn {
  padding: 10px 18px;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.search-btn:hover { background: var(--green-hover); }

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

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--slate-light);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}
.header-action-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.action-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Primary Nav */
.primary-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}

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

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--slate);
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: var(--green-light);
  color: var(--green);
}

.nav-dropdown-icon {
  width: 28px;
  height: 28px;
  background: var(--gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--slate);
  background: transparent;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-light);
  transition: color var(--transition);
}
.breadcrumb-item a:hover { color: var(--green); }

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb-sep {
  width: 4px;
  height: 4px;
  background: var(--gray-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,101,52,0.85) 0%, rgba(51,65,85,0.95) 60%, rgba(51,65,85,0.9) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.hero-content h1 span { color: var(--sky); }

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Category Hero (smaller) */
.page-hero {
  background: var(--slate);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,101,52,0.92) 0%, rgba(51,65,85,0.97) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 1.05rem; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 10px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  max-width: 600px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-header.text-center p { margin: 0 auto; }

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

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.category-card-body {
  padding: 18px 20px;
}

.category-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
}

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

.products-grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  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-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
}

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

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

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

.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.product-action-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.product-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.product-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-pill {
  padding: 3px 10px;
  background: var(--gray);
  border-radius: 20px;
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 500;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.rating-num { font-size: 0.8rem; color: var(--text-muted); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.product-price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card-footer {
  padding: 14px 20px;
  background: var(--gray);
  display: flex;
  gap: 8px;
}

.product-card-footer .btn { flex: 1; justify-content: center; font-size: 0.82rem; }

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

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

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

.filter-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.filter-clear {
  font-size: 0.8rem;
  color: var(--sky-hover);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}
.filter-clear:hover { color: var(--green); }

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

.filter-group-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

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

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

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

.filter-option-label {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
}

.filter-option-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--gray);
  padding: 2px 7px;
  border-radius: 10px;
}

.price-range {
  padding: 8px 0;
}

.range-inputs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.range-input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.range-input:focus { border-color: var(--green); }

.range-slider {
  width: 100%;
  accent-color: var(--green);
  margin-top: 10px;
}

/* ============================================
   CATALOG TOOLBAR
   ============================================ */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  gap: 16px;
}

.toolbar-count { font-size: 0.875rem; color: var(--text-light); }
.toolbar-count strong { color: var(--text); font-weight: 700; }

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  background: var(--white);
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--green); }

.view-toggles { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.view-btn.active, .view-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

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

.compare-table th {
  background: var(--slate);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:nth-child(even) td { background: var(--gray); }

.compare-table td {
  font-size: 0.875rem;
  color: var(--text-light);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.spec-yes { color: var(--green); font-weight: 600; }
.spec-no { color: #ef4444; }
.spec-highlight { color: var(--green); font-weight: 700; }

/* ============================================
   INFO CARDS / FEATURE BLOCKS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.sky { background: var(--sky-light); color: var(--sky-hover); }
.feature-icon.sand { background: var(--sand-light); color: #92400e; }

.feature-card h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.875rem; }

/* Info box */
.info-box {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid;
}
.info-box.green { background: var(--green-light); border-color: var(--green); }
.info-box.sky { background: var(--sky-light); border-color: var(--sky); }
.info-box.sand { background: var(--sand-light); border-color: #f59e0b; }
.info-box h4 { margin-bottom: 8px; color: var(--text); }
.info-box p { font-size: 0.9rem; color: var(--text-light); }

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-cat {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green);
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.45;
}

.blog-card p {
  font-size: 0.85rem;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* Article content */
.article-content {
  max-width: 800px;
}
.article-content h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.article-content h3 { margin: 30px 0 12px; font-size: 1.25rem; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
  list-style: disc;
}
.article-content li { margin-bottom: 8px; color: var(--text-light); font-size: 0.95rem; }
.article-content blockquote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  background: var(--green-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.article-content blockquote p { color: var(--green-dark); font-style: italic; margin: 0; }

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

.contact-info { padding: 0; }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-text h4 { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--green); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-required { color: #ef4444; }

.form-control {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: var(--green-light);
  border: 1px solid rgba(22,101,52,0.25);
  border-radius: var(--radius);
  margin-top: 20px;
}

.form-success.show { display: flex; align-items: center; gap: 14px; }

.success-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.success-text h4 { font-size: 0.9rem; color: var(--green-dark); margin-bottom: 4px; }
.success-text p { font-size: 0.82rem; color: var(--green); margin: 0; }

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 12px;
  margin-top: 32px;
}
.map-placeholder svg { width: 40px; height: 40px; opacity: 0.5; }
.map-placeholder p { font-size: 0.9rem; }

/* ============================================
   STATS / METRICS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}
.accordion-header:hover { background: var(--gray); }
.accordion-header.open { background: var(--green-light); }

.accordion-question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.accordion-header.open .accordion-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  background: var(--green-light);
}
.accordion-body.open { display: block; }

/* ============================================
   TABS
   ============================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 2px solid var(--border); }
.policy-header h1 { margin-bottom: 10px; }
.policy-meta { font-size: 0.875rem; color: var(--text-muted); }
.policy-meta span { margin: 0 8px; }

.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-size: 1.3rem; color: var(--text); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.policy-section h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 10px; margin-top: 24px; }
.policy-section p { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.75; }
.policy-section ul, .policy-section ol { padding-left: 22px; margin-bottom: 14px; }
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-section li { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 8px; line-height: 1.65; }
.policy-section table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.875rem; }
.policy-section table th { background: var(--slate); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.policy-section table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.policy-section table tr:nth-child(even) td { background: var(--gray); }
.policy-highlight { background: var(--sand-light); border: 1px solid var(--sand); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 24px; }
.policy-highlight p { color: var(--text); font-weight: 500; margin: 0; }

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

.testimonial-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
}

.author-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.author-loc { font-size: 0.78rem; color: var(--text-muted); }

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

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8375rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--sky); }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a::before { content: '›'; color: var(--sky); }

.footer-newsletter h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input {
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--sky); }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--green-hover); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }
.footer-legal-links span { color: rgba(255,255,255,0.2); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--slate);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  max-width: 320px;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-icon { font-size: 1.1rem; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text { font-size: 0.85rem; line-height: 1.55; }
.cookie-text a { color: var(--sky); text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 9px 22px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--green-hover); }
.cookie-decline {
  padding: 9px 18px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-item {
  padding: 22px;
  background: var(--gray);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
.value-item h4 { font-size: 0.9rem; margin-bottom: 6px; }
.value-item p { font-size: 0.83rem; }

/* ============================================
   GUIDE / REHBER PAGE
   ============================================ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.guide-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.guide-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 14px;
}

.guide-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.guide-card p { font-size: 0.875rem; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

/* ============================================
   SPEC TABLE DETAIL PAGE
   ============================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 13px 18px;
  font-size: 0.875rem;
}
.spec-table td:first-child {
  width: 40%;
  font-weight: 600;
  color: var(--text);
  background: var(--gray);
}
.spec-table td:last-child { color: var(--text-light); }

/* ============================================
   MISC
   ============================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.note-box {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: var(--sky-light);
  border-radius: var(--radius);
  border: 1px solid rgba(56,189,248,0.3);
  font-size: 0.875rem;
  color: var(--slate);
}

.section-bg-gray { background: var(--gray); }
.section-bg-sand { background: var(--sand-light); }
.section-bg-green { background: var(--green); }
.section-bg-slate { background: var(--slate); }

.text-white { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,0.75) !important; }

.rounded-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--gray) 25%, var(--gray-mid) 50%, var(--gray) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.4s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   FOOTER MAIN GRID
   ============================================ */
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .logo-name { color: var(--white) !important; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--sky); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.15);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 99999;
  pointer-events: none;
}

.toast {
  background: var(--slate);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast-icon { font-size: 1rem; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate);
  color: var(--white);
  z-index: 9000;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner a { color: var(--sky); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sitemap-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.sitemap-block h2 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}
.sitemap-list { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.sitemap-list li a {
  font-size: 0.875rem;
  color: var(--slate-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sitemap-list li a::before {
  content: '›';
  color: var(--green);
  font-weight: 700;
}
.sitemap-list li a:hover { color: var(--green); }

@media (max-width: 768px) {
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
}
