@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;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #D1FAE5;
  --sky: #0EA5E9;
  --sky-dark: #0284C7;
  --sky-light: #E0F2FE;
  --slate: #334155;
  --slate-light: #64748B;
  --slate-dark: #1E293B;
  --beige: #F5E6D3;
  --light: #F8FAFC;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-heading: 'Sora', 'Inter', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* aliases */
  --light-gray: var(--gray-100, #F8FAFC);
}

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

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--slate-dark); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { color: var(--slate-light); line-height: 1.75; }

/* ===========================
   UTILITIES
=========================== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-emerald { color: var(--emerald); }
.text-sky { color: var(--sky); }
.bg-light { background: var(--light); }
.bg-beige { background: var(--beige); }
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-emerald { background: var(--emerald-light); color: var(--emerald-dark); }
.badge-sky { background: var(--sky-light); color: var(--sky-dark); }
.badge-slate { background: var(--border); color: var(--slate); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 4px; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; }
.gap-4 { gap: 16px; } .gap-5 { gap: 20px; } .gap-6 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.btn-primary:hover { background: var(--emerald-dark); box-shadow: 0 6px 20px rgba(16,185,129,0.4); transform: translateY(-1px); }
.btn-sky {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
}
.btn-sky:hover { background: var(--sky-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald); background: var(--emerald-light); }
.btn-outline-emerald {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}
.btn-outline-emerald:hover { background: var(--emerald); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: var(--radius-sm); }

/* ===========================
   TOP BAR
=========================== */
.topbar {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 9px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-contacts { display: flex; gap: 24px; align-items: center; }
.topbar-contacts a { color: rgba(255,255,255,0.75); }
.topbar-contacts a:hover { color: var(--emerald); }
.topbar-contact-item { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.75); }
.topbar-right a:hover { color: var(--emerald); }

/* ===========================
   HEADER
=========================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: white; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--slate-dark); }
.logo-text span { color: var(--emerald); }
.logo-sub { font-size: 0.65rem; color: var(--slate-light); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-top: -4px; }

.search-bar {
  flex: 1;
  max-width: 540px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--light);
  transition: var(--transition);
}
.search-bar input:focus { border-color: var(--emerald); background: var(--white); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }
.search-bar input::placeholder { color: #94A3B8; }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
}
.search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--emerald);
  color: white;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn:hover { background: var(--emerald-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--slate);
  text-decoration: none;
}
.header-action-btn:hover { background: var(--light); color: var(--emerald); }
.header-action-btn svg { width: 22px; height: 22px; }
.header-action-btn span { font-size: 0.7rem; font-weight: 500; }
.action-count {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--emerald);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   NAVIGATION
=========================== */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--emerald); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.nav-link svg { width: 14px; height: 14px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 999;
  padding: 8px 0;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--slate);
  transition: var(--transition);
}
.dropdown-link:hover { background: var(--light); color: var(--emerald); padding-left: 22px; }
.dropdown-link svg { width: 16px; height: 16px; color: var(--slate-light); }

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
}
.breadcrumb-item { display: flex; align-items: center; gap: 6px; }
.breadcrumb-item a { color: var(--slate-light); }
.breadcrumb-item a:hover { color: var(--emerald); }
.breadcrumb-item.active { color: var(--slate); font-weight: 500; }
.breadcrumb-sep { color: #CBD5E1; font-size: 0.7rem; }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate-dark);
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em { color: var(--emerald); font-style: normal; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--emerald); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===========================
   SECTION HEADER
=========================== */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--slate-light); font-size: 1.05rem; max-width: 580px; }
.section-header.center .section-desc { margin: 0 auto; }
.section-more { margin-top: 12px; }
.section-more a { color: var(--sky); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; }
.section-more a:hover { color: var(--sky-dark); gap: 8px; }

/* ===========================
   PRODUCT CARD
=========================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(16,185,129,0.2);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-action {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--slate);
}
.product-card-action:hover { background: var(--emerald); color: white; }
.product-card-action svg { width: 16px; height: 16px; }

.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--sky); margin-bottom: 5px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 8px; line-height: 1.35; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--emerald); }
.product-specs-mini { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.spec-tag { font-size: 0.72rem; background: var(--light); border: 1px solid var(--border); border-radius: 4px; padding: 2px 8px; color: var(--slate-light); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { display: flex; gap: 2px; }
.star { color: #F59E0B; font-size: 0.8rem; }
.star.empty { color: #CBD5E1; }
.rating-count { font-size: 0.8rem; color: var(--slate-light); }
.product-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-light); }
.product-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--slate-dark); }
.product-price-old { font-size: 0.85rem; text-decoration: line-through; color: #94A3B8; display: block; }
.product-price-sub { font-size: 0.72rem; color: var(--slate-light); }
.product-add-btn {
  width: 38px;
  height: 38px;
  background: var(--emerald);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.product-add-btn:hover { background: var(--emerald-dark); transform: scale(1.08); }
.product-add-btn svg { width: 18px; height: 18px; }

/* ===========================
   CATEGORY CARD
=========================== */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: var(--slate-dark);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.category-card:hover img { transform: scale(1.06); opacity: 0.45; }
.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 60%);
}
.category-card-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 4px; }
.category-card-count { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.category-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: rotate(-45deg);
  transition: var(--transition);
}
.category-card:hover .category-card-arrow { opacity: 1; transform: rotate(0); background: var(--emerald); }
.category-card-arrow svg { width: 14px; height: 14px; color: white; }

/* ===========================
   SIDEBAR
=========================== */
.page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--light);
}
.widget-title { font-size: 0.9rem; font-weight: 700; color: var(--slate-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.widget-body { padding: 16px 20px; }
.widget-toggle { color: var(--slate-light); font-size: 0.8rem; cursor: pointer; }

.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group-title { font-size: 0.82rem; font-weight: 600; color: var(--slate); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
  transition: var(--transition);
}
.filter-option:hover { color: var(--emerald); }
.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--emerald);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-option-label { font-size: 0.87rem; color: var(--slate); }
.filter-option-count { margin-left: auto; font-size: 0.75rem; color: var(--slate-light); background: var(--light); padding: 1px 7px; border-radius: 10px; }

.price-range { margin-top: 6px; }
.price-range input[type="range"] { width: 100%; accent-color: var(--emerald); margin: 8px 0; }
.price-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--slate-light); }

.sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--slate);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.sidebar-cats a:hover, .sidebar-cats a.active {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border-left-color: var(--emerald);
}
.sidebar-cats a span { font-size: 0.75rem; color: var(--slate-light); background: var(--light); padding: 1px 8px; border-radius: 10px; }

/* ===========================
   COMPARISON TABLE
=========================== */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.compare-table th { background: var(--slate-dark); color: white; padding: 14px 18px; font-size: 0.85rem; font-weight: 600; text-align: left; }
.compare-table td { padding: 13px 18px; font-size: 0.875rem; color: var(--slate); border-bottom: 1px solid var(--border-light); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light); }
.compare-table .spec-name { font-weight: 600; color: var(--slate-dark); width: 200px; }
.compare-val-good { color: var(--emerald-dark); font-weight: 600; }
.compare-val-bad { color: #EF4444; }
.compare-val-neutral { color: var(--slate-light); }

/* ===========================
   SPEC TABLE
=========================== */
.spec-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 12px 0; font-size: 0.875rem; }
.spec-table td:first-child { color: var(--slate-light); width: 45%; }
.spec-table td:last-child { font-weight: 600; color: var(--slate-dark); }

/* ===========================
   BLOG CARD
=========================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.blog-card-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--emerald); }
.blog-card-date { font-size: 0.78rem; color: var(--slate-light); }
.blog-card-title { font-size: 1.1rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--emerald); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--slate-light); line-height: 1.7; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.blog-card-author { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--slate-light); }
.blog-read-more { font-size: 0.82rem; font-weight: 600; color: var(--sky); display: inline-flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--sky-dark); gap: 7px; }

/* ===========================
   FEATURES STRIP
=========================== */
.features-strip { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon.emerald { background: var(--emerald-light); color: var(--emerald); }
.feature-icon.sky { background: var(--sky-light); color: var(--sky); }
.feature-icon.beige { background: var(--beige); color: var(--slate); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-size: 0.9rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 2px; }
.feature-desc { font-size: 0.78rem; color: var(--slate-light); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter {
  background: var(--slate-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 10px; }
.newsletter-desc { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--emerald); background: rgba(255,255,255,0.12); }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--slate-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin: 14px 0 20px; color: rgba(255,255,255,0.55); }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--emerald); }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--emerald); }
.footer-col-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--emerald); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--emerald); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--emerald); }

/* ===========================
   FORM ELEMENTS
=========================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 7px; }
.form-label.required::after { content: ' *'; color: #EF4444; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }
.form-control::placeholder { color: #94A3B8; }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.form-success {
  display: none;
  background: var(--emerald-light);
  border: 1px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-top: 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2rem; margin-bottom: 8px; color: var(--emerald); }
.form-success h4 { color: var(--emerald-dark); margin-bottom: 4px; }
.form-success p { color: var(--emerald-dark); font-size: 0.9rem; margin: 0; }

/* ===========================
   CART
=========================== */
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { border-radius: var(--radius-sm); overflow: hidden; width: 90px; height: 70px; background: var(--light); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 700; font-size: 0.95rem; color: var(--slate-dark); margin-bottom: 4px; }
.cart-item-variant { font-size: 0.8rem; color: var(--slate-light); }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--slate); background: var(--light); }
.qty-btn:hover { border-color: var(--emerald); color: var(--emerald); }
.qty-val { font-weight: 700; font-size: 0.9rem; width: 28px; text-align: center; }
.cart-item-price { text-align: right; }
.cart-item-total { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--slate-dark); }
.cart-item-remove { font-size: 0.78rem; color: #EF4444; cursor: pointer; margin-top: 4px; display: block; }

.order-summary {
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
}
.order-summary-title { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: var(--slate-dark); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.875rem; }
.summary-row .label { color: var(--slate-light); }
.summary-row .value { font-weight: 600; color: var(--slate-dark); }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.summary-total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--slate-dark); }

/* ===========================
   PRODUCT DETAIL
=========================== */
.product-gallery { display: grid; grid-template-rows: 1fr auto; gap: 12px; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; background: var(--light); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 80px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--light);
  transition: var(--transition);
  flex-shrink: 0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--emerald); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-info { }
.product-detail-title { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px; }
.product-detail-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.product-detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-dark);
}
.product-detail-price .old { font-size: 1.1rem; text-decoration: line-through; color: #94A3B8; margin-left: 10px; vertical-align: middle; }
.product-detail-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-dark);
}
.availability::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }

.tabs { border-bottom: 1px solid var(--border); margin-bottom: 28px; display: flex; gap: 0; }
.tab-btn {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--emerald); border-bottom-color: var(--emerald); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--slate-dark);
  border-top: 3px solid var(--emerald);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-text { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.6; }
.cookie-text a { color: var(--emerald); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===========================
   MISC
=========================== */
.page-title-section {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 32px;
}
.page-title { margin-bottom: 8px; }
.page-subtitle { font-size: 1.05rem; color: var(--slate-light); max-width: 600px; }

.empty-state { text-align: center; padding: 64px 24px; }
.empty-state svg { width: 64px; height: 64px; color: #CBD5E1; margin: 0 auto 16px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--slate-light); margin-bottom: 24px; }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.alert-info { background: var(--sky-light); color: var(--sky-dark); border: 1px solid rgba(14,165,233,0.2); }
.alert-success { background: var(--emerald-light); color: var(--emerald-dark); border: 1px solid rgba(16,185,129,0.2); }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.divider { border: none; border-top: 1px solid var(--border-light); margin: 32px 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; padding: 5px 13px; background: var(--light); border: 1px solid var(--border); border-radius: 100px; font-size: 0.78rem; color: var(--slate); transition: var(--transition); }
.tag:hover { background: var(--emerald-light); border-color: var(--emerald); color: var(--emerald-dark); }

.info-box { background: var(--beige); border-radius: var(--radius-md); padding: 22px 24px; margin: 24px 0; }
.info-box-title { font-weight: 700; font-size: 0.95rem; color: var(--slate-dark); margin-bottom: 8px; }
.info-box p { font-size: 0.875rem; margin: 0; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; color: var(--slate); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--emerald); border-color: var(--emerald); color: white; }
.page-btn svg { width: 16px; height: 16px; }

.sticky-bar {
  position: sticky;
  top: 68px;
  background: white;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.rating-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rating-label { font-size: 0.8rem; width: 35px; text-align: right; color: var(--slate-light); flex-shrink: 0; }
.rating-progress { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: #F59E0B; border-radius: 3px; }
.rating-count-label { font-size: 0.8rem; color: var(--slate-light); width: 25px; flex-shrink: 0; }

.big-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--slate-dark); line-height: 1; }

/* ===========================
   POLICY PAGES
=========================== */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}
.policy-content h2 { font-size: 1.4rem; margin: 36px 0 14px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.policy-content h2:first-child { border-top: none; margin-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--slate); }
.policy-content p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { margin: 12px 0 20px 24px; }
.policy-content ul li, .policy-content ol li { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 7px; list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-content strong { color: var(--slate-dark); }
.policy-content a { color: var(--sky); text-decoration: underline; }
.policy-content a:hover { color: var(--sky-dark); }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.875rem; }
.policy-content table th { background: var(--light); padding: 11px 14px; text-align: left; font-weight: 600; color: var(--slate-dark); border: 1px solid var(--border); }
.policy-content table td { padding: 11px 14px; border: 1px solid var(--border); color: var(--slate); }
.policy-content table tr:nth-child(even) td { background: var(--light); }
.policy-update-date { display: inline-flex; align-items: center; gap: 8px; background: var(--beige); border-radius: var(--radius-sm); padding: 8px 16px; font-size: 0.82rem; color: var(--slate); margin-bottom: 28px; }

.toc {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.toc-title { font-size: 0.9rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.toc ol { margin: 0; padding-left: 18px; }
.toc ol li { margin-bottom: 6px; }
.toc ol li a { font-size: 0.875rem; color: var(--sky); }
.toc ol li a:hover { color: var(--sky-dark); }

/* ===========================
   ABOUT PAGE
=========================== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--sky)); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: white; }
.team-name { font-weight: 700; font-size: 1rem; color: var(--slate-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--emerald); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 0.82rem; color: var(--slate-light); line-height: 1.6; }

.value-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px; }
.value-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-icon.e { background: var(--emerald-light); color: var(--emerald); }
.value-icon.s { background: var(--sky-light); color: var(--sky); }
.value-icon.b { background: var(--beige); color: var(--slate); }
.value-icon svg { width: 26px; height: 26px; }
.value-title { font-size: 1.05rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 8px; }
.value-desc { font-size: 0.875rem; color: var(--slate-light); line-height: 1.7; }

/* ===========================
   DELIVERY PAGE
=========================== */
.delivery-step { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border-light); }
.delivery-step:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--emerald); color: white; font-family: var(--font-heading); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 6px; }
.step-content p { font-size: 0.875rem; margin: 0; }

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu-toggle { display: none; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: white;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { display: block; }
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; font-weight: 500; color: var(--slate); }
.mobile-nav-link:hover { background: var(--light); color: var(--emerald); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .page-layout { grid-template-columns: 260px 1fr; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-bar { display: none; }
  .mobile-menu-toggle { display: flex; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 64px 0; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .search-bar { display: none; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-price { grid-column: 2; }
  .hero-title { font-size: 2rem; }
  .header-action-btn span { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-menu-toggle { display: flex; }
}
