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

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --white: #FFFFFF;
  --forest-green: #166534;
  --forest-green-light: #22c55e;
  --forest-green-dark: #0f4a24;
  --sky-blue: #38BDF8;
  --sky-blue-dark: #0ea5e9;
  --slate: #334155;
  --slate-light: #64748b;
  --slate-dark: #1e293b;
  --sand: #EAD7B7;
  --sand-light: #f5edd9;
  --sand-dark: #c9a96e;
  --light-gray: #F8FAFC;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --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);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.22s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-main);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-green);
  color: var(--white);
  border-color: var(--forest-green);
}
.btn-primary:hover {
  background: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22,101,52,0.3);
}
.btn-secondary {
  background: var(--white);
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
}
.btn-sky {
  background: var(--sky-blue);
  color: var(--slate-dark);
  border-color: var(--sky-blue);
}
.btn-sky:hover {
  background: var(--sky-blue-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--forest-green);
  color: var(--forest-green);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ============================================
   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-dark);
  color: var(--gray-300);
  font-size: 0.8rem;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a { color: var(--gray-300); }
.header-top a:hover { color: var(--sky-blue); }
.header-top-left, .header-top-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-main {
  padding: 14px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--forest-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest-green);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--sky-blue); }
.header-search {
  flex: 1;
  max-width: 480px;
}
.search-form {
  display: flex;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-gray);
  transition: var(--transition);
}
.search-form:focus-within {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
  background: white;
}
.search-form input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
}
.search-form button {
  padding: 10px 18px;
  background: var(--forest-green);
  color: white;
  font-size: 0.9rem;
  transition: var(--transition);
}
.search-form button:hover { background: var(--forest-green-dark); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.header-action-btn:hover { color: var(--forest-green); background: var(--light-gray); }
.header-action-btn svg { width: 22px; height: 22px; }
.header-action-btn .badge {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--forest-green);
  color: white;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Main Nav */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.main-nav .container {
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  display: block;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}
.main-nav ul li.has-dropdown { position: relative; }
.main-nav ul li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
}
.main-nav ul li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  color: var(--forest-green);
  background: var(--light-gray);
  border-left-color: var(--forest-green);
}
.nav-all-cats {
  background: var(--forest-green) !important;
  color: white !important;
  border-radius: var(--radius-sm);
  margin-right: 8px;
}
.nav-all-cats:hover { background: var(--forest-green-dark) !important; }
.mobile-menu-toggle {
  display: none;
  padding: 8px;
  color: var(--text-primary);
}
.mobile-menu-toggle svg { width: 24px; height: 24px; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--light-gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb ol li a { color: var(--forest-green); }
.breadcrumb ol li a:hover { text-decoration: underline; }
.breadcrumb ol li::after { content: '/'; color: var(--gray-300); }
.breadcrumb ol li:last-child { color: var(--text-secondary); font-weight: 500; }
.breadcrumb ol li:last-child::after { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  height: 580px;
  background: var(--slate-dark);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,26,36,0.85) 0%, rgba(15,26,36,0.3) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-content .container { width: 100%; }
.hero-text { max-width: 560px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,189,248,0.2);
  color: var(--sky-blue);
  border: 1px solid rgba(56,189,248,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
}
.hero-stats .container { display: flex; gap: 40px; }
.hero-stat {
  color: white;
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sky-blue);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-alt { background: var(--light-gray); }
.section-dark {
  background: var(--slate-dark);
  color: white;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }
.section-label {
  display: inline-block;
  color: var(--forest-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green), var(--sky-blue));
  border-radius: 2px;
  margin: 14px auto 0;
}
.divider-left { margin-left: 0; }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-green);
}
.category-card-img {
  height: 160px;
  overflow: hidden;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-body {
  padding: 16px;
  text-align: center;
}
.category-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.category-card-body span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--light-gray);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-new { background: var(--forest-green); color: white; }
.badge-hot { background: #ef4444; color: white; }
.badge-sale { background: var(--sky-blue); color: var(--slate-dark); }
.badge-top { background: var(--sand-dark); color: white; }
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-wishlist:hover { color: #ef4444; border-color: #ef4444; }
.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.spec-tag {
  background: var(--light-gray);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: #f59e0b; font-size: 0.85rem; }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-green);
}
.product-price-old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
}
.product-card-actions {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.product-card-actions .btn { flex: 1; justify-content: center; }

/* ============================================
   CATEGORY PAGE LAYOUT
   ============================================ */
.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.filter-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-clear {
  font-size: 0.78rem;
  color: var(--forest-green);
  font-weight: 500;
  cursor: pointer;
}
.filter-group { margin-bottom: 22px; }
.filter-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--forest-green);
  cursor: pointer;
}
.filter-checkbox span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.filter-checkbox .filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
}
.price-range {
  padding: 8px 0;
}
.price-inputs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.price-inputs input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
}
.price-inputs input:focus { border-color: var(--forest-green); }
.range-slider {
  width: 100%;
  accent-color: var(--forest-green);
}
.category-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-md);
}
.toolbar-left {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.toolbar-left strong { color: var(--text-primary); }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.sort-select {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  outline: none;
  background: white;
  cursor: pointer;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover {
  background: var(--forest-green);
  color: white;
  border-color: var(--forest-green);
}

/* ============================================
   SPEC COMPARISON TABLE
   ============================================ */
.spec-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.spec-table th {
  background: var(--slate-dark);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.spec-table th:first-child {
  background: var(--forest-green-dark);
}
.spec-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--light-gray); }
.spec-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--light-gray);
  white-space: nowrap;
}
.spec-highlight td { background: rgba(22,101,52,0.06) !important; }
.spec-check { color: var(--forest-green); font-weight: 700; }
.spec-x { color: #ef4444; font-weight: 700; }

/* ============================================
   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: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-tag {
  background: rgba(22,101,52,0.1);
  color: var(--forest-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-read-time { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  color: var(--forest-green);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-read-more:hover { gap: 8px; }

/* ============================================
   INFO BOXES
   ============================================ */
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-box-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.icon-green { background: rgba(22,101,52,0.1); color: var(--forest-green); }
.icon-blue { background: rgba(56,189,248,0.15); color: var(--sky-blue-dark); }
.icon-sand { background: rgba(234,215,183,0.4); color: var(--sand-dark); }
.info-box h4 { margin-bottom: 8px; }
.info-box p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.features-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 50%, #166534 100%);
  padding: 72px 0;
}
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h2 { color: white; margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
.newsletter-form button {
  background: var(--sky-blue);
  color: var(--slate-dark);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.newsletter-form button:hover { background: white; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--sky-blue); }
.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li {
  margin-bottom: 9px;
}
.footer-col ul li a {
  font-size: 0.835rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--sky-blue); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links a:hover { color: var(--sky-blue); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  padding: 52px 0;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 640px; }
.page-hero-inner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 1; padding: 52px 0; }

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-images { position: sticky; top: 80px; }
.main-product-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--forest-green); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { margin-bottom: 10px; }
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.product-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
}
.in-stock { color: var(--forest-green); }
.in-stock::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--forest-green);
  border-radius: 50%;
  display: inline-block;
}
.product-price-block {
  margin-bottom: 22px;
}
.product-price-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest-green);
  line-height: 1;
}
.product-price-vat { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--forest-green); color: var(--forest-green); }
.qty-input {
  width: 60px;
  text-align: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
}
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.product-delivery-info {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 22px;
}
.delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.delivery-item:last-child { margin-bottom: 0; }
.delivery-item svg { width: 18px; height: 18px; color: var(--forest-green); flex-shrink: 0; }

/* ============================================
   TABS
   ============================================ */
.tabs {
  border-bottom: 2px solid var(--border);
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   GUIDE / REHBER
   ============================================ */
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: var(--transition);
}
.guide-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.guide-card-img {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
}
.guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.guide-card:hover .guide-card-img img { transform: scale(1.05); }
.guide-card-body {
  padding: 28px;
  flex: 1;
}
.guide-level {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.level-beginner { background: rgba(56,189,248,0.15); color: var(--sky-blue-dark); }
.level-advanced { background: rgba(22,101,52,0.1); color: var(--forest-green); }
.level-expert { background: rgba(234,215,183,0.5); color: var(--sand-dark); }
.guide-card-body h3 { margin-bottom: 10px; }
.guide-card-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.guide-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.guide-tag {
  background: var(--light-gray);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-label span { color: #ef4444; }
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: white;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-main);
}
.form-control:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
}
.form-control.error { border-color: #ef4444; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-check input { accent-color: var(--forest-green); width: 16px; height: 16px; margin-top: 2px; }
.form-check span { font-size: 0.85rem; color: var(--text-secondary); }
.form-success {
  background: rgba(22,101,52,0.08);
  border: 1px solid var(--forest-green);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--forest-green);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  max-width: 880px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--forest-green-dark);
}
.policy-content h2:first-child { border-top: none; margin-top: 0; }
.policy-content h3 { font-size: 1.05rem; margin: 20px 0 10px; color: var(--slate); }
.policy-content p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.75; }
.policy-content ul, .policy-content ol { margin: 0 0 16px 20px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 6px; }
.policy-meta {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  border-left: 4px solid var(--forest-green);
}
.policy-meta p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.policy-toc {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
  border: 1px solid var(--border);
}
.policy-toc h4 { margin-bottom: 14px; color: var(--text-primary); }
.policy-toc ul { margin: 0; }
.policy-toc ul li { list-style: none; margin-bottom: 6px; }
.policy-toc ul li a { font-size: 0.875rem; color: var(--forest-green); }
.policy-toc ul li a:hover { text-decoration: underline; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.875rem;
}
.info-table th {
  background: var(--forest-green);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.info-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.info-table tr:nth-child(even) td { background: var(--light-gray); }

/* ============================================
   PRICE CHART / TREND
   ============================================ */
.price-trend-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.price-trend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.price-trend-chart {
  position: relative;
  height: 120px;
}
.trend-chart-svg {
  width: 100%;
  height: 100%;
}
.price-trend-footer {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.trend-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trend-stat-label { font-size: 0.75rem; color: var(--text-muted); }
.trend-stat-value { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.trend-up { color: #ef4444; }
.trend-down { color: var(--forest-green); }

/* ============================================
   COMPARE
   ============================================ */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-dark);
  color: white;
  padding: 14px 0;
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.compare-bar.active { transform: translateY(0); }
.compare-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.compare-items { display: flex; gap: 12px; }
.compare-item {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-remove {
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.compare-remove:hover { color: white; }

/* ============================================
   ALERTS
   ============================================ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-info { background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.3); color: var(--sky-blue-dark); }
.alert-success { background: rgba(22,101,52,0.08); border: 1px solid rgba(22,101,52,0.25); color: var(--forest-green); }
.alert-warning { background: rgba(234,179,8,0.1); border: 1px solid rgba(234,179,8,0.3); color: #854d0e; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
}
.page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition);
  font-weight: 500;
}
.page-link:hover, .page-link.active {
  background: var(--forest-green);
  color: white;
  border-color: var(--forest-green);
}
.page-link.disabled { opacity: 0.4; pointer-events: none; }

/* ============================================
   CART / CHECKOUT
   ============================================ */
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-brand { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { font-weight: 700; color: var(--forest-green); font-size: 1rem; }
.order-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.order-summary h3 { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
}
.summary-row.total .amount { color: var(--forest-green); font-size: 1.2rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 4rem;
  line-height: 1;
  color: var(--border);
  font-family: Georgia, serif;
}
.testimonial-stars { margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; }
.author-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; }
.value-item { display: flex; gap: 14px; margin-bottom: 18px; }
.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(22,101,52,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  flex-shrink: 0;
}
.value-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-green { color: var(--forest-green); }
.text-sky { color: var(--sky-blue-dark); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.gap-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.sticky-top { position: sticky; top: 80px; }
.divider-line { height: 1px; background: var(--border); margin: 32px 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--light-gray);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  transition: var(--transition);
}
.tag:hover { background: var(--forest-green); color: white; border-color: var(--forest-green); }
.grid-2 { display: grid; grid-template-columns: 1fr 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; }
.rounded { border-radius: var(--radius-md); }
.overflow-hidden { overflow: hidden; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--forest-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 400;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--forest-green-dark); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  background: white;
  width: 300px;
  height: 100%;
  overflow-y: auto;
  padding: 20px 0;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mobile-close { font-size: 1.5rem; color: var(--text-primary); cursor: pointer; }
.mobile-nav-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--forest-green); background: var(--light-gray); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .category-layout { grid-template-columns: 240px 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cart-grid { grid-template-columns: 1fr 300px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-images { position: static; }
  .guide-card { flex-direction: column; }
  .guide-card-img { width: 100%; height: 220px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 360px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-search { display: none; }
  .header-top { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .hero { height: 460px; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.7rem; }
  .newsletter-form { flex-direction: column; }
  .header-actions { gap: 6px; }
}
