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

/* ===== CSS VARIABLES ===== */
:root {
  --white: #FFFFFF;
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-light: #FEF2F2;
  --charcoal: #1F2937;
  --charcoal-light: #374151;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF6FF;
  --silver: #CBD5E1;
  --silver-dark: #94A3B8;
  --light-gray: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --success: #16A34A;
  --warning: #D97706;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.07), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-gray { color: var(--gray-500); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.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-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.grid { display: grid; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
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.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
p { line-height: 1.75; color: var(--gray-600); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
  transform: translateY(-1px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.825rem; }
.btn-xs { padding: 6px 14px; font-size: 0.775rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--gray-100), 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: var(--charcoal); }
.logo-text span { color: var(--red); }

.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 48px 10px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--light-gray);
  transition: var(--transition);
  outline: none;
}
.header-search input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.header-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.header-search-btn:hover { color: var(--red); }
.header-search-btn svg { width: 18px; height: 18px; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}
.header-action-btn:hover { background: var(--light-gray); color: var(--red); }
.header-action-btn svg { width: 20px; height: 20px; }
.header-action-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-cart {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px !important;
}
.btn-cart:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.btn-cart .badge { background: var(--white); color: var(--red); }

/* ===== NAVIGATION ===== */
.nav {
  background: var(--charcoal);
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link svg { width: 14px; height: 14px; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  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 20px;
  font-size: 0.875rem;
  color: var(--charcoal-light);
  transition: var(--transition);
  font-weight: 500;
}
.dropdown-link:hover { color: var(--red); background: var(--light-gray); }
.dropdown-link svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--light-gray);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-400); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--charcoal); font-weight: 500; }

/* ===== HERO ===== */
.hero {
  background: var(--charcoal);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31,41,55,0.95) 0%, rgba(31,41,55,0.75) 50%, rgba(31,41,55,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero-kicker span { color: var(--red); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: auto;
  padding-left: 60px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  min-width: 180px;
  text-align: center;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 24px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.trust-item:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--red); }
.trust-title { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); }
.trust-desc { font-size: 0.775rem; color: var(--gray-400); margin-top: 2px; }

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--red);
}
.category-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
}
.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-card-icon {
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.category-card-icon svg { width: 18px; height: 18px; color: var(--red); }
.category-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.category-card p { font-size: 0.825rem; color: var(--gray-400); line-height: 1.5; margin: 0; }
.category-card-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.category-card-count span { font-size: 0.78rem; font-weight: 600; color: var(--gray-500); }
.category-card-arrow { color: var(--red); font-size: 1.1rem; }

/* ===== PRODUCT CARD ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--silver);
}
.product-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-new { background: var(--blue); color: white; }
.badge-promo { background: var(--red); color: white; }
.badge-top { background: var(--charcoal); color: white; }
.badge-sale { background: var(--warning); color: white; }

.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.product-card-wishlist:hover { background: var(--red-light); border-color: var(--red); }
.product-card-wishlist svg { width: 16px; height: 16px; color: var(--gray-400); }
.product-card-wishlist:hover svg { color: var(--red); }

.product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.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-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 6px; }
.product-name { font-size: 0.925rem; font-weight: 700; color: var(--charcoal); line-height: 1.35; margin-bottom: 8px; }
.product-name a { color: inherit; transition: var(--transition); }
.product-name a:hover { color: var(--red); }

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.product-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.product-spec-item svg { width: 12px; height: 12px; color: var(--blue); flex-shrink: 0; }

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { display: flex; gap: 2px; }
.star { font-size: 0.78rem; color: var(--gray-300); }
.star.filled { color: #F59E0B; }
.rating-count { font-size: 0.78rem; color: var(--gray-400); }

.product-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}
.price-current { font-size: 1.3rem; font-weight: 800; color: var(--charcoal); font-family: var(--font-heading); }
.price-old { font-size: 0.875rem; color: var(--gray-400); text-decoration: line-through; }
.price-discount { font-size: 0.78rem; font-weight: 700; color: var(--success); background: #DCFCE7; padding: 2px 8px; border-radius: 20px; }

.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; font-size: 0.825rem; padding: 10px 14px; }

/* ===== SIDEBAR LAYOUT ===== */
.sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-widget-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-widget-body { padding: 16px 20px; }

.filter-group { margin-bottom: 16px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-label { font-size: 0.78rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.filter-option:hover { color: var(--red); }
.filter-option input[type="checkbox"] { accent-color: var(--red); width: 15px; height: 15px; }
.filter-option-count { margin-left: auto; font-size: 0.72rem; color: var(--gray-400); }

.price-range { padding: 8px 0; }
.price-range-inputs { display: flex; gap: 8px; margin-top: 10px; }
.price-input {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--charcoal);
  outline: none;
}
.price-input:focus { border-color: var(--blue); }

/* ===== CATEGORY HERO ===== */
.cat-hero {
  background: var(--charcoal);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cat-hero-bg {
  position: absolute;
  inset: 0;
}
.cat-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cat-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(31,41,55,0.96) 0%, rgba(31,41,55,0.8) 100%); }
.cat-hero-content { position: relative; z-index: 2; }
.cat-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.75rem); }
.cat-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 12px; max-width: 560px; }

/* ===== COMPARISON TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem; }
.compare-table th { background: var(--charcoal); color: white; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; }
.compare-table th:first-child { width: 220px; }
.compare-table tr:hover td { background: var(--light-gray); }
.compare-table td:first-child { font-weight: 600; color: var(--charcoal); background: var(--gray-100); }
.compare-check { color: var(--success); }
.compare-cross { color: var(--red); }
.compare-table .product-col-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.compare-table .product-col-price { font-weight: 800; color: var(--red); font-size: 1.05rem; }

/* ===== ARTICLE / BLOG ===== */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.article-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-body { padding: 22px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 20px;
}
.article-date { font-size: 0.78rem; color: var(--gray-400); }
.article-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); line-height: 1.35; margin-bottom: 10px; }
.article-title a { color: inherit; transition: var(--transition); }
.article-title a:hover { color: var(--red); }
.article-excerpt { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.article-read-more { font-size: 0.85rem; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.article-read-more:hover { color: var(--red); gap: 8px; }

/* ===== FEATURES SECTION ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); transform: translateY(-2px); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--blue); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--charcoal); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-block { text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); font-family: var(--font-heading); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-unit { color: var(--red); }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
}
.newsletter-inner { display: flex; align-items: center; gap: 60px; }
.newsletter-content { flex: 1; }
.newsletter-content h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.newsletter-content p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.newsletter-form { flex: 1; display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  background: white;
  color: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--light-gray); transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer { background: var(--gray-800); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.5); }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: var(--red); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.footer-col-title { font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

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

.product-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.product-info .product-sku { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 16px; }
.product-info .product-rating { margin-bottom: 16px; }
.product-short-desc { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.product-price-section { margin-bottom: 28px; }
.product-price-main { font-size: 2.25rem; font-weight: 900; color: var(--charcoal); font-family: var(--font-heading); }
.product-price-vat { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }

.product-options { margin-bottom: 24px; }
.option-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal); margin-bottom: 10px; }
.option-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.option-chip {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--charcoal);
}
.option-chip:hover, .option-chip.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

.product-buy-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.product-buy-actions .btn { flex: 1; padding: 15px 20px; font-size: 0.95rem; }

.product-guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.guarantee-item { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--light-gray); border-radius: var(--radius-md); }
.guarantee-item svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }
.guarantee-item span { font-size: 0.78rem; font-weight: 600; color: var(--charcoal); }

/* ===== PRODUCT TABS ===== */
.product-tabs { margin-top: 60px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 32px; gap: 0; }
.tab-btn {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--light-gray); }
.specs-table td { padding: 12px 16px; font-size: 0.875rem; border-bottom: 1px solid var(--gray-100); }
.specs-table td:first-child { font-weight: 600; color: var(--charcoal); width: 40%; }
.specs-table td:last-child { color: var(--gray-600); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question.open { background: var(--charcoal); color: white; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 400px; padding: 20px 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.contact-info-icon { width: 48px; height: 48px; background: var(--red-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.contact-info-icon svg { width: 24px; height: 24px; color: var(--red); }
.contact-info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--gray-500); }
.contact-info-card a { transition: var(--transition); }
.contact-info-card a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--light-gray);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 3px; accent-color: var(--red); width: 16px; height: 16px; }
.form-check label { font-size: 0.825rem; color: var(--gray-500); line-height: 1.5; }
.form-check a { color: var(--blue); text-decoration: underline; }
.form-success {
  display: none;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--success);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success.show { display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ===== POLICY PAGES ===== */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.policy-nav { position: sticky; top: 90px; }
.policy-nav-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 12px; }
.policy-nav-links { display: flex; flex-direction: column; gap: 4px; }
.policy-nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: var(--transition);
  display: block;
}
.policy-nav-link:hover, .policy-nav-link.active { background: var(--red-light); color: var(--red); font-weight: 600; }

.policy-content { max-width: 800px; }
.policy-content h1 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 8px; }
.policy-updated { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 36px; display: flex; align-items: center; gap: 6px; }
.policy-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-100); }
.policy-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal-light); margin: 24px 0 10px; }
.policy-content p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 14px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 6px; }
.policy-content a { color: var(--blue); text-decoration: underline; }
.policy-content a:hover { color: var(--red); }
.policy-content .info-box { background: var(--blue-light); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 24px 0; }
.policy-content .info-box p { color: var(--blue-dark); margin: 0; }
.policy-content .warn-box { background: #FEF3C7; border-left: 4px solid var(--warning); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 24px 0; }
.policy-content .warn-box p { color: #92400E; margin: 0; }
.policy-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.875rem; }
.policy-content th { background: var(--charcoal); color: white; padding: 12px 16px; text-align: left; font-weight: 600; }
.policy-content td { padding: 11px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.policy-content tr:nth-child(even) td { background: var(--light-gray); }

/* ===== ABOUT PAGE ===== */
.about-hero { background: var(--light-gray); padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  text-align: center;
  padding: 28px 20px;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; background: var(--gray-200); border: 3px solid var(--white); box-shadow: var(--shadow-md); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--red); font-weight: 600; }

/* ===== CART / ORDER ===== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px 16px; background: var(--charcoal); color: white; font-size: 0.8rem; font-weight: 700; text-align: left; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-img { width: 72px; height: 72px; border-radius: var(--radius-md); overflow: hidden; background: var(--light-gray); flex-shrink: 0; }
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 30px; height: 30px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; color: var(--charcoal); transition: var(--transition); background: var(--white); }
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-input { width: 44px; text-align: center; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 4px; font-size: 0.9rem; font-weight: 600; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--charcoal-light);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); border-color: var(--red); color: white; }
.page-btn.disabled { opacity: 0.4; cursor: not-allowed; }

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

/* ===== SEARCH SUGGESTIONS ===== */
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  z-index: 200;
  display: none;
}
.header-search:focus-within .search-suggestions { display: block; }
.suggestion-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 0.875rem; color: var(--charcoal-light); cursor: pointer; transition: var(--transition); }
.suggestion-item:hover { background: var(--light-gray); color: var(--red); }
.suggestion-item svg { width: 14px; height: 14px; color: var(--gray-400); flex-shrink: 0; }

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

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { display: none; }
}

@media (max-width: 1024px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .policy-nav-links { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .topbar { display: none; }
  .header-search { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .hero { min-height: 480px; }
  .section { padding: 56px 0; }
  .header-inner { flex-wrap: wrap; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .product-guarantees { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ===== BREADCRUMB BAR (standalone) ===== */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  background: transparent;
  border: none;
  padding: 0;
}
.breadcrumb a { color: var(--gray-400); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.bc-sep { color: var(--gray-300); }
.breadcrumb span:last-child { color: var(--charcoal); font-weight: 500; }

/* ===== PAGE HERO SMALL ===== */
.page-hero-sm {
  background: var(--charcoal);
  padding: 52px 0;
  position: relative;
}
.page-hero-sm h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 10px; }
.page-hero-sm p { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 560px; }
.page-hero-sm em { color: var(--red); font-style: normal; }

/* ===== POLICY PAGES (alternate layout) ===== */
.page-hero--policy {
  background: var(--charcoal);
  padding: 48px 0;
}
.page-hero--policy h1 { color: white; font-size: clamp(1.6rem, 3.5vw, 2.25rem); margin-bottom: 8px; }
.page-hero--policy p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.page-hero--policy .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero--policy .breadcrumb span:last-child { color: rgba(255,255,255,0.85); }
.page-hero--policy .breadcrumb { margin-bottom: 16px; }

.policy-main { padding: 64px 0; }
.policy-toc {
  background: var(--light-gray);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.policy-toc h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 16px; }
.policy-toc ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.policy-toc a { font-size: 0.85rem; color: var(--gray-600); display: block; padding: 7px 12px; border-radius: var(--radius-sm); transition: var(--transition); }
.policy-toc a:hover { color: var(--red); background: var(--red-light); }

.policy-content section { margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.policy-content section:last-child { border-bottom: none; margin-bottom: 0; }
.policy-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.policy-content h2::before { content: ''; display: block; width: 4px; height: 22px; background: var(--red); border-radius: 2px; flex-shrink: 0; }
.policy-content h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal-light); margin: 20px 0 10px; }
.policy-content p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 14px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 8px; }
.policy-content a { color: var(--blue); text-decoration: underline; }
.policy-content a:hover { color: var(--red); }
.policy-content code { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-size: 0.82rem; font-family: monospace; color: var(--charcoal); }

.policy-notice {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.policy-notice--info { background: var(--blue-light); border-left: 4px solid var(--blue); color: #1E3A5F; }
.policy-notice--warning { background: #FEF3C7; border-left: 4px solid #D97706; color: #78350F; }

.policy-table-wrap { overflow-x: auto; margin: 16px 0 24px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.policy-table { width: 100%; border-collapse: collapse; }
.policy-table th { background: var(--charcoal); color: white; padding: 12px 16px; font-size: 0.82rem; font-weight: 700; text-align: left; white-space: nowrap; }
.policy-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem; color: var(--gray-600); vertical-align: top; }
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:nth-child(even) td { background: var(--light-gray); }
.policy-table strong { color: var(--charcoal); }

.policy-info-box {
  background: var(--light-gray);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-info-box p { margin: 0; font-size: 0.875rem; color: var(--gray-600); }
.policy-info-box a { color: var(--blue); }

.policy-contact-box {
  background: var(--charcoal);
  color: white;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}
.policy-contact-box p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin-bottom: 6px; }
.policy-contact-box p:first-child { color: white; font-weight: 700; margin-bottom: 12px; }

.policy-section { margin-bottom: 48px; }

@media (max-width: 1024px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; display: flex; flex-direction: column; }
  .policy-toc ul { flex-direction: row; flex-wrap: wrap; }
}

/* ===== PRODUCT CARD (alternate class names) ===== */
.product-card-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }

.product-card-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 5px; }
.product-card-name { font-size: 0.925rem; font-weight: 700; color: var(--charcoal); line-height: 1.35; margin-bottom: 8px; }
.product-card-name a { color: inherit; transition: var(--transition); }
.product-card-name a:hover { color: var(--red); }
.product-card-specs { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.product-card-specs span { font-size: 0.78rem; color: var(--gray-500); }
.product-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.product-card-price { display: flex; align-items: flex-end; gap: 8px; margin-top: auto; margin-bottom: 14px; }
.btn-block { display: flex; width: 100%; }

/* ===== COMPARE BAR ===== */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: white;
  padding: 16px 24px;
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 3px solid var(--blue);
}
.compare-bar-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.compare-bar-text strong { color: white; }

/* ===== FILTER CHIPS ===== */
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-light);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.filter-chip:hover, .filter-chip.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* ===== LIVRARE PAGE ===== */
.livrare-highlight {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.livrare-highlight:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.livrare-highlight h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.livrare-highlight p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* ===== CONTENT + SIDEBAR LAYOUT ===== */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.content-main { min-width: 0; }
.content-block { margin-bottom: 48px; }
.content-block h2 { font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }
.content-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin: 24px 0 10px; }
.content-block p { font-size: 0.925rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.content-list { list-style: none; padding: 0; }
.content-list li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; font-size: 0.9rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.content-list li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.content-sidebar { position: sticky; top: 90px; }
.sidebar-widget-title { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); }
.sidebar-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-size: 0.875rem; color: var(--gray-600); transition: var(--transition); }
.sidebar-links a:hover { color: var(--red); }

/* ===== TABLE RESPONSIVE ===== */
.table-responsive { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }

/* ===== INFO CARD ===== */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-lg); }
.info-card-icon { margin-bottom: 16px; }
.info-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.info-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ===== PROMO HERO ===== */
.promo-hero-section { padding: 60px 0; background: var(--charcoal); }
.promo-hero-inner { display: flex; align-items: center; gap: 60px; }
.promo-hero-text { flex: 1; }
.promo-hero-text h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.75rem); margin-bottom: 14px; }
.promo-hero-text .hero-desc { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 28px; }
.promo-hero-img { flex: 1; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 16/9; }
.promo-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-timer-block { display: flex; align-items: center; gap: 12px; }
.promo-timer-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.promo-timer { font-size: 1.75rem; font-weight: 800; color: var(--red); font-family: var(--font-heading); font-variant-numeric: tabular-nums; letter-spacing: 0.08em; }

@media (max-width: 1024px) {
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .promo-hero-inner { flex-direction: column; gap: 32px; }
  .promo-hero-img { width: 100%; }
}

/* ===== SECTION HEAD ===== */
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--charcoal); margin: 8px 0 12px; }
.section-head p { font-size: 1rem; color: var(--gray-500); max-width: 560px; }

/* ===== AUTH PAGES ===== */
.auth-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--light-gray);
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-card h1 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-card .auth-sub { text-align: center; font-size: 0.9rem; color: var(--gray-500); margin-bottom: 32px; }
.auth-divider { text-align: center; position: relative; margin: 24px 0; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 28px); height: 1px; background: var(--gray-200); }
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-divider span { font-size: 0.8rem; color: var(--gray-400); background: white; padding: 0 10px; }
.auth-footer-link { text-align: center; font-size: 0.875rem; color: var(--gray-500); margin-top: 24px; }
.auth-footer-link a { color: var(--blue); font-weight: 600; }
.auth-footer-link a:hover { color: var(--red); }

/* ===== CART PAGE ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.9rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; color: var(--charcoal); padding: 16px 0; border-top: 2px solid var(--gray-200); margin-top: 8px; }

@media (max-width: 1024px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-form-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.checkout-form-section h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.checkout-form-section h3 svg { color: var(--red); }
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--charcoal);
}
.payment-method:hover { border-color: var(--blue); }
.payment-method.active { border-color: var(--blue); background: var(--blue-light); }
.order-success {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  display: none;
}
.order-success.show { display: block; }
.order-success svg { margin: 0 auto 20px; display: block; }
.order-success h2 { color: var(--success); margin-bottom: 12px; }
.order-success p { color: var(--gray-600); max-width: 460px; margin: 0 auto 24px; }

@media (max-width: 1024px) {
  .checkout-layout { grid-template-columns: 1fr; }
}

/* ===== SEARCH PAGE ===== */
.search-bar-large input:focus { outline: none; }
.empty-search svg { display: block; }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.sitemap-group h3 { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }
.sitemap-group ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sitemap-group a { font-size: 0.875rem; color: var(--gray-600); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.sitemap-group a::before { content: '→'; color: var(--red); font-size: 0.8rem; }
.sitemap-group a:hover { color: var(--red); padding-left: 4px; }

/* ===== SECTION LABEL (alt) ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ===== PRODUCT PAGE MISC ===== */
.btn-add-cart:active { transform: scale(0.97); }
.compare-checkbox { accent-color: var(--blue); width: 16px; height: 16px; }

/* ===== ABOUT PAGE EXTRA ===== */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.value-card-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ===== GHID (guide) PAGES ===== */
.guide-step { display: flex; gap: 24px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--gray-100); }
.guide-step:last-child { border-bottom: none; }
.guide-step-num { min-width: 48px; height: 48px; background: var(--red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.guide-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.guide-step p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ===== ZONE CARD ===== */
.zone-card h3, .zone-card strong { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.zone-card p { font-size: 0.82rem; color: var(--gray-500); margin-top: 6px; line-height: 1.5; }
