/* ============================================================
   ORVESSA — Premium Outdoor Technology Marketplace
   Main Stylesheet
   ============================================================ */

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

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --green:       #166534;
  --green-light: #22C55E;
  --green-dark:  #0F4924;
  --sky:         #38BDF8;
  --sky-dark:    #0EA5E9;
  --slate:       #334155;
  --slate-light: #64748B;
  --sand:        #EAD7B7;
  --sand-dark:   #D4B896;
  --gray:        #F8FAFC;
  --gray-mid:    #E2E8F0;
  --gray-dark:   #CBD5E1;
  --text-main:   #1E293B;
  --text-muted:  #64748B;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --transition:  0.25s ease;
  --font-head:   'Sora', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text-main);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--text-muted); }

/* ── Container ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }
.container--wide   { max-width: 1440px; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.header-top a { color: var(--sand); transition: color var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 16px; }
.header-top-left span, .header-top-right span { display: flex; align-items: center; gap: 6px; }

.header-main { padding: 14px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--sky-dark); }

.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: var(--gray);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.header-search input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
  background: var(--white);
}
.header-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--slate-light);
  display: flex;
  align-items: center;
}
.header-search button:hover { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  transition: all var(--transition);
  position: relative;
  font-size: 0.75rem;
  font-weight: 600;
}
.btn-icon:hover { border-color: var(--green); color: var(--green); background: var(--gray); }
.btn-icon .badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav-bar {
  border-top: 1px solid var(--gray-mid);
  background: var(--white);
}
.nav-bar .container { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--gray); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 500;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  font-size: 0.85rem;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--gray); color: var(--green); }
.nav-dropdown a svg { width: 16px; height: 16px; color: var(--sky-dark); flex-shrink: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--slate);
}
.hamburger svg { width: 24px; height: 24px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--sky {
  background: var(--sky);
  color: var(--white);
}
.btn--sky:hover { background: var(--sky-dark); }
.btn--ghost {
  background: transparent;
  border-color: var(--gray-mid);
  color: var(--slate);
}
.btn--ghost:hover { border-color: var(--slate); background: var(--gray); }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-mid);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--gray-dark); }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb li:last-child { color: var(--text-main); font-weight: 500; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(22,101,52,0.82) 0%, rgba(51,65,85,0.55) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--white);
  padding: 60px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section--gray { background: var(--gray); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--slate); }
.section--green { background: var(--green); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .tag {
  display: inline-block;
  background: rgba(22,101,52,0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 600px; margin: 0 auto; }
.section-header--left { text-align: left; }
.section-header--left p { margin-left: 0; }

/* ── Cards ────────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-dark); }

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray);
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-card__actions { opacity: 1; }
.product-card__action-btn {
  width: 34px; height: 34px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.product-card__action-btn:hover { background: var(--green); color: var(--white); }

.product-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card__brand { font-size: 0.75rem; font-weight: 600; color: var(--sky-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.product-card__title { font-size: 0.95rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.spec-tag {
  font-size: 0.72rem;
  background: var(--gray);
  color: var(--slate-light);
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
}
.product-card__price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.product-card__price small { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.product-card__footer { padding: 0 16px 16px; }

/* ── Category Card ────────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  display: flex;
  align-items: flex-end;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,101,52,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.category-card__content {
  position: relative; z-index: 2;
  padding: 20px;
  color: var(--white);
  width: 100%;
}
.category-card__content h3 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.category-card__content p { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.category-card__arrow {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 10px;
  transition: background var(--transition);
}
.category-card:hover .category-card__arrow { background: var(--sky); }

/* ── Blog Card ────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card__cat { background: rgba(22,101,52,0.1); color: var(--green); padding: 2px 10px; border-radius: 20px; font-weight: 600; }
.blog-card__title { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card__link { color: var(--green); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.blog-card__link:hover { color: var(--green-dark); }

/* ── Comparison Table ─────────────────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  background: var(--green);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--text-main);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray); }
.comparison-table tr:hover td { background: rgba(56,189,248,0.06); }
.comparison-table td:first-child { font-weight: 600; color: var(--slate); }
.check-yes { color: var(--green-light); font-size: 1.1rem; }
.check-no  { color: #EF4444; font-size: 1.1rem; }

/* ── Spec Table ───────────────────────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.spec-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-mid); }
.spec-table td:first-child { font-weight: 600; color: var(--slate); width: 40%; background: var(--gray); }
.spec-table tr:last-child td { border-bottom: none; }

/* ── Rating ───────────────────────────────────────────────── */
.rating { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; }
.stars { color: #F59E0B; letter-spacing: 2px; }
.rating-count { color: var(--text-muted); font-size: 0.8rem; }

/* ── Filter Sidebar ───────────────────────────────────────── */
.category-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filter-sidebar { position: sticky; top: 80px; }
.filter-panel {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.filter-panel__head {
  padding: 14px 16px;
  background: var(--gray);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-panel__head svg { width: 16px; height: 16px; color: var(--slate-light); transition: transform var(--transition); }
.filter-panel.open .filter-panel__head svg { transform: rotate(180deg); }
.filter-panel__body { padding: 14px 16px; display: none; }
.filter-panel.open .filter-panel__body { display: block; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; font-size: 0.85rem; color: var(--slate); }
.filter-option input[type="checkbox"] { accent-color: var(--green); width: 15px; height: 15px; }
.filter-option:hover { color: var(--green); }
.price-range { display: flex; gap: 8px; margin-top: 8px; }
.price-range input { width: 100%; padding: 7px 10px; border: 1.5px solid var(--gray-mid); border-radius: var(--radius-sm); font-size: 0.82rem; }
.price-range input:focus { outline: none; border-color: var(--sky); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; align-items: center; padding: 32px 0; flex-wrap: wrap; }
.page-item {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-mid);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: all var(--transition);
}
.page-item:hover, .page-item.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── Stats ────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* ── Info Box ─────────────────────────────────────────────── */
.info-box {
  background: var(--gray);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.info-box--sky { border-left-color: var(--sky-dark); }
.info-box--sand { border-left-color: var(--sand-dark); background: rgba(234,215,183,0.25); }
.info-box p { color: var(--text-main); font-size: 0.9rem; }

/* ── Feature List ─────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(22,101,52,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-text h4 { margin-bottom: 2px; font-size: 0.95rem; }
.feature-text p { font-size: 0.85rem; }

/* ── Guide Card ───────────────────────────────────────────── */
.guide-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: all var(--transition);
}
.guide-card:hover { box-shadow: var(--shadow-lg); border-color: var(--sky); }
.guide-card__img { width: 180px; flex-shrink: 0; overflow: hidden; }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; }
.guide-card__body { padding: 20px; flex: 1; }
.guide-card__tag { font-size: 0.75rem; font-weight: 700; color: var(--sky-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.guide-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.guide-card__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(22,101,52,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-text h4 { margin-bottom: 2px; font-size: 0.95rem; }
.contact-text p, .contact-text a { font-size: 0.9rem; color: var(--text-muted); }
.contact-text a:hover { color: var(--green); }

.contact-form { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-main); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--gray);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.success-message {
  background: #DCFCE7;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.success-message.show { display: flex; }

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter-section {
  background: var(--green);
  padding: 48px 0;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-inner h2, .newsletter-inner p { color: var(--white); }
.newsletter-inner p { opacity: 0.85; margin-top: 6px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  padding: 11px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  min-width: 280px;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.25); }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
}
.trust-items { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--slate); font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; color: var(--green); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.75);
  padding-top: 56px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; }
.footer-brand .logo span { color: var(--sky); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social:hover { background: var(--green); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Policy Pages ─────────────────────────────────────────── */
.policy-hero {
  background: var(--green);
  padding: 48px 0;
  text-align: center;
}
.policy-hero h1 { color: var(--white); }
.policy-hero p { color: rgba(255,255,255,0.8); margin-top: 10px; }
.policy-content { padding: 48px 0; }
.policy-content h2 { font-size: 1.35rem; color: var(--green); margin: 32px 0 12px; }
.policy-content h3 { font-size: 1.1rem; color: var(--slate); margin: 24px 0 8px; }
.policy-content p { color: var(--text-main); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul, .policy-content ol { margin: 12px 0 14px 20px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { color: var(--text-main); margin-bottom: 8px; line-height: 1.7; font-size: 0.95rem; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.policy-content table th { background: var(--green); color: var(--white); padding: 10px 14px; text-align: left; }
.policy-content table td { padding: 9px 14px; border-bottom: 1px solid var(--gray-mid); }
.policy-content table tr:nth-child(even) td { background: var(--gray); }
.policy-meta { background: var(--gray); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 28px; font-size: 0.875rem; color: var(--text-muted); display: flex; gap: 24px; flex-wrap: wrap; }
.policy-meta strong { color: var(--text-main); }
.policy-toc {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.policy-toc h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.policy-toc ol { list-style: decimal; margin-left: 16px; }
.policy-toc li { font-size: 0.875rem; margin-bottom: 6px; }
.policy-toc a { color: var(--green); }
.policy-toc a:hover { text-decoration: underline; }

/* ── Cart ─────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-item { display: flex; gap: 16px; padding: 16px; border-bottom: 1px solid var(--gray-mid); align-items: center; }
.cart-item__img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; background: var(--gray); flex-shrink: 0; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.cart-item__meta { font-size: 0.8rem; color: var(--text-muted); }
.cart-item__price { font-weight: 700; color: var(--green); font-size: 1.05rem; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1.5px solid var(--gray-mid); border-radius: 4px; background: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--green); color: var(--green); }
.cart-summary { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 24px; position: sticky; top: 80px; }
.cart-summary h3 { margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid var(--gray-mid); }
.summary-row:last-of-type { border-bottom: none; font-weight: 700; font-size: 1rem; }

/* ── Product Detail ───────────────────────────────────────── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery__main { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px; background: var(--gray); }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; }
.thumb {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--gray-mid);
  cursor: pointer;
  transition: border-color var(--transition);
}
.thumb:hover, .thumb.active { border-color: var(--green); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info__brand { font-size: 0.8rem; font-weight: 700; color: var(--sky-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.product-info__title { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.product-info__price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--green); margin: 16px 0; }
.product-info__price .old-price { font-size: 1.1rem; font-weight: 400; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; background: #DCFCE7; color: var(--green); }
.stock-badge--out { background: #FEE2E2; color: #DC2626; }
.product-options { margin: 20px 0; }
.product-options label { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; display: block; }
.add-to-cart { display: flex; gap: 12px; margin-top: 24px; }
.add-to-cart .btn { flex: 1; }

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs { border-bottom: 2px solid var(--gray-mid); margin-bottom: 32px; display: flex; gap: 0; }
.tab {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab.active, .tab:hover { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Map Embed ────────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  margin-top: 32px;
}
.map-wrapper iframe { display: block; width: 100%; height: 350px; }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--sky); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Breadcrumb row ───────────────────────────────────────── */
.breadcrumb-wrap { background: var(--gray); border-bottom: 1px solid var(--gray-mid); }

/* ── Search ───────────────────────────────────────────────── */
.search-header { background: var(--gray); padding: 32px 0; border-bottom: 1px solid var(--gray-mid); }
.search-bar-big { display: flex; gap: 12px; max-width: 640px; }
.search-bar-big input { flex: 1; padding: 13px 18px; border: 2px solid var(--gray-mid); border-radius: var(--radius-sm); font-size: 1rem; outline: none; }
.search-bar-big input:focus { border-color: var(--sky); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .category-layout { grid-template-columns: 220px 1fr; }
}
@media (max-width: 900px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .guide-card { flex-direction: column; }
  .guide-card__img { width: 100%; height: 200px; }
  .header-search { display: none; }
  .nav-bar { display: none; }
  .hamburger { display: flex; }
  .nav-bar.open { display: block; }
  .nav-bar.open .container { flex-direction: column; align-items: stretch; }
  .nav-item { border-bottom: 1px solid var(--gray-mid); }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray); border-radius: 0; display: none; }
  .nav-item.open .nav-dropdown { display: block; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { min-width: 0; }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 0; }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; }
  .header-top { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
