@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');

:root {
  --white: #FFFFFF;
  --forest-green: #166534;
  --forest-green-light: #16a34a;
  --forest-green-dark: #14532d;
  --sky-blue: #38BDF8;
  --sky-blue-dark: #0ea5e9;
  --slate: #334155;
  --slate-light: #475569;
  --sand: #EAD7B7;
  --sand-light: #F5EDD8;
  --light-gray: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--gray-600); }
a { color: var(--forest-green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--forest-green-light); }
ul, ol { list-style: none; }
img { display: block; width: 100%; height: auto; }

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.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; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 12px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.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; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--forest-green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,101,52,0.30);
}
.btn-secondary {
  background: var(--white);
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}
.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sky {
  background: var(--sky-blue);
  color: var(--white);
}
.btn-sky:hover {
  background: var(--sky-blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56,189,248,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 2px solid var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
}
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; }

/* ═══════════════════════════════════════
   BADGES
═══════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-green { background: #dcfce7; color: var(--forest-green); }
.badge-blue { background: #e0f2fe; color: #0369a1; }
.badge-sand { background: var(--sand-light); color: #78350f; }
.badge-gray { background: var(--gray-200); color: var(--gray-700); }
.badge-red { background: #fee2e2; color: #b91c1c; }

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--forest-green);
  padding: 6px 0;
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; }
.header-top-text { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.header-top-links { display: flex; align-items: center; gap: 20px; }
.header-top-links a { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.header-top-links a:hover { color: var(--white); }
.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--forest-green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
}
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--gray-900); }
.logo-text span { color: var(--forest-green); }

.search-bar { flex: 1; max-width: 520px; position: relative; }
.search-bar input {
  width: 100%;
  padding: 10px 48px 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--light-gray);
  color: var(--gray-800);
  transition: var(--transition);
}
.search-bar input:focus { outline: none; border-color: var(--forest-green); background: var(--white); }
.search-bar button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: var(--forest-green); color: var(--white);
  border: none; border-radius: var(--radius-sm); width: 36px; height: 32px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--forest-green-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  background: var(--white); color: var(--gray-700); cursor: pointer;
  font-size: 1rem; transition: var(--transition); text-decoration: none;
}
.header-action-btn:hover { border-color: var(--forest-green); color: var(--forest-green); }
.action-badge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--forest-green); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.header-compare-btn { display: flex; align-items: center; gap: 6px; padding: 10px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); color: var(--gray-700); font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.header-compare-btn:hover { border-color: var(--forest-green); color: var(--forest-green); }

.nav-main { background: var(--gray-900); }
.nav-main .container { display: flex; align-items: center; gap: 0; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  border-bottom-color: var(--sky-blue);
}
.nav-link svg { width: 14px; height: 14px; }
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
  min-width: 220px; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); padding: 8px 0;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: var(--gray-700); font-size: 0.875rem; font-weight: 500; }
.dropdown-item:hover { background: var(--light-gray); color: var(--forest-green); }
.dropdown-item svg { width: 16px; height: 16px; color: var(--forest-green); }
.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); margin: 0 4px; }
.mobile-menu-btn { display: none; }

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb-bar { background: var(--light-gray); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-item { font-size: 0.825rem; color: var(--gray-500); }
.breadcrumb-item a { color: var(--gray-500); }
.breadcrumb-item a:hover { color: var(--forest-green); }
.breadcrumb-sep { color: var(--gray-400); font-size: 0.75rem; }
.breadcrumb-item.active { color: var(--forest-green); font-weight: 600; }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,101,52,0.85) 0%, rgba(15,23,42,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,189,248,0.20); border: 1px solid rgba(56,189,248,0.35);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--sky-blue);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--sky-blue); }
.hero p { color: rgba(255,255,255,0.80); font-size: 1.1rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat .num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #dcfce7; color: var(--forest-green);
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.775rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }
.section-header-side { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }

/* ═══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--forest-green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-gray);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.card-action-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); cursor: pointer; font-size: 0.9rem;
  transition: var(--transition);
}
.card-action-btn:hover { background: var(--forest-green); color: var(--white); border-color: var(--forest-green); }
.product-card-body { padding: 16px; }
.product-category-label { font-size: 0.75rem; color: var(--forest-green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.product-card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.35; }
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--forest-green); }
.product-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--gray-500); }
.stars { color: #f59e0b; }
.product-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.spec-item { display: flex; flex-direction: column; background: var(--light-gray); border-radius: var(--radius-sm); padding: 7px 10px; }
.spec-label { font-size: 0.7rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; }
.spec-value { font-size: 0.85rem; color: var(--gray-800); font-weight: 700; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.product-price { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--forest-green); }
.product-price-old { font-size: 0.8rem; color: var(--gray-400); text-decoration: line-through; }
.btn-cart { padding: 8px 14px; border-radius: var(--radius-sm); }

/* ═══════════════════════════════════════
   CATEGORY CARDS
═══════════════════════════════════════ */
.category-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.category-card:hover { border-color: var(--forest-green); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.category-card-image { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.category-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-body { padding: 18px; }
.category-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: #dcfce7; color: var(--forest-green);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  margin-bottom: 12px;
}
.category-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--gray-900); margin-bottom: 6px; }
.category-card-count { font-size: 0.8rem; color: var(--gray-400); }
.category-card-link { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--forest-green); }
.category-card-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-tag { font-size: 0.75rem; color: var(--sky-blue-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--gray-900); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--forest-green); }
.blog-card-meta { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 12px; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--forest-green); }
.blog-read-more svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════
   SPEC TABLE
═══════════════════════════════════════ */
.spec-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { background: var(--gray-800); color: var(--white); padding: 14px 18px; text-align: left; font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.spec-table td { padding: 12px 18px; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem; color: var(--gray-700); vertical-align: top; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--light-gray); }
.spec-table tr:hover td { background: #f0fdf4; }
.spec-table td:first-child { font-weight: 600; color: var(--gray-900); background: var(--light-gray) !important; }
.spec-table .check { color: var(--forest-green); font-size: 1rem; }
.spec-table .cross { color: #ef4444; font-size: 1rem; }

/* ═══════════════════════════════════════
   FILTER SIDEBAR
═══════════════════════════════════════ */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { position: sticky; top: 90px; }
.filter-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px; }
.filter-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--gray-900); margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.filter-group { margin-bottom: 20px; }
.filter-group-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.filter-check { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; cursor: pointer; }
.filter-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--forest-green); cursor: pointer; }
.filter-check span { font-size: 0.875rem; color: var(--gray-700); }
.filter-check .count { margin-left: auto; background: var(--gray-100); color: var(--gray-500); font-size: 0.75rem; padding: 2px 7px; border-radius: 10px; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-input { flex: 1; padding: 8px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.875rem; width: 100%; }
.price-input:focus { outline: none; border-color: var(--forest-green); }
.filter-clear { font-size: 0.8rem; color: var(--forest-green); cursor: pointer; font-weight: 600; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); padding: 12px 16px; }
.catalog-results { font-size: 0.875rem; color: var(--gray-500); }
.catalog-sort { display: flex; align-items: center; gap: 10px; }
.sort-select { border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 7px 12px; font-size: 0.85rem; color: var(--gray-700); background: var(--white); cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--forest-green); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--white); cursor: pointer; color: var(--gray-500); transition: var(--transition); }
.view-btn.active { border-color: var(--forest-green); color: var(--forest-green); background: #dcfce7; }

/* ═══════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════ */
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.compare-table th { padding: 16px; background: var(--forest-green); color: var(--white); font-size: 0.875rem; font-weight: 600; }
.compare-table td { padding: 13px 16px; border: 1px solid var(--gray-200); font-size: 0.875rem; color: var(--gray-700); text-align: center; }
.compare-table tr:first-child td { background: var(--light-gray); font-weight: 700; color: var(--gray-900); }
.compare-table .row-label { text-align: left; font-weight: 600; color: var(--gray-900); background: var(--gray-50); }
.compare-table .highlight { background: #f0fdf4; }
.compare-win { color: var(--forest-green); font-weight: 700; }
.compare-lose { color: var(--gray-400); }

/* ═══════════════════════════════════════
   INFO BLOCKS
═══════════════════════════════════════ */
.info-banner {
  background: linear-gradient(135deg, #166534 0%, #14532d 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.info-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(56,189,248,0.10);
  border-radius: 50%;
  top: -80px; right: -80px;
}
.info-banner h2 { color: var(--white); margin-bottom: 16px; }
.info-banner p { color: rgba(255,255,255,0.80); }
.feature-icon-box {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: #dcfce7; color: var(--forest-green);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.feature-box { padding: 28px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); }
.feature-box h4 { margin-bottom: 8px; }
.feature-box p { margin: 0; font-size: 0.875rem; }
.stat-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.stat-card .num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--forest-green); }
.stat-card .lbl { font-size: 0.875rem; color: var(--gray-500); }
.info-card { background: var(--light-gray); border-radius: var(--radius-lg); padding: 28px; }
.info-card h4 { margin-bottom: 10px; }

/* ═══════════════════════════════════════
   TABS
═══════════════════════════════════════ */
.tabs-nav { display: flex; border-bottom: 2px solid var(--gray-200); gap: 4px; overflow-x: auto; }
.tab-btn {
  padding: 12px 22px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  border: none; background: none; cursor: pointer;
  color: var(--gray-500); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--transition); white-space: nowrap;
}
.tab-btn.active { color: var(--forest-green); border-bottom-color: var(--forest-green); }
.tab-btn:hover { color: var(--forest-green); }
.tab-pane { display: none; padding-top: 28px; }
.tab-pane.active { display: block; }

/* ═══════════════════════════════════════
   PAGINATION
═══════════════════════════════════════ */
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn {
  min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; color: var(--gray-700); cursor: pointer;
  transition: var(--transition); background: var(--white); text-decoration: none;
}
.page-btn:hover { border-color: var(--forest-green); color: var(--forest-green); }
.page-btn.active { background: var(--forest-green); color: var(--white); border-color: var(--forest-green); }
.page-btn.disabled { opacity: 0.4; cursor: default; }

/* ═══════════════════════════════════════
   FORMS
═══════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--gray-800); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800);
  background: var(--white); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--forest-green); box-shadow: 0 0 0 3px rgba(22,101,52,0.1); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-note { font-size: 0.8rem; color: var(--gray-400); margin-top: 6px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 3px; accent-color: var(--forest-green); }
.form-check label { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }
.success-msg {
  display: none;
  background: #dcfce7; color: var(--forest-green);
  border: 1.5px solid #86efac; border-radius: var(--radius-md);
  padding: 16px 20px; font-weight: 600; font-size: 0.9rem;
  margin-top: 16px; align-items: center; gap: 10px;
}
.success-msg.show { display: flex; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter-section { background: var(--sand-light); }
.newsletter-box { background: var(--white); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-md); }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); font-size: 0.95rem; }
.newsletter-form input:focus { outline: none; border-color: var(--forest-green); }

/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE
═══════════════════════════════════════ */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); aspect-ratio: 4/3; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.gallery-thumb { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; aspect-ratio: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--forest-green); }
.gallery-thumb:hover { border-color: var(--gray-400); }
.product-detail-info h1 { margin-bottom: 14px; font-size: 1.7rem; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.product-detail-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--forest-green); margin-bottom: 4px; }
.product-detail-price-old { font-size: 1rem; color: var(--gray-400); text-decoration: line-through; }
.product-detail-price-box { background: var(--light-gray); border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px; }
.price-note { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }
.product-detail-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.delivery-info { display: flex; flex-direction: column; gap: 12px; background: var(--light-gray); border-radius: var(--radius-md); padding: 16px; }
.delivery-row { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: var(--gray-700); }
.delivery-row svg { color: var(--forest-green); }
.product-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.highlight-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-700); }
.highlight-item svg { color: var(--forest-green); flex-shrink: 0; }

/* ═══════════════════════════════════════
   CART
═══════════════════════════════════════ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--light-gray); padding: 13px 16px; text-align: left; font-size: 0.8rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 2px solid var(--gray-200); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; font-size: 0.875rem; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; }
.cart-qty-btn { width: 32px; height: 32px; border: none; background: var(--light-gray); cursor: pointer; font-size: 1rem; color: var(--gray-700); }
.cart-qty-btn:hover { background: var(--gray-200); }
.cart-qty-input { width: 40px; height: 32px; border: none; border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); text-align: center; font-size: 0.875rem; font-weight: 600; }
.cart-remove { color: #ef4444; cursor: pointer; font-size: 1.1rem; background: none; border: none; }
.order-summary { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem; color: var(--gray-600); }
.summary-row.total { font-weight: 800; font-size: 1.1rem; color: var(--gray-900); border-bottom: none; margin-top: 4px; }
.summary-row.total .amount { color: var(--forest-green); font-size: 1.3rem; }

/* ═══════════════════════════════════════
   ACCORDION / FAQ
═══════════════════════════════════════ */
.accordion-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; background: var(--white); transition: var(--transition); font-weight: 600; color: var(--gray-900); user-select: none; }
.accordion-header:hover { background: var(--light-gray); }
.accordion-header.open { background: var(--forest-green); color: var(--white); }
.accordion-icon { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.accordion-body.open { max-height: 600px; }
.accordion-content { padding: 16px 20px; color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; border-top: 1px solid var(--gray-100); }

/* ═══════════════════════════════════════
   REVIEW CARDS
═══════════════════════════════════════ */
.review-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest-green); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-900); }
.reviewer-date { font-size: 0.78rem; color: var(--gray-400); }
.review-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }
.review-verified { font-size: 0.75rem; color: var(--forest-green); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════
   STICKY COMPARE BAR
═══════════════════════════════════════ */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--gray-900); border-top: 2px solid var(--forest-green);
  padding: 12px 0; transform: translateY(100%); transition: transform 0.3s ease;
}
.compare-bar.show { transform: translateY(0); }
.compare-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.compare-items { display: flex; gap: 12px; }
.compare-slot { width: 56px; height: 56px; border-radius: var(--radius-sm); border: 2px dashed rgba(255,255,255,0.30); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.40); font-size: 0.7rem; text-align: center; }
.compare-slot.filled { border-color: var(--forest-green); background: rgba(22,101,52,0.20); }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--gray-900); color: var(--white); padding: 14px 20px;
  border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  transform: translateX(110%); transition: transform 0.3s ease;
  max-width: 340px; box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(0); }
.toast-success { border-left: 4px solid var(--forest-green-light); }
.toast-info { border-left: 4px solid var(--sky-blue); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
}
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--sky-blue); }
.footer-desc { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.60); margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; margin-top: 2px; color: var(--sky-blue); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--white); }
.footer-col-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.60); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.10); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--white); }
.footer-trustbadges { display: flex; align-items: center; gap: 12px; }
.trust-badge { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════ */
.policy-page { max-width: 860px; margin: 0 auto; padding: 48px 20px; }
.policy-page h1 { font-size: 1.9rem; margin-bottom: 8px; }
.policy-date { color: var(--gray-400); font-size: 0.875rem; margin-bottom: 32px; display: block; }
.policy-section { margin-bottom: 36px; }
.policy-section h2 { font-size: 1.2rem; color: var(--forest-green); border-left: 4px solid var(--forest-green); padding-left: 14px; margin-bottom: 14px; }
.policy-section h3 { font-size: 1.05rem; color: var(--gray-800); margin-bottom: 10px; margin-top: 20px; }
.policy-section p { font-size: 0.9rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 10px; }
.policy-section ul, .policy-section ol { padding-left: 0; margin-bottom: 12px; }
.policy-section ul li, .policy-section ol li { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; padding: 4px 0 4px 20px; position: relative; }
.policy-section ul li::before { content: '•'; position: absolute; left: 6px; color: var(--forest-green); font-weight: 700; }
.policy-section ol { counter-reset: list-counter; }
.policy-section ol li { counter-increment: list-counter; }
.policy-section ol li::before { content: counter(list-counter) '.'; position: absolute; left: 0; color: var(--forest-green); font-weight: 700; }
.policy-section table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 0.85rem; }
.policy-section th { background: var(--light-gray); padding: 10px 14px; text-align: left; font-weight: 700; border: 1px solid var(--gray-200); }
.policy-section td { padding: 10px 14px; border: 1px solid var(--gray-200); color: var(--gray-600); vertical-align: top; }
.policy-section tr:nth-child(even) td { background: var(--light-gray); }
.policy-info-box { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius-md); padding: 16px 20px; margin: 20px 0; }
.policy-info-box p { margin: 0; color: #1d4ed8; font-size: 0.875rem; }
.policy-warning-box { background: #fef3c7; border: 1px solid #fde68a; border-radius: var(--radius-md); padding: 16px 20px; margin: 20px 0; }
.policy-warning-box p { margin: 0; color: #92400e; font-size: 0.875rem; }
.policy-contact-box { background: #dcfce7; border: 1px solid #86efac; border-radius: var(--radius-md); padding: 20px; margin-top: 32px; }
.policy-contact-box h4 { color: var(--forest-green); margin-bottom: 8px; }
.policy-contact-box p { margin: 0; font-size: 0.9rem; color: var(--gray-700); }

/* ═══════════════════════════════════════
   KNOWLEDGE BOX / GUIDE CARDS
═══════════════════════════════════════ */
.guide-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-card-image { aspect-ratio: 16/9; overflow: hidden; }
.guide-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.guide-card:hover .guide-card-image img { transform: scale(1.04); }
.guide-card-body { padding: 22px; }
.guide-level { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.guide-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.4; }
.guide-title a { color: inherit; }
.guide-title a:hover { color: var(--forest-green); }
.guide-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.guide-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: var(--gray-400); }

/* ═══════════════════════════════════════
   ARTICLE / BLOG DETAIL
═══════════════════════════════════════ */
.article-hero { background: var(--gray-900); position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; padding-bottom: 48px; }
.article-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.30) 100%); }
.article-hero-content { position: relative; z-index: 2; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-body { font-size: 0.975rem; line-height: 1.8; color: var(--gray-700); }
.article-body h2 { font-size: 1.4rem; margin: 32px 0 14px; color: var(--gray-900); }
.article-body h3 { font-size: 1.15rem; margin: 24px 0 12px; color: var(--gray-800); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 6px; color: var(--gray-600); }
.article-body blockquote { border-left: 4px solid var(--forest-green); padding: 14px 20px; background: var(--light-gray); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 24px 0; }
.article-body blockquote p { margin: 0; font-style: italic; color: var(--gray-700); font-size: 1.02rem; }
.article-body img { border-radius: var(--radius-md); margin: 24px 0; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px; }
.sidebar-widget-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--gray-900); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }
.sidebar-product-mini { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-product-mini:last-child { border-bottom: none; }
.sidebar-product-mini-img { width: 52px; height: 52px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.sidebar-product-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-product-mini-info .title { font-size: 0.825rem; font-weight: 600; color: var(--gray-800); line-height: 1.35; }
.sidebar-product-mini-info .price { font-size: 0.85rem; color: var(--forest-green); font-weight: 700; }
.toc { list-style: none; }
.toc li { padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.toc a { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }
.toc a:hover { color: var(--forest-green); }
.toc .h3 { padding-left: 14px; }
.toc .h3 a { font-size: 0.8rem; }

/* ═══════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-section-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--gray-900); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-100); display: flex; align-items: center; gap: 10px; }
.checkout-section-title .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--forest-green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.checkout-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-method { border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: var(--transition); }
.payment-method:hover { border-color: var(--forest-green); }
.payment-method.selected { border-color: var(--forest-green); background: #f0fdf4; }
.payment-method input[type=radio] { accent-color: var(--forest-green); }
.payment-method-label { font-weight: 600; font-size: 0.875rem; color: var(--gray-800); }
.payment-method-desc { font-size: 0.78rem; color: var(--gray-500); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero { min-height: 380px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--gray-900); }
.about-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,101,52,0.80) 0%, rgba(15,23,42,0.75) 100%); }
.about-hero-content { position: relative; z-index: 2; }
.about-timeline { position: relative; padding-left: 32px; }
.about-timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--forest-green); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--forest-green); }
.timeline-year { font-size: 0.8rem; color: var(--forest-green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.timeline-title { font-family: var(--font-heading); font-weight: 700; margin-bottom: 8px; }
.timeline-text { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.value-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-card .icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: #dcfce7; color: var(--forest-green); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; }

/* ═══════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); height: 400px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: #dcfce7; color: var(--forest-green); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--gray-800); font-weight: 600; }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--forest-green); }

/* ═══════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════ */
.trust-bar { background: var(--forest-green); padding: 28px 0; }
.trust-items { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.trust-item svg { width: 28px; height: 28px; color: var(--sky-blue); flex-shrink: 0; }
.trust-item-title { font-weight: 700; font-size: 0.9rem; }
.trust-item-sub { font-size: 0.78rem; opacity: 0.75; }

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest-green); color: var(--white);
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-md);
  transition: var(--transition); border: none;
}
#back-to-top.show { display: flex; }
#back-to-top:hover { background: var(--forest-green-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .catalog-layout { grid-template-columns: 240px 1fr; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
}
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .newsletter-form { flex-direction: column; }
  .nav-main .container { overflow-x: auto; padding: 0; }
  .header-main .container { flex-wrap: wrap; gap: 12px; }
  .search-bar { max-width: 100%; order: 3; width: 100%; }
  .header-top { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-trustbadges { display: none; }
  .trust-items { gap: 16px; justify-content: center; }
  .info-banner { padding: 28px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .about-hero { min-height: 280px; }
  .mobile-menu-btn { display: flex; }
}

/* ═══════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════ */
.policy-page h1 {
  font-size: 2rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.policy-page .policy-meta {
  font-size: 0.83rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.policy-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 12px;
  padding-top: 8px;
}
.policy-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.policy-page p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.policy-page ul,
.policy-page ol {
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0 0 18px 20px;
}
.policy-page li {
  margin-bottom: 6px;
}
.policy-page a {
  color: var(--forest-green);
  text-decoration: underline;
}
.policy-page a:hover {
  color: var(--forest-green-dark);
}

/* ═══════════════════════════════════════
   MISC
═══════════════════════════════════════ */
.text-green { color: var(--forest-green); }
.text-sky { color: var(--sky-blue-dark); }
.text-muted { color: var(--gray-400); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.fw-700 { font-weight: 700; }
.bg-light { background: var(--light-gray); }
.bg-sand { background: var(--sand-light); }
.bg-green { background: var(--forest-green); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.border { border: 1.5px solid var(--gray-200); }
.shadow { box-shadow: var(--shadow-md); }
.overflow-hidden { overflow: hidden; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 24px 0; }
.sticky-top { position: sticky; top: 90px; }
.relative { position: relative; }
.hidden { display: none !important; }
.visible { display: block !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
