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

/* =============================================
   KERVONA - CORE STYLESHEET
   ============================================= */

:root {
  --white: #FFFFFF;
  --forest: #166534;
  --forest-light: #1a7a3e;
  --forest-dark: #0f4a24;
  --sky: #38BDF8;
  --sky-dark: #0ea5e9;
  --slate: #334155;
  --slate-light: #475569;
  --slate-dark: #1e293b;
  --sand: #EAD7B7;
  --sand-light: #f5eedf;
  --sand-dark: #d4bc95;
  --gray: #F8FAFC;
  --gray-mid: #e2e8f0;
  --gray-dark: #94a3b8;
  --text: #1e293b;
  --text-light: #475569;
  --text-muted: #94a3b8;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --transition: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--slate-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.7; color: var(--text-light); }

.lead { font-size: 1.125rem; line-height: 1.75; }
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-sky { color: var(--sky-dark); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { grid-template-columns: 2fr 1fr; gap: 32px; }
.grid-1-3 { grid-template-columns: 280px 1fr; gap: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; gap: 16px; align-items: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: .925rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--forest); color: var(--white);
  box-shadow: 0 2px 8px rgba(22,101,52,.25);
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,101,52,.35); }

.btn-sky {
  background: var(--sky); color: var(--slate-dark);
  box-shadow: 0 2px 8px rgba(56,189,248,.25);
}
.btn-sky:hover { background: var(--sky-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

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

.btn-sm { padding: 8px 18px; font-size: .825rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-icon { padding: 10px; border-radius: var(--radius); background: var(--gray); color: var(--slate); }
.btn-icon:hover { background: var(--sand); color: var(--forest); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.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(--slate-dark);
  padding: 6px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; }
.header-top a { color: rgba(255,255,255,.7); }
.header-top a:hover { color: var(--white); }

.header-main { padding: 16px 0; }
.header-main .container { display: flex; align-items: center; gap: 32px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--forest); display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--forest); }
.logo-sub { font-size: .65rem; font-weight: 500; color: var(--text-muted); display: block; margin-top: -2px; letter-spacing: .08em; text-transform: uppercase; }

.header-search { flex: 1; max-width: 500px; }
.search-wrap { position: relative; }
.search-wrap input {
  width: 100%; padding: 10px 48px 10px 16px;
  border: 1.5px solid var(--gray-mid); border-radius: var(--radius);
  font-size: .9rem; background: var(--gray); transition: border-color var(--transition);
}
.search-wrap input:focus { outline: none; border-color: var(--sky); background: var(--white); }
.search-wrap button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  padding: 7px 10px; background: var(--forest); color: var(--white); border-radius: 6px;
}
.search-wrap button:hover { background: var(--forest-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 12px; border-radius: var(--radius);
  font-size: .7rem; color: var(--slate-light); font-weight: 500;
  transition: all var(--transition);
}
.header-action-btn svg { width: 20px; height: 20px; }
.header-action-btn:hover { background: var(--gray); color: var(--forest); }
.header-action-btn .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--forest); color: var(--white);
  font-size: .65rem; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.action-relative { position: relative; }

.main-nav { background: var(--gray); border-bottom: 1px solid var(--gray-mid); }
.main-nav .container { display: flex; align-items: center; }
.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px; font-size: .875rem; font-weight: 500;
  color: var(--slate); border-radius: 6px;
  transition: all var(--transition); white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--forest); background: var(--white); }
.main-nav a svg { width: 14px; height: 14px; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: .65rem; margin-left: 4px; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; z-index: 200;
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px; font-size: .875rem;
  color: var(--slate); width: 100%;
}
.dropdown-menu a:hover { background: var(--gray); color: var(--forest); }
.dropdown-menu .cat-icon { font-size: 1.1rem; }

.mobile-menu-btn { display: none; padding: 8px; border-radius: 6px; }
.mobile-menu-btn svg { width: 22px; height: 22px; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  padding: 14px 0;
  background: var(--gray);
  border-bottom: 1px solid var(--gray-mid);
}
.breadcrumb ol {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: .825rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--forest); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-dark); }
.breadcrumb li:last-child { color: var(--text-light); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--slate-dark);
  min-height: 560px; display: flex; align-items: center;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,26,36,.85) 0%, rgba(22,101,52,.4) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.8); max-width: 560px; font-size: 1.1rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 700; color: var(--sky); font-family: 'Inter', sans-serif; }
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.65); }

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

.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 20px; }
.card-title { font-size: 1.05rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.card-text { font-size: .875rem; color: var(--text-light); line-height: 1.65; }
.card-footer { padding: 16px 20px; border-top: 1px solid var(--gray-mid); }

/* Product Card */
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--sand); transform: translateY(-3px); }

.product-img {
  position: relative;
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--gray);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--forest); color: var(--white);
  font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.product-badge.sky { background: var(--sky-dark); }
.product-badge.sand { background: var(--sand-dark); color: var(--slate-dark); }

.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.product-wishlist:hover { background: var(--sand); }
.product-wishlist svg { width: 16px; height: 16px; }

.product-body { padding: 16px; }
.product-brand { font-size: .75rem; font-weight: 600; color: var(--forest); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.product-name { font-size: .95rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 10px; font-family: 'Inter', sans-serif; line-height: 1.4; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.spec-tag { font-size: .7rem; padding: 3px 8px; background: var(--gray); border-radius: 4px; color: var(--text-light); font-weight: 500; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--forest); font-family: 'Inter', sans-serif; }
.product-price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: .8rem; color: var(--text-muted); }
.stars { color: #f59e0b; letter-spacing: -1px; }

.product-footer { padding: 12px 16px; border-top: 1px solid var(--gray-mid); display: flex; gap: 8px; }
.product-footer .btn { font-size: .825rem; padding: 8px 14px; }

/* =============================================
   CATEGORY CARDS
   ============================================= */
.cat-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); overflow: hidden;
  text-align: center; transition: all var(--transition);
  text-decoration: none;
}
.cat-card:hover { border-color: var(--forest); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-card-img { aspect-ratio: 4/3; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-body { padding: 16px; }
.cat-card-name { font-size: .925rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.cat-card-count { font-size: .775rem; color: var(--text-muted); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--forest); margin-bottom: 12px;
  padding: 5px 14px; background: rgba(22,101,52,.08);
  border-radius: 20px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 640px; }
.section-header.center p { margin: 0 auto; }

/* =============================================
   FILTER SIDEBAR
   ============================================= */
.filter-sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); padding: 24px;
  height: fit-content; position: sticky; top: 100px;
}
.filter-title { font-size: 1rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-mid); font-family: 'Inter', sans-serif; }
.filter-group { margin-bottom: 24px; }
.filter-group-title { font-size: .825rem; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--forest); cursor: pointer; }
.filter-option label { font-size: .875rem; color: var(--text-light); cursor: pointer; flex: 1; }
.filter-option .count { font-size: .75rem; color: var(--text-muted); }

.price-range-inputs { display: flex; gap: 10px; align-items: center; }
.price-input { width: 100%; padding: 8px 10px; border: 1.5px solid var(--gray-mid); border-radius: 6px; font-size: .85rem; }
.price-input:focus { outline: none; border-color: var(--forest); }

.filter-reset { font-size: .825rem; color: var(--forest); font-weight: 500; }
.filter-reset:hover { text-decoration: underline; }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: .875rem;
}
.compare-table th, .compare-table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--gray-mid);
}
.compare-table th { background: var(--gray); font-weight: 700; color: var(--slate); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.compare-table tr:hover td { background: rgba(234,215,183,.15); }
.compare-table .feature-name { font-weight: 600; color: var(--slate-dark); width: 180px; }
.compare-table .check { color: #16a34a; }
.compare-table .cross { color: #dc2626; }

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

/* =============================================
   BLOG
   ============================================= */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: .775rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.blog-tag { background: rgba(22,101,52,.1); color: var(--forest); padding: 3px 10px; border-radius: 20px; font-weight: 600; font-size: .73rem; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 10px; font-family: 'Inter', sans-serif; line-height: 1.4; }
.blog-card-title a:hover { color: var(--forest); }
.blog-card-excerpt { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* =============================================
   INFO BOXES
   ============================================= */
.info-box {
  padding: 20px 24px; border-radius: var(--radius);
  border-left: 4px solid var(--forest);
  background: rgba(22,101,52,.04);
  margin: 24px 0;
}
.info-box.sky { border-color: var(--sky-dark); background: rgba(56,189,248,.06); }
.info-box.sand { border-color: var(--sand-dark); background: rgba(234,215,183,.3); }
.info-box h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.info-box p { font-size: .875rem; margin: 0; }

.alert {
  padding: 16px 20px; border-radius: var(--radius);
  font-size: .9rem; display: flex; gap: 12px; align-items: flex-start;
}
.alert-success { background: rgba(22,101,52,.1); color: var(--forest-dark); border: 1px solid rgba(22,101,52,.2); }
.alert-info { background: rgba(56,189,248,.1); color: var(--sky-dark); border: 1px solid rgba(56,189,248,.2); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--gray-mid); border-radius: var(--radius);
  font-size: .9rem; background: var(--white);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(22,101,52,.08); }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-hint { font-size: .775rem; color: var(--text-muted); margin-top: 5px; }

/* =============================================
   RATING STARS
   ============================================= */
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-bar .label { font-size: .8rem; width: 20px; color: var(--text-muted); }
.rating-bar .bar { flex: 1; height: 6px; background: var(--gray-mid); border-radius: 3px; overflow: hidden; }
.rating-bar .fill { height: 100%; background: #f59e0b; border-radius: 3px; }

/* =============================================
   TABS
   ============================================= */
.tabs { border-bottom: 2px solid var(--gray-mid); margin-bottom: 32px; }
.tab-list { display: flex; gap: 4px; }
.tab-btn {
  padding: 12px 20px; font-size: .875rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--forest); border-color: var(--forest); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* =============================================
   BADGES & TAGS
   ============================================= */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 20px;
  font-size: .73rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.badge-forest { background: rgba(22,101,52,.1); color: var(--forest); }
.badge-sky { background: rgba(56,189,248,.12); color: var(--sky-dark); }
.badge-sand { background: rgba(234,215,183,.7); color: #7c5c2a; }
.badge-slate { background: rgba(51,65,85,.1); color: var(--slate); }

/* =============================================
   FEATURE LIST
   ============================================= */
.feature-list { display: grid; gap: 16px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(22,101,52,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-body h4 { font-size: .95rem; font-weight: 700; margin-bottom: 5px; font-family: 'Inter', sans-serif; color: var(--slate-dark); }
.feature-body p { font-size: .85rem; color: var(--text-light); margin: 0; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--slate-dark); padding: 64px 0;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; background: rgba(56,189,248,.06);
  border-radius: 50%;
}
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin-top: 24px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: var(--white); font-size: .9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--sky); }
.newsletter-note { font-size: .775rem; color: rgba(255,255,255,.45); margin-top: 10px; }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--forest); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: rgba(22,101,52,.08); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; color: var(--slate-dark); }
.why-card p { font-size: .85rem; color: var(--text-light); margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--slate-dark); color: rgba(255,255,255,.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-contact { font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact p { margin-bottom: 6px; color: rgba(255,255,255,.65); }
.footer-contact a { color: var(--sky); }
.footer-contact a:hover { text-decoration: underline; }

.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .07em; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .855rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--sand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: var(--sand); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--forest-dark) 100%);
  padding: 48px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: rgba(56,189,248,.06);
  border-radius: 50%; transform: translate(30%, 30%);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 620px; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid); padding: 24px; margin-bottom: 24px;
}
.sidebar-widget h4 { font-size: .95rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-mid); font-family: 'Inter', sans-serif; }

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-gallery { position: sticky; top: 100px; }
.main-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-mid); aspect-ratio: 1/1; background: var(--gray); }
.main-photo img { width: 100%; height: 100%; object-fit: cover; }
.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.thumb { border-radius: 6px; overflow: hidden; border: 2px solid var(--gray-mid); aspect-ratio: 1/1; cursor: pointer; }
.thumb.active { border-color: var(--forest); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-price { font-size: 2rem; font-weight: 800; color: var(--forest); font-family: 'Inter', sans-serif; }
.product-actions-wrap { display: flex; gap: 12px; margin: 24px 0; }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; }
.qty-selector button { padding: 10px 14px; background: var(--gray); font-size: 1rem; }
.qty-selector button:hover { background: var(--sand); }
.qty-selector input { width: 48px; text-align: center; border: none; padding: 10px 0; font-size: .95rem; font-weight: 600; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-wrap h1 { margin-bottom: 8px; }
.legal-meta { font-size: .85rem; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 2px solid var(--gray-mid); }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--slate-dark); margin-bottom: 14px; padding-top: 8px; font-family: 'Inter', sans-serif; }
.legal-section h3 { font-size: 1.05rem; font-weight: 600; color: var(--slate); margin: 16px 0 10px; font-family: 'Inter', sans-serif; }
.legal-section p { font-size: .95rem; line-height: 1.75; margin-bottom: 14px; color: var(--text-light); }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: 14px; }
.legal-section ul li, .legal-section ol li { font-size: .95rem; line-height: 1.7; color: var(--text-light); margin-bottom: 6px; list-style: disc; }
.legal-section ol li { list-style: decimal; }
.legal-table { width: 100%; border-collapse: collapse; font-size: .875rem; margin: 16px 0 24px; }
.legal-table th, .legal-table td { padding: 10px 14px; text-align: left; border: 1px solid var(--gray-mid); }
.legal-table th { background: var(--gray); font-weight: 700; color: var(--slate); }
.legal-table td { color: var(--text-light); }
.legal-highlight { background: rgba(22,101,52,.05); border: 1px solid rgba(22,101,52,.15); border-radius: var(--radius); padding: 16px 20px; margin: 16px 0; }
.legal-highlight p { margin: 0; font-size: .9rem; }
.legal-contact-box { background: var(--gray); border-radius: var(--radius-lg); padding: 24px; margin-top: 32px; }
.legal-contact-box h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--slate-dark); }
.legal-contact-box p { font-size: .875rem; margin-bottom: 6px; color: var(--text-light); }

/* =============================================
   CART MINI / WISHLIST
   ============================================= */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--slate-dark); color: var(--white);
  padding: 16px 0; display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.compare-bar.visible { display: block; }
.compare-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 600; border: 1.5px solid var(--gray-mid);
  color: var(--text-light); transition: all var(--transition);
}
.page-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.page-btn:hover:not(.active) { border-color: var(--forest); color: var(--forest); }

/* =============================================
   CART
   ============================================= */
.cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-mid); }
.cart-item-img { width: 90px; height: 90px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; border: 1px solid var(--gray-mid); background: var(--gray); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; }
.cart-item-name { font-size: .95rem; font-weight: 600; color: var(--slate-dark); margin-bottom: 6px; }
.cart-item-price { font-size: 1rem; font-weight: 700; color: var(--forest); }
.cart-total-box { background: var(--gray); border-radius: var(--radius-lg); padding: 24px; }

/* =============================================
   SUCCESS MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; max-width: 480px; width: 90%;
  text-align: center; transform: scale(.9); transition: transform .3s ease;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 { font-family: 'Inter', sans-serif; margin-bottom: 10px; }
.modal p { font-size: .9rem; color: var(--text-light); margin-bottom: 24px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-1-3 { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 12px; }
  .header-search { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-stats { gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .hero-content { padding: 60px 0; }
  .section { padding: 52px 0; }
  .section-lg { padding: 64px 0; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .product-actions-wrap { flex-direction: column; }
}
