/* ===========================================
   Orvella - Premium Outdoor Technology Marketplace
   Main Stylesheet
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&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: #0284c7;
  --slate: #334155;
  --slate-light: #475569;
  --slate-lighter: #64748b;
  --sand: #EAD7B7;
  --sand-light: #f5edd8;
  --sand-dark: #d4bb90;
  --light-gray: #F8FAFC;
  --border-color: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- 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(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
p { color: var(--text-secondary); line-height: 1.7; }

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

/* ---- Flex utilities ---- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm { gap: 8px; }
.flex-gap { gap: 16px; }
.flex-gap-lg { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }
.align-start { align-items: flex-start; }
.col { flex-direction: column; }

/* ==========================================
   NAVIGATION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--forest-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--white); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest-green);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-link:hover { color: var(--forest-green); background: #f0fdf4; }
.nav-link.active { color: var(--forest-green); }
.nav-link svg { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 560px;
  padding: 24px;
  display: none;
  z-index: 100;
}
.nav-item:hover .mega-menu { display: block; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--slate);
}
.mega-item:hover { background: #f0fdf4; color: var(--forest-green); }
.mega-icon {
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-icon svg { width: 16px; height: 16px; fill: var(--slate-lighter); }
.mega-item:hover .mega-icon { background: #dcfce7; }
.mega-item:hover .mega-icon svg { fill: var(--forest-green); }
.mega-item-name { font-weight: 600; display: block; }
.mega-item-sub { font-size: 0.75rem; color: var(--text-muted); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-action-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  color: var(--slate);
  transition: var(--transition);
  position: relative;
}
.header-action-btn:hover { border-color: var(--forest-green); color: var(--forest-green); background: #f0fdf4; }
.header-action-btn svg { width: 18px; height: 18px; }
.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--forest-green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-cta {
  background: var(--forest-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--forest-green-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22,101,52,0.25); }
.btn-cta svg { width: 16px; height: 16px; fill: var(--white); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition);
}

/* Top bar */
.top-bar {
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--white); }
.top-bar-links { display: flex; gap: 20px; }

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.825rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--forest-green); }
.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--text-secondary); font-weight: 500; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  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-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,101,52,0.82) 0%, rgba(22,101,52,0.55) 50%, rgba(22,101,52,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 620px;
  padding: 60px 0;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-balance: balance;
}
.hero-title span { color: var(--sand); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--white);
  color: var(--forest-green);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 10px;
  display: block;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--text-secondary); max-width: 580px; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.view-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.view-all-link:hover { color: var(--forest-green-light); }
.view-all-link svg { width: 16px; height: 16px; transition: var(--transition); }
.view-all-link:hover svg { transform: translateX(3px); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}
.btn-primary { background: var(--forest-green); color: var(--white); }
.btn-primary:hover { background: var(--forest-green-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(22,101,52,0.3); }
.btn-secondary { background: var(--white); color: var(--forest-green); border: 1.5px solid var(--forest-green); }
.btn-secondary:hover { background: #f0fdf4; transform: translateY(-1px); }
.btn-sky { background: var(--sky-blue); color: var(--white); }
.btn-sky:hover { background: var(--sky-blue-dark); transform: translateY(-1px); }
.btn-slate { background: var(--slate); color: var(--white); }
.btn-slate:hover { background: var(--slate-light); }
.btn-sand { background: var(--sand); color: var(--slate); }
.btn-sand:hover { background: var(--sand-dark); }
.btn-ghost { background: transparent; color: var(--slate); border: 1px solid var(--border-color); }
.btn-ghost:hover { border-color: var(--slate); background: var(--light-gray); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-full { width: 100%; }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.category-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-gray);
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.05); }
.category-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.category-card-icon {
  width: 40px;
  height: 40px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.category-card-icon svg { width: 20px; height: 20px; fill: var(--forest-green); }
.category-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.category-card-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; flex: 1; }
.category-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.product-count { color: var(--text-muted); font-weight: 500; }
.cat-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-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-action-btn {
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--forest-green); border-color: var(--forest-green); }
.product-action-btn:hover svg { fill: var(--white); }
.product-action-btn svg { width: 15px; height: 15px; fill: var(--slate-lighter); }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.75rem; font-weight: 600; color: var(--forest-green); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.product-title a:hover { color: var(--forest-green); }
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.spec-tag {
  background: var(--light-gray);
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}
.stars { color: #f59e0b; letter-spacing: 1px; }
.rating-count { color: var(--text-muted); }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--forest-green);
}
.product-price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.add-cart-btn {
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.add-cart-btn:hover { background: var(--forest-green-light); transform: translateY(-1px); }
.add-cart-btn svg { width: 14px; height: 14px; fill: var(--white); }

/* ==========================================
   STATS / FEATURES STRIP
   ========================================== */
.stats-strip {
  background: var(--forest-green);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-unit { font-size: 1.2rem; color: var(--sand); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ==========================================
   BLOG CARDS
   ========================================== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%;
  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 ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-tag {
  background: #dcfce7;
  color: var(--forest-green);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.72rem;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
  flex: 1;
  color: var(--text-primary);
}
.blog-card-title a:hover { color: var(--forest-green); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.6; }
.blog-read-more {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.blog-read-more:hover { color: var(--forest-green-light); }
.blog-read-more svg { width: 14px; height: 14px; transition: var(--transition); }
.blog-read-more:hover svg { transform: translateX(3px); }

/* ==========================================
   GUIDE CARDS
   ========================================== */
.guide-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  gap: 20px;
}
.guide-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky-blue-light); transform: translateY(-2px); }
.guide-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-icon-wrap svg { width: 24px; height: 24px; fill: var(--sky-blue-dark); }
.guide-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.guide-title a:hover { color: var(--sky-blue-dark); }
.guide-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; }
.guide-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.guide-tag-item {
  background: var(--light-gray);
  color: var(--text-secondary);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}
.comparison-table { min-width: 700px; }
.comparison-table th {
  background: var(--light-gray);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate-lighter);
  border-bottom: 1px solid var(--border-color);
}
.comparison-table th.col-product { min-width: 200px; }
.comparison-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #f8fffe; }
.comparison-table td:first-child { font-weight: 600; color: var(--text-primary); }
.check-yes { color: #16a34a; font-size: 1.1rem; }
.check-no { color: #dc2626; font-size: 1.1rem; }
.score-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.score-fill {
  flex: 1;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  max-width: 100px;
}
.score-fill-inner {
  height: 100%;
  background: var(--forest-green);
  border-radius: 3px;
}
.score-num { font-size: 0.8rem; font-weight: 600; color: var(--forest-green); min-width: 28px; }

/* ==========================================
   FILTER SIDEBAR
   ========================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.filter-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-clear-btn {
  font-size: 0.78rem;
  color: var(--forest-green);
  cursor: pointer;
  font-weight: 500;
  background: none;
  border: none;
}
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.filter-group-title svg { width: 14px; height: 14px; fill: var(--text-muted); transition: var(--transition); }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--forest-green);
  cursor: pointer;
}
.filter-option:hover { color: var(--forest-green); }
.filter-count { color: var(--text-muted); font-size: 0.78rem; margin-left: auto; }
.price-range-inputs { display: flex; gap: 10px; align-items: center; }
.price-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-primary);
  background: var(--light-gray);
  width: 100%;
}
.price-input:focus { outline: none; border-color: var(--forest-green); background: var(--white); }

/* Catalog Header */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.catalog-result-count { font-size: 0.875rem; color: var(--text-muted); }
.catalog-result-count strong { color: var(--text-primary); }
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--forest-green); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover { background: var(--forest-green); border-color: var(--forest-green); }
.view-btn svg { width: 15px; height: 15px; fill: var(--text-muted); }
.view-btn.active svg, .view-btn:hover svg { fill: var(--white); }

/* Category Hero */
.cat-hero {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
  padding: 56px 0;
  color: var(--white);
}
.cat-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.cat-hero-title { color: var(--white); margin-bottom: 14px; }
.cat-hero-desc { color: rgba(255,255,255,0.8); max-width: 560px; font-size: 1rem; }
.cat-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.cat-stat-item { text-align: left; }
.cat-stat-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--sand); }
.cat-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs {
  display: flex;
  gap: 10px;
}
.product-thumb {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--forest-green); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 12px; }
.product-detail-brand { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; }
.product-detail-brand span { color: var(--forest-green); }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest-green);
  margin-bottom: 8px;
}
.product-detail-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 24px; }
.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.spec-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 14px;
}
.spec-item-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.spec-item-value { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.product-cart-section { display: flex; gap: 12px; margin-bottom: 24px; align-items: center; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 48px;
  border: none;
  background: var(--light-gray);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--border-color); }
.qty-input {
  width: 48px;
  height: 48px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.btn-add-cart-lg {
  flex: 1;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-add-cart-lg:hover { background: var(--forest-green-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,101,52,0.3); }
.btn-add-cart-lg svg { width: 18px; height: 18px; fill: var(--white); }
.btn-wishlist-lg {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.btn-wishlist-lg:hover { border-color: #ef4444; background: #fef2f2; }
.btn-wishlist-lg svg { width: 20px; height: 20px; fill: var(--text-muted); }
.btn-wishlist-lg:hover svg { fill: #ef4444; }

/* Product tabs */
.product-tabs { margin-top: 64px; }
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 36px;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--forest-green); border-bottom-color: var(--forest-green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Full Spec Table */
.spec-table th, .spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-color); font-size: 0.875rem; text-align: left; }
.spec-table th { font-weight: 600; color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; width: 35%; background: var(--light-gray); }
.spec-table td { color: var(--text-secondary); }
.spec-table tbody tr:last-child td, .spec-table tbody tr:last-child th { border-bottom: none; }

/* ==========================================
   INFO BOXES / CALLOUTS
   ========================================== */
.callout-box {
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.callout-info { background: #e0f2fe; border-left: 4px solid var(--sky-blue-dark); }
.callout-success { background: #dcfce7; border-left: 4px solid var(--forest-green); }
.callout-warning { background: #fef9c3; border-left: 4px solid #ca8a04; }
.callout-neutral { background: var(--light-gray); border-left: 4px solid var(--border-color); }
.callout-icon { flex-shrink: 0; margin-top: 2px; }
.callout-icon svg { width: 20px; height: 20px; }
.callout-info .callout-icon svg { fill: var(--sky-blue-dark); }
.callout-success .callout-icon svg { fill: var(--forest-green); }
.callout-warning .callout-icon svg { fill: #ca8a04; }
.callout-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: var(--text-primary); }
.callout-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ==========================================
   FEATURES / WHY US
   ========================================== */
.feature-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--white);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-green { background: #dcfce7; }
.feature-icon-blue { background: #e0f2fe; }
.feature-icon-sand { background: #fdf6ec; }
.feature-icon-slate { background: #f1f5f9; }
.feature-icon svg { width: 26px; height: 26px; }
.feature-icon-green svg { fill: var(--forest-green); }
.feature-icon-blue svg { fill: var(--sky-blue-dark); }
.feature-icon-sand svg { fill: #92400e; }
.feature-icon-slate svg { fill: var(--slate); }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
  padding: 72px 0;
}
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter-eyebrow { color: var(--sand); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.newsletter-title { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 14px; }
.newsletter-desc { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input:focus { outline: none; background: rgba(255,255,255,0.22); }
.newsletter-btn {
  background: var(--white);
  color: var(--forest-green);
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--sand); transform: translateY(-1px); }

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: #dcfce7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--forest-green); }
.contact-info-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--text-primary); }
.contact-info-value a:hover { color: var(--forest-green); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 7px; }
.form-label .required { color: #ef4444; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; }
.form-success-msg {
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--forest-green-dark);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success-msg.show { display: flex; }
.form-success-msg svg { width: 20px; height: 20px; fill: var(--forest-green); flex-shrink: 0; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--forest-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark svg { width: 18px; height: 18px; fill: var(--white); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 0.82rem; }
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--forest-green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--white); }

/* ==========================================
   POLICY PAGES
   ========================================== */
.policy-hero {
  background: linear-gradient(135deg, #1e293b 0%, var(--slate) 100%);
  padding: 56px 0;
  color: var(--white);
}
.policy-hero-title { color: var(--white); margin-bottom: 10px; }
.policy-hero-meta { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.policy-sidebar {
  position: sticky;
  top: 90px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
}
.policy-nav-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 14px; }
.policy-nav-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}
.policy-nav-link:hover, .policy-nav-link.active { background: var(--white); color: var(--forest-green); border-left-color: var(--forest-green); }
.policy-content h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 14px; padding-top: 36px; border-top: 1px solid var(--border-color); }
.policy-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-content h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 10px; color: var(--slate); }
.policy-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { padding-left: 20px; margin-bottom: 14px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }
.policy-content strong { color: var(--text-primary); }
.policy-content table { margin-bottom: 20px; }
.policy-content table th { background: var(--light-gray); padding: 10px 14px; font-size: 0.82rem; text-align: left; font-weight: 700; color: var(--slate); border: 1px solid var(--border-color); }
.policy-content table td { padding: 10px 14px; font-size: 0.85rem; color: var(--text-secondary); border: 1px solid var(--border-color); }
.policy-info-box {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.policy-info-box p { margin-bottom: 6px; }
.policy-info-box p:last-child { margin-bottom: 0; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.value-card {
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--forest-green); }
.value-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--sand-dark); opacity: 0.6; line-height: 1; margin-bottom: 12px; }
.value-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 0.875rem; color: var(--text-secondary); }

/* ==========================================
   MISC UTILITIES
   ========================================== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag-green { background: #dcfce7; color: var(--forest-green); }
.tag-blue { background: #e0f2fe; color: var(--sky-blue-dark); }
.tag-sand { background: #fdf6ec; color: #92400e; }
.tag-slate { background: #f1f5f9; color: var(--slate); }
.divider { height: 1px; background: var(--border-color); margin: 40px 0; }
.text-green { color: var(--forest-green); }
.text-slate { color: var(--slate); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.bg-light { background: var(--light-gray); }
.bg-sand { background: var(--sand-light); }
.bg-green { background: var(--forest-green); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.rounded { border-radius: var(--radius-md); }
.overflow-hidden { overflow: hidden; }

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  background: var(--white);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--forest-green); border-color: var(--forest-green); color: var(--white); }
.page-btn.dots { cursor: default; }
.page-btn.dots:hover { background: var(--white); border-color: var(--border-color); color: var(--text-secondary); }

/* Price history chart placeholder */
.price-chart-area {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 220px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  overflow: hidden;
}
.price-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.price-bar {
  width: 100%;
  background: var(--forest-green);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
  min-height: 20px;
  opacity: 0.75;
}
.price-bar:hover { opacity: 1; }
.price-bar-month { font-size: 0.65rem; color: var(--text-muted); }

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
}
.scroll-top-btn.show { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--forest-green-light); transform: translateY(-2px); }
.scroll-top-btn svg { width: 18px; height: 18px; fill: var(--white); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate);
  color: var(--white);
  padding: 20px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 280px; }
.cookie-text a { color: var(--sky-blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--forest-green-light); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  overflow-y: auto;
  transition: left 0.3s ease;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { left: 0; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--light-gray);
}
.mobile-nav-close svg { width: 16px; height: 16px; fill: var(--slate); }
.mobile-nav-section { margin-bottom: 24px; }
.mobile-nav-section-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 10px; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 500;
  transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: #f0fdf4; color: var(--forest-green); }
.mobile-nav-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================
   CART DRAWER
   ========================================== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cart-close:hover { background: #fee2e2; border-color: #fca5a5; }
.cart-close svg { width: 14px; height: 14px; fill: var(--slate); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--text-muted);
  gap: 12px;
}
.cart-empty svg { width: 48px; height: 48px; fill: var(--border-color); }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-color); }
.cart-item-img { width: 64px; height: 64px; border-radius: 8px; background: var(--light-gray); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--forest-green); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border-color); }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 1rem; font-weight: 700; }
.cart-total-amount { color: var(--forest-green); font-size: 1.2rem; }

/* ==========================================
   COMPARISON BAR
   ========================================== */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--forest-green);
  padding: 14px 0;
  display: none;
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.compare-bar.show { display: block; }
.compare-bar-inner { display: flex; align-items: center; gap: 20px; }
.compare-items { display: flex; gap: 14px; flex: 1; }
.compare-item-slot {
  width: 120px;
  height: 48px;
  border: 1.5px dashed var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.compare-item-slot.filled { border-style: solid; border-color: var(--forest-green); background: #f0fdf4; font-size: 0.78rem; color: var(--text-primary); font-weight: 600; padding: 0 10px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .catalog-layout { grid-template-columns: 240px 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .footer-grid > .footer-brand { max-width: 480px; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); border-right: none; padding: 20px 24px; }
  .stats-grid { gap: 0; row-gap: 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { min-height: 480px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .header-inner { height: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-hero-stats { flex-wrap: wrap; gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
  .top-bar-links { display: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .product-specs-grid { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100%; }
  .page-btn { width: 36px; height: 36px; font-size: 0.8rem; }
}
