/* Velmora - Premium Outdoor Technology Marketplace */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Merriweather:wght@300;400;700&display=swap');

/* CSS Variables */
:root {
  --white: #FFFFFF;
  --forest-green: #166534;
  --forest-green-light: #1a7a3d;
  --forest-green-dark: #0f4a25;
  --sky-blue: #38BDF8;
  --sky-blue-light: #7dd3fc;
  --sky-blue-dark: #0ea5e9;
  --slate: #334155;
  --slate-light: #475569;
  --slate-lighter: #64748b;
  --sand: #EAD7B7;
  --sand-light: #f5eddf;
  --sand-dark: #d4b896;
  --light-gray: #F8FAFC;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Merriweather', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s ease;
  --container: 1240px;
}

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

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { line-height: 1.75; color: var(--slate-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-green { color: var(--forest-green); }
.text-blue { color: var(--sky-blue-dark); }
.text-slate { color: var(--slate); }
.text-gray { color: var(--gray-500); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--slate-light); }

/* Spacing */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Grid */
.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.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: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
}
.btn-blue {
  background: var(--sky-blue-dark);
  color: var(--white);
  border-color: var(--sky-blue-dark);
}
.btn-blue:hover {
  background: #0284c7;
  border-color: #0284c7;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--forest-green);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.badge-green { background: #dcfce7; color: var(--forest-green); }
.badge-blue { background: #e0f2fe; color: var(--sky-blue-dark); }
.badge-sand { background: var(--sand-light); color: #92400e; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }
.badge-red { background: #fee2e2; color: #dc2626; }

/* Card */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--gray-200); background: var(--light-gray); }

/* Section styles */
.section-header { margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest-green);
  background: #dcfce7;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title { color: var(--gray-900); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; line-height: 1.7; }

/* Divider */
.divider { height: 1px; background: var(--gray-200); margin: 2rem 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 14px 0;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--forest-green); }
.breadcrumb .sep { color: var(--gray-300); font-size: 0.7rem; }
.breadcrumb .current { color: var(--slate); font-weight: 500; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-top {
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.78rem;
  padding: 7px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.85); }
.header-top a:hover { color: var(--white); }
.header-top-links { display: flex; gap: 20px; align-items: center; }
.header-top-info { display: flex; gap: 20px; align-items: center; }

.header-main { padding: 14px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--forest-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { fill: var(--white); }
.logo-text { line-height: 1; }
.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 11px 20px 11px 46px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: var(--light-gray);
  color: var(--slate);
  outline: none;
  transition: var(--transition);
}
.header-search input:focus {
  border-color: var(--forest-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.08);
}
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.header-search button.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.header-search button.search-btn:hover { background: var(--forest-green-dark); }

.header-actions { display: flex; gap: 6px; align-items: center; }
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}
.header-action-btn:hover { background: var(--light-gray); color: var(--forest-green); }
.header-action-btn .count {
  position: absolute;
  top: 4px;
  right: 8px;
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav */
.main-nav { background: var(--light-gray); border-top: 1px solid var(--gray-200); }
.main-nav .container { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--forest-green); }
.nav-link .arrow { font-size: 0.65rem; margin-top: 1px; transition: var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
  text-decoration: none;
}
.dropdown-item:hover { background: var(--light-gray); color: var(--forest-green); padding-left: 26px; }
.dropdown-divider { height: 1px; background: var(--gray-100); margin: 6px 0; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu-close { font-size: 1.5rem; cursor: pointer; color: var(--slate); background: none; border: none; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--forest-green); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,74,37,0.82) 0%, rgba(51,65,85,0.45) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  color: var(--white);
  padding: 80px 0;
}
.hero-category-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sky-blue-light);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* =========================================================
   CATEGORY CARDS
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cat-card:hover {
  border-color: var(--forest-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--forest-green);
}
.cat-card:hover .cat-card-icon { background: var(--forest-green); }
.cat-card:hover .cat-card-icon svg { fill: var(--white); stroke: var(--white); }
.cat-card-name { font-size: 0.88rem; font-weight: 700; color: var(--gray-800); }
.cat-card-count { font-size: 0.75rem; color: var(--gray-500); }

/* =========================================================
   PRODUCT CARD
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gray-300); }
.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  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.04); }
.product-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; }
.product-card-action-btn {
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--slate);
}
.product-card-action-btn:hover { background: var(--forest-green); color: var(--white); border-color: var(--forest-green); }
.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; color: var(--gray-400); letter-spacing: 0.8px; margin-bottom: 5px; }
.product-name { font-size: 0.93rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.4; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--forest-green); }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars { display: flex; gap: 1px; }
.star { font-size: 0.75rem; color: var(--gray-300); }
.star.filled { color: #f59e0b; }
.rating-count { font-size: 0.75rem; color: var(--gray-500); }
.product-features { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; flex: 1; margin-bottom: 14px; }
.product-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--forest-green);
}
.product-price-old {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 6px;
}
.product-card-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 8px;
}
.product-card-footer .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 9px 10px; }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 0.88rem;
}
.comparison-table th {
  background: var(--forest-green);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--slate);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--light-gray); }
.comparison-table tr:hover td { background: #f0fdf4; }
.comparison-table .check { color: #16a34a; font-size: 1rem; }
.comparison-table .cross { color: #dc2626; font-size: 1rem; }
.comparison-table .product-cell { font-weight: 700; color: var(--gray-900); }

/* =========================================================
   FILTER SIDEBAR
   ========================================================= */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-sidebar {
  position: sticky;
  top: 140px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.filter-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 16px; }
.filter-group { margin-bottom: 24px; }
.filter-group-title { font-size: 0.92rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-100); }
.filter-option { display: flex; align-items: center; gap: 9px; padding: 6px 0; cursor: pointer; }
.filter-option input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--forest-green); cursor: pointer; }
.filter-option label { font-size: 0.85rem; color: var(--slate-light); cursor: pointer; }
.filter-option:hover label { color: var(--forest-green); }
.filter-count { margin-left: auto; font-size: 0.73rem; background: var(--gray-100); color: var(--gray-500); padding: 2px 7px; border-radius: 10px; }
.price-range { margin-top: 8px; }
.price-range input[type=range] { width: 100%; accent-color: var(--forest-green); }
.price-inputs { display: flex; gap: 8px; margin-top: 8px; }
.price-inputs input {
  flex: 1;
  padding: 7px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  width: 100%;
  outline: none;
}
.price-inputs input:focus { border-color: var(--forest-green); }
.filter-apply { width: 100%; padding: 11px; background: var(--forest-green); color: var(--white); border: none; border-radius: var(--radius-md); font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.filter-apply:hover { background: var(--forest-green-dark); }
.filter-clear { width: 100%; padding: 9px; background: transparent; color: var(--gray-500); border: 1px solid var(--gray-200); border-radius: var(--radius-md); font-size: 0.82rem; font-weight: 600; cursor: pointer; margin-top: 8px; }

/* Sort bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}
.sort-bar select {
  padding: 7px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--slate);
  outline: none;
  cursor: pointer;
}
.sort-bar select:focus { border-color: var(--forest-green); }
.result-count { font-size: 0.85rem; color: var(--gray-500); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-gray);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-meta-item { font-size: 0.75rem; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.blog-card-title { font-size: 1.02rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.45; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--forest-green); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; font-weight: 700; color: var(--forest-green); }
.blog-read-more:hover { gap: 8px; }

/* Blog single */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 32px; }
.article-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--gray-900); margin-bottom: 16px; line-height: 1.25; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--gray-500); font-size: 0.83rem; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.article-cover img { width: 100%; height: 420px; object-fit: cover; }
.article-body h2 { font-size: 1.5rem; margin: 32px 0 14px; color: var(--gray-900); }
.article-body h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--gray-900); }
.article-body p { margin-bottom: 18px; color: var(--slate-light); line-height: 1.8; font-size: 1rem; }
.article-body ul, .article-body ol { margin: 16px 0 20px 20px; }
.article-body li { margin-bottom: 8px; color: var(--slate-light); font-size: 0.96rem; line-height: 1.7; }
.article-body strong { color: var(--gray-900); font-weight: 700; }
.article-body blockquote {
  border-left: 4px solid var(--forest-green);
  padding: 16px 24px;
  background: #f0fdf4;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--forest-green-dark);
}
.article-body .info-box {
  background: #e0f2fe;
  border: 1px solid var(--sky-blue-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0;
}
.article-body .info-box strong { color: var(--sky-blue-dark); }

.sidebar-widget { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.sidebar-widget-title { font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-700); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-100); }
.sidebar-tag { display: inline-block; padding: 5px 12px; background: var(--light-gray); border: 1px solid var(--gray-200); border-radius: 20px; font-size: 0.78rem; color: var(--slate-light); margin: 4px; transition: var(--transition); text-decoration: none; }
.sidebar-tag:hover { background: var(--forest-green); color: var(--white); border-color: var(--forest-green); }
.recent-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.recent-post:last-child { border-bottom: none; }
.recent-post img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post-title { font-size: 0.82rem; font-weight: 600; color: var(--gray-900); line-height: 1.4; margin-bottom: 3px; }
.recent-post-title a { color: inherit; text-decoration: none; }
.recent-post-title a:hover { color: var(--forest-green); }
.recent-post-date { font-size: 0.73rem; color: var(--gray-500); }

/* =========================================================
   INFO SECTIONS
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--forest-green); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: #dcfce7;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--forest-green);
  margin-bottom: 16px;
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.feature-text { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-box {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--forest-green); margin-bottom: 4px; }
.stat-label { font-size: 0.82rem; color: var(--gray-500); }

/* Info section with image */
.info-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.info-section.reverse { direction: rtl; }
.info-section.reverse > * { direction: ltr; }
.info-section-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.info-section-img img { width: 100%; height: 400px; object-fit: cover; }
.info-section-text .feature-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.info-section-text .feature-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--slate-light);
}
.feature-list-icon { width: 22px; height: 22px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.feature-list-icon svg { width: 12px; height: 12px; stroke: var(--forest-green); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 50%, #15803d 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Guide / Rehber cards */
.guide-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.guide-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky-blue-dark); }
.guide-card-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.guide-card-content { flex: 1; }
.guide-card-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.guide-card-text { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.product-detail-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 120px; }
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--light-gray);
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 74px;
  height: 74px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--light-gray);
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--forest-green); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.product-info-panel {}
.product-info-brand { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 8px; }
.product-info-title { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; line-height: 1.3; }
.product-info-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.product-info-price { margin-bottom: 22px; }
.product-info-price .price-main { font-size: 2.2rem; font-weight: 800; color: var(--forest-green); }
.product-info-price .price-old { font-size: 1rem; color: var(--gray-400); text-decoration: line-through; margin-left: 8px; }
.product-info-price .price-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 4px; }
.spec-mini { border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; }
.spec-mini-row { display: flex; padding: 10px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.84rem; }
.spec-mini-row:last-child { border-bottom: none; }
.spec-mini-row:nth-child(even) { background: var(--light-gray); }
.spec-mini-label { width: 130px; flex-shrink: 0; color: var(--gray-500); font-weight: 500; }
.spec-mini-value { color: var(--gray-900); font-weight: 600; }
.product-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.product-actions .btn { justify-content: center; width: 100%; }
.product-highlights {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-highlight-item { display: flex; gap: 10px; align-items: center; font-size: 0.83rem; color: var(--slate); }
.product-highlight-icon { color: var(--forest-green); flex-shrink: 0; }
.product-tabs { margin-top: 48px; }
.tab-header { display: flex; border-bottom: 2px solid var(--gray-200); gap: 0; }
.tab-btn {
  padding: 13px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn.active, .tab-btn:hover { color: var(--forest-green); border-bottom-color: var(--forest-green); }
.tab-content { display: none; padding-top: 28px; }
.tab-content.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr td { padding: 11px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.88rem; }
.spec-table tr td:first-child { width: 40%; color: var(--gray-500); font-weight: 500; }
.spec-table tr td:last-child { color: var(--gray-900); font-weight: 600; }
.spec-table tr:nth-child(even) td { background: var(--light-gray); }
.spec-table tr:hover td { background: #f0fdf4; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--forest-green); box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.08); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #dcfce7;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--forest-green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success.show { display: block; }
.contact-info-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 28px; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: #dcfce7;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-400); margin-bottom: 2px; }
.contact-info-value { font-size: 0.9rem; font-weight: 600; color: var(--gray-900); }
.map-frame { width: 100%; height: 280px; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-200); }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* =========================================================
   HAKKIMIZDA
   ========================================================= */
.about-hero {
  position: relative;
  background: var(--forest-green);
  padding: 80px 0;
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: rgba(255,255,255,0.04);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.about-hero-content { position: relative; z-index: 1; max-width: 700px; color: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { text-align: center; padding: 28px 20px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); }
.team-card img { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; object-fit: cover; border: 3px solid var(--sand); }
.team-card-name { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-card-role { font-size: 0.78rem; color: var(--gray-500); }
.value-card { padding: 28px; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); background: var(--white); }
.value-num { font-size: 2.5rem; font-weight: 800; color: #dcfce7; line-height: 1; margin-bottom: 8px; }
.value-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.value-text { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--forest-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-name { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-desc { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 10px; font-size: 0.83rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }
.footer-col-title { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 18px; }
.footer-link {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: var(--transition);
  text-decoration: none;
}
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* =========================================================
   POLICY PAGES
   ========================================================= */
.policy-page {}
.policy-header { background: var(--forest-green); padding: 60px 0 40px; color: var(--white); }
.policy-header h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); }
.policy-header .updated { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 8px; }
.policy-content { max-width: 820px; margin: 48px auto; }
.policy-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin: 36px 0 12px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.policy-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.policy-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin: 22px 0 10px; }
.policy-content p { font-size: 0.92rem; color: var(--slate-light); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { margin: 12px 0 18px 20px; }
.policy-content li { font-size: 0.92rem; color: var(--slate-light); line-height: 1.75; margin-bottom: 7px; }
.policy-content strong { color: var(--gray-900); font-weight: 700; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.88rem; }
.policy-content table th { background: var(--light-gray); padding: 10px 14px; border: 1px solid var(--gray-200); text-align: left; color: var(--gray-700); font-weight: 700; }
.policy-content table td { padding: 10px 14px; border: 1px solid var(--gray-200); color: var(--slate-light); vertical-align: top; }
.policy-content .info-box { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius-md); padding: 16px 20px; margin: 20px 0; }
.policy-content .warning-box { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--radius-md); padding: 16px 20px; margin: 20px 0; }
.policy-toc { background: var(--light-gray); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px 26px; margin-bottom: 36px; }
.policy-toc-title { font-size: 0.88rem; font-weight: 700; color: var(--gray-700); margin-bottom: 12px; }
.policy-toc ol { margin-left: 16px; }
.policy-toc li { margin-bottom: 5px; }
.policy-toc a { font-size: 0.85rem; color: var(--sky-blue-dark); text-decoration: none; }
.policy-toc a:hover { text-decoration: underline; }

/* =========================================================
   CART & ORDER
   ========================================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-item { display: flex; gap: 16px; padding: 20px; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.cart-item-img { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; border: 1px solid var(--gray-200); background: var(--light-gray); }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-name { font-size: 0.92rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.cart-item-brand { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.cart-item-price { font-size: 1.1rem; font-weight: 800; color: var(--forest-green); }
.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn { width: 30px; height: 30px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: var(--slate); transition: var(--transition); background: var(--white); }
.qty-btn:hover { border-color: var(--forest-green); color: var(--forest-green); }
.qty-num { font-size: 0.9rem; font-weight: 700; width: 32px; text-align: center; }
.remove-btn { margin-left: auto; font-size: 0.78rem; color: #dc2626; cursor: pointer; background: none; border: none; }
.order-summary { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 120px; }
.order-summary-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; }
.summary-row.total { font-size: 1.05rem; font-weight: 800; color: var(--gray-900); border-top: 1.5px solid var(--gray-200); margin-top: 10px; padding-top: 14px; }

/* Progress steps */
.order-steps { display: flex; align-items: center; margin-bottom: 36px; }
.order-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.order-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-500);
  transition: var(--transition);
}
.order-step.active .order-step-circle { background: var(--forest-green); color: var(--white); }
.order-step.done .order-step-circle { background: #86efac; color: var(--forest-green-dark); }
.order-step-label { font-size: 0.72rem; font-weight: 600; color: var(--gray-500); text-align: center; }
.order-step.active .order-step-label { color: var(--forest-green); }
.step-line { flex: 1; height: 2px; background: var(--gray-200); margin-bottom: 22px; }
.step-line.done { background: var(--forest-green); }

/* =========================================================
   MISC / UTILITIES
   ========================================================= */
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; background: var(--light-gray); border: 1px solid var(--gray-200); color: var(--slate-light); cursor: pointer; transition: var(--transition); }
.chip:hover, .chip.active { background: var(--forest-green); color: var(--white); border-color: var(--forest-green); }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }
.section-bg-light { background: var(--light-gray); }
.section-bg-sand { background: var(--sand-light); }
.section-bg-dark { background: var(--gray-900); }
.section-bg-green { background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%); }
.rounded { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.shadow-md { box-shadow: var(--shadow-md); }
.border { border: 1.5px solid var(--gray-200); }
.d-none { display: none !important; }
.w-full { width: 100%; }
.justify-end { justify-content: flex-end; }

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 20px 0; }
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--forest-green); color: var(--white); border-color: var(--forest-green); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* Notification bar */
.notify-bar {
  background: var(--sky-blue-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  position: relative;
}
.notify-bar-close { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); cursor: pointer; background: none; border: none; color: var(--white); font-size: 1rem; }

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

/* Cookie banner */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-900);
  color: rgba(255,255,255,0.85);
  padding: 20px;
  z-index: 999;
  display: none;
  border-top: 2px solid var(--forest-green);
}
#cookieBanner.show { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.84rem; line-height: 1.6; }
.cookie-text a { color: var(--sky-blue-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Wishlist icon filled */
.wishlist-active { color: #ef4444 !important; }

/* Compare bar */
.compare-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate);
  color: var(--white);
  padding: 14px 20px;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.compare-bar.show { display: flex; }
.compare-items { display: flex; gap: 12px; flex-wrap: wrap; }
.compare-chip { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; }
.compare-chip-remove { cursor: pointer; opacity: 0.7; }
.compare-chip-remove:hover { opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .catalog-layout { grid-template-columns: 220px 1fr; }
}

@media (max-width: 1024px) {
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .info-section { grid-template-columns: 1fr; gap: 32px; }
  .info-section.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .filter-sidebar.mobile-open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1500; overflow-y: auto; border-radius: 0; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .main-nav { display: none; }
  .header-top { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .cta-section { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.8rem; }
  .hero { min-height: 500px; }
  .hero-content { padding: 60px 0; }
}
