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

/* ===== CSS VARIABLES ===== */
:root {
  --white: #FFFFFF;
  --terracotta: #C2410C;
  --terracotta-light: #EA580C;
  --terracotta-dark: #9A3412;
  --beige: #F5E6D3;
  --beige-dark: #E8D0B5;
  --graphite: #374151;
  --graphite-dark: #1F2937;
  --graphite-light: #6B7280;
  --olive: #65A30D;
  --olive-dark: #4D7C0F;
  --light-gray: #F8FAFC;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.25s ease;
}

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

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section-gap { padding: 72px 0; }
.section-gap-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-graphite { color: var(--graphite); }
.text-olive { color: var(--olive); }
.font-display { font-family: var(--font-display); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(194,65,12,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-olive {
  background: var(--olive);
  color: var(--white);
  border: 2px solid var(--olive);
}
.btn-olive:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--beige);
  color: var(--graphite);
  border: 2px solid var(--beige-dark);
}
.btn-ghost:hover {
  background: var(--beige-dark);
  color: var(--graphite-dark);
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--graphite-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--beige); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; color: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 22px; font-weight: 800; color: var(--graphite-dark); letter-spacing: -0.5px; }
.logo-name span { color: var(--terracotta); }
.logo-tagline { font-size: 11px; color: var(--graphite-light); font-weight: 400; }

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.header-search form { display: flex; }
.search-input {
  width: 100%;
  padding: 11px 20px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
  color: var(--graphite);
  background: var(--light-gray);
  transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--terracotta); background: var(--white); }
.search-btn {
  background: var(--terracotta);
  color: white;
  border: 2px solid var(--terracotta);
  border-left: none;
  padding: 11px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--terracotta-dark); }
.search-btn svg { width: 18px; height: 18px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
}
.header-action-btn svg { width: 20px; height: 20px; }
.header-action-btn:hover { background: var(--light-gray); color: var(--terracotta); }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 8px;
  background: var(--terracotta);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== NAVIGATION ===== */
.nav {
  background: var(--graphite-dark);
  position: relative;
}
.nav .container { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--beige); background: rgba(255,255,255,0.08); }
.nav-link svg { width: 14px; height: 14px; }
.nav-promo { background: var(--terracotta); color: white !important; border-radius: 6px; margin: 6px 8px; }
.nav-promo:hover { background: var(--terracotta-dark) !important; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 500;
  border-top: 3px solid var(--terracotta);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  border-bottom: 1px solid var(--light-gray);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--beige); color: var(--terracotta); padding-left: 26px; }
.dropdown-item svg { width: 16px; height: 16px; color: var(--terracotta); flex-shrink: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--graphite-light);
}
.breadcrumb-item a { color: var(--graphite-light); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--terracotta); }
.breadcrumb-item.active { color: var(--graphite); font-weight: 500; }
.breadcrumb-sep { color: var(--border); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31,41,55,0.82) 0%, rgba(31,41,55,0.45) 60%, rgba(31,41,55,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--beige); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ===== SECTION HEADINGS ===== */
.section-heading { margin-bottom: 48px; }
.section-heading.text-center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--graphite-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--graphite-light);
  line-height: 1.65;
  max-width: 600px;
}
.section-heading.text-center .section-subtitle { margin: 0 auto; }

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,41,55,0.85) 0%, rgba(31,41,55,0.15) 60%, transparent 100%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.category-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.category-card-count {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.category-card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--terracotta);
  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.35s 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: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-action-btn {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--graphite);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.product-card-action-btn:hover { background: var(--terracotta); color: white; }
.product-card-action-btn svg { width: 16px; height: 16px; }
.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-new { background: var(--olive); color: white; }
.tag-promo { background: var(--terracotta); color: white; }
.tag-bestseller { background: var(--graphite-dark); color: white; }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--graphite-light); letter-spacing: 0.8px; margin-bottom: 5px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--graphite-dark); line-height: 1.4; margin-bottom: 8px; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--terracotta); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; color: #F59E0B; }
.stars svg { width: 13px; height: 13px; }
.rating-count { font-size: 12px; color: var(--graphite-light); }
.product-specs { margin-bottom: 12px; }
.product-spec-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--graphite-light); margin-bottom: 3px; }
.product-spec-item svg { width: 12px; height: 12px; color: var(--terracotta); flex-shrink: 0; }
.product-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.product-price { display: flex; flex-direction: column; }
.price-current { font-size: 20px; font-weight: 800; color: var(--terracotta); }
.price-old { font-size: 13px; color: var(--graphite-light); text-decoration: line-through; }
.price-economy { font-size: 11px; color: var(--olive); font-weight: 600; }
.product-card-footer { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.product-card-footer .btn { flex: 1; justify-content: center; font-size: 13px; padding: 9px 14px; }

/* ===== FEATURES SECTION ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--terracotta); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--beige);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--terracotta);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--graphite-dark); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--graphite-light); line-height: 1.6; }

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--graphite-dark);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.compare-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--graphite);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light-gray); }
.compare-table tr:hover td { background: var(--beige); }
.compare-best { color: var(--olive); font-weight: 700; }
.compare-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.badge-green { background: #DCFCE7; color: #16A34A; }
.badge-orange { background: #FEF3C7; color: #D97706; }
.badge-red { background: #FEE2E2; color: #DC2626; }

/* ===== LAYOUT WITH SIDEBAR ===== */
.layout-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card-header {
  background: var(--graphite-dark);
  color: white;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card-header svg { width: 16px; height: 16px; color: var(--beige); }
.sidebar-card-body { padding: 16px; }
.filter-group { margin-bottom: 16px; }
.filter-label { font-size: 12px; font-weight: 700; color: var(--graphite); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; }
.filter-options { display: flex; flex-direction: column; gap: 6px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--graphite); cursor: pointer; }
.filter-option input { accent-color: var(--terracotta); width: 15px; height: 15px; cursor: pointer; }
.filter-option:hover { color: var(--terracotta); }
.filter-count { margin-left: auto; font-size: 12px; color: var(--graphite-light); background: var(--light-gray); padding: 1px 7px; border-radius: 10px; }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--graphite);
}
.price-input:focus { outline: none; border-color: var(--terracotta); }
.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--graphite);
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 2px;
}
.sidebar-cat-link:hover, .sidebar-cat-link.active { background: var(--beige); color: var(--terracotta); font-weight: 600; }
.sidebar-cat-link svg { width: 14px; height: 14px; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--terracotta); }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--beige);
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-decoration: none;
}
.blog-card-cat:hover { background: var(--terracotta); color: white; }
.blog-card-title { font-size: 18px; font-weight: 700; color: var(--graphite-dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--terracotta); }
.blog-card-excerpt { font-size: 14px; color: var(--graphite-light); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--graphite-light); padding-top: 16px; border-top: 1px solid var(--border); }
.blog-card-meta svg { width: 13px; height: 13px; }
.blog-card-meta-item { display: flex; align-items: center; gap: 5px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--beige-dark); }
.testimonial-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 14px; }
.testimonial-stars svg { width: 15px; height: 15px; }
.testimonial-text { font-size: 15px; color: var(--graphite); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  overflow: hidden;
  border: 2px solid var(--beige-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--terracotta);
  font-size: 15px;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--graphite-dark); }
.testimonial-role { font-size: 12px; color: var(--graphite-light); }
.testimonial-verified { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--olive); margin-top: 2px; }
.testimonial-verified svg { width: 11px; height: 11px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--graphite-dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.newsletter-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text .section-title { color: var(--white); margin-bottom: 8px; }
.newsletter-text .section-subtitle { color: rgba(255,255,255,0.7); }
.newsletter-form { display: flex; gap: 0; max-width: 420px; width: 100%; }
.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { outline: none; background: rgba(255,255,255,0.18); }
.newsletter-btn {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 13px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--terracotta-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--graphite-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--terracotta); color: white; }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 18px; letter-spacing: 0.3px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--beige); padding-left: 6px; }
.footer-link svg { width: 12px; height: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-link { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition); }
.footer-bottom-link:hover { color: var(--beige); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--graphite-dark) 0%, #2D3748 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.08;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 40%;
  bottom: -80px;
  width: 200px;
  height: 200px;
  background: var(--beige);
  border-radius: 50%;
  opacity: 0.05;
}
.page-header-content { position: relative; z-index: 1; }
.page-header-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--beige); opacity: 0.8; margin-bottom: 8px; }
.page-header-title { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: white; margin-bottom: 10px; line-height: 1.2; }
.page-header-desc { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.65; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--light-gray);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 10px; margin-top: 12px; }
.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  background: var(--light-gray);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--terracotta); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--graphite-dark); line-height: 1.3; margin-bottom: 12px; }
.product-detail-price { font-size: 36px; font-weight: 800; color: var(--terracotta); margin: 16px 0; }
.product-detail-price .price-old { font-size: 18px; color: var(--graphite-light); text-decoration: line-through; margin-left: 10px; }
.product-specs-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.product-specs-table tr { border-bottom: 1px solid var(--border); }
.product-specs-table tr:last-child { border-bottom: none; }
.product-specs-table td { padding: 10px 0; font-size: 14px; }
.product-specs-table td:first-child { color: var(--graphite-light); width: 50%; }
.product-specs-table td:last-child { color: var(--graphite-dark); font-weight: 600; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 38px; height: 46px; background: var(--light-gray); border: none; font-size: 18px; cursor: pointer; color: var(--graphite); transition: background var(--transition); }
.qty-btn:hover { background: var(--beige); color: var(--terracotta); }
.qty-input { width: 50px; height: 46px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 16px; font-weight: 600; color: var(--graphite-dark); }
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 28px; }
.tab-btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite-light);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item-icon { width: 46px; height: 46px; background: var(--beige); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--terracotta); flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--graphite-light); margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--graphite-dark); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--graphite); margin-bottom: 6px; }
.form-label span { color: var(--terracotta); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--graphite-dark);
  background: var(--light-gray);
  transition: all var(--transition);
  font-family: var(--font-main);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--terracotta); background: var(--white); box-shadow: 0 0 0 3px rgba(194,65,12,0.08); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #166534;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: #16A34A; flex-shrink: 0; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--beige); border-radius: var(--radius-lg); padding: 24px; border-left: 4px solid var(--terracotta); }
.value-icon { color: var(--terracotta); margin-bottom: 12px; }
.value-icon svg { width: 28px; height: 28px; }
.value-title { font-size: 15px; font-weight: 700; color: var(--graphite-dark); margin-bottom: 6px; }
.value-desc { font-size: 13px; color: var(--graphite-light); line-height: 1.6; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--beige);
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--terracotta); font-family: var(--font-display); line-height: 1.1; }
.stat-label { font-size: 14px; color: var(--graphite-light); margin-top: 4px; }

/* ===== GUIDE PAGE ===== */
.guide-header-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/7;
}
.guide-header-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-content h2 { font-family: var(--font-display); font-size: 26px; color: var(--graphite-dark); margin: 32px 0 14px; font-weight: 700; border-left: 4px solid var(--terracotta); padding-left: 14px; }
.guide-content h3 { font-size: 19px; color: var(--graphite-dark); margin: 24px 0 10px; font-weight: 700; }
.guide-content p { font-size: 15px; color: var(--graphite); line-height: 1.8; margin-bottom: 16px; }
.guide-content ul, .guide-content ol { margin: 16px 0 16px 20px; }
.guide-content li { font-size: 15px; color: var(--graphite); line-height: 1.75; margin-bottom: 8px; }
.guide-tip {
  background: var(--beige);
  border-left: 4px solid var(--olive);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.guide-tip-title { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; letter-spacing: 0.5px; }
.guide-tip p { margin: 0; font-size: 14px; color: var(--graphite); }

/* ===== CART & ORDER ===== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 14px 16px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--graphite-light); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 18px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 60px; height: 60px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); flex-shrink: 0; background: var(--light-gray); }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-weight: 600; color: var(--graphite-dark); font-size: 14px; }
.cart-product-brand { font-size: 12px; color: var(--graphite-light); }
.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.cart-summary-row:last-child { border-bottom: none; font-size: 18px; font-weight: 800; color: var(--terracotta); }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 860px; }
.policy-content h2 { font-family: var(--font-display); font-size: 24px; color: var(--graphite-dark); margin: 36px 0 14px; font-weight: 700; }
.policy-content h3 { font-size: 18px; color: var(--graphite-dark); margin: 24px 0 10px; font-weight: 700; }
.policy-content p { font-size: 15px; color: var(--graphite); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { margin: 14px 0 14px 24px; }
.policy-content li { font-size: 15px; color: var(--graphite); line-height: 1.75; margin-bottom: 8px; }
.policy-content strong { color: var(--graphite-dark); }
.policy-info-box {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
}
.policy-info-box p { margin: 0; font-size: 14px; }
.policy-last-update { display: inline-flex; align-items: center; gap: 8px; background: var(--light-gray); border: 1px solid var(--border); padding: 8px 16px; border-radius: 20px; font-size: 13px; color: var(--graphite-light); margin-bottom: 32px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite-dark);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 14px; color: rgba(255,255,255,0.85); flex: 1; min-width: 280px; line-height: 1.6; }
.cookie-text a { color: var(--beige); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== PRICE TAG ===== */
.price-trend { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.price-trend-up { background: #FEE2E2; color: #DC2626; }
.price-trend-down { background: #DCFCE7; color: #16A34A; }
.price-trend-neutral { background: var(--light-gray); color: var(--graphite-light); }
.price-trend svg { width: 12px; height: 12px; }

/* ===== ACCORDION ===== */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--graphite-dark);
  transition: color var(--transition);
  user-select: none;
}
.accordion-header:hover { color: var(--terracotta); }
.accordion-icon { width: 20px; height: 20px; color: var(--graphite-light); flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); color: var(--terracotta); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-body-inner { padding: 0 0 20px; font-size: 14px; color: var(--graphite); line-height: 1.75; }

/* ===== BADGE COLLECTION ===== */
.brand-list { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.brand-chip {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--graphite-light);
  transition: all var(--transition);
  text-decoration: none;
}
.brand-chip:hover { border-color: var(--terracotta); color: var(--terracotta); box-shadow: var(--shadow-sm); }

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--graphite-dark); border-radius: 2px; transition: all var(--transition); }
.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 {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-close { background: none; border: none; font-size: 22px; color: var(--graphite); cursor: pointer; }
.mobile-nav-link { display: flex; align-items: center; gap: 10px; padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--graphite-dark); text-decoration: none; border-bottom: 1px solid var(--light-gray); transition: all var(--transition); }
.mobile-nav-link:hover { background: var(--beige); color: var(--terracotta); }
.mobile-nav-link svg { width: 18px; height: 18px; color: var(--terracotta); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 48px; }
.page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--graphite);
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 500;
}
.page-link:hover, .page-link.active { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.page-link.disabled { opacity: 0.4; pointer-events: none; }

/* ===== SORT BAR ===== */
.sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding: 14px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); flex-wrap: wrap; gap: 12px; }
.sort-count { font-size: 14px; color: var(--graphite-light); }
.sort-count strong { color: var(--graphite-dark); }
.sort-controls { display: flex; align-items: center; gap: 12px; }
.sort-select { padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--graphite); background: var(--light-gray); cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--terracotta); }
.view-toggle { display: flex; gap: 4px; }
.view-toggle-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); color: var(--graphite-light); cursor: pointer; background: var(--white); transition: all var(--transition); }
.view-toggle-btn.active, .view-toggle-btn:hover { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.view-toggle-btn svg { width: 15px; height: 15px; }

/* ===== RATING ===== */
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-bar-label { font-size: 13px; color: var(--graphite-light); width: 20px; text-align: right; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #F59E0B; border-radius: 3px; }
.rating-bar-count { font-size: 12px; color: var(--graphite-light); width: 30px; text-align: right; flex-shrink: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 992px) {
  .hero-title { font-size: 38px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-list { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 30px; }
  .hero-content { padding: 56px 0; }
  .hero { min-height: 420px; }
  .hero-stats { gap: 20px; }
  .section-title { font-size: 26px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-right { display: none; }
  .header-search { display: none; }
  .newsletter-content { flex-direction: column; gap: 24px; }
  .newsletter-form { max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { min-width: 600px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header-title { font-size: 28px; }
}
