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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #57534E;
  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, select, textarea { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --white: #FFFFFF;
  --warm-gray: #57534E;
  --emerald: #059669;
  --sky: #0284C7;
  --beige: #F5F5DC;
  --light-gray: #F8FAFC;
  --border: #E2E8F0;
  --text-dark: #1C1917;
  --text-muted: #A8A29E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: #1C1917; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--warm-gray); line-height: 1.7; }
.text-emerald { color: var(--emerald); }
.text-sky { color: var(--sky); }
.text-muted { color: var(--text-muted); }
.text-dark { color: var(--text-dark); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.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; }
.gap-32 { gap: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 2px 8px rgba(5,150,105,0.25);
}
.btn-primary:hover { background: #047857; box-shadow: 0 4px 16px rgba(5,150,105,0.35); transform: translateY(-1px); }
.btn-secondary {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 2px 8px rgba(2,132,199,0.22);
}
.btn-secondary:hover { background: #0369a1; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: #fff; }
.btn-outline-sky {
  background: transparent;
  color: var(--sky);
  border: 2px solid var(--sky);
}
.btn-outline-sky:hover { background: var(--sky); color: #fff; }
.btn-ghost {
  background: var(--light-gray);
  color: var(--warm-gray);
}
.btn-ghost:hover { background: var(--border); color: var(--text-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-top {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 6px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.header-top a:hover { color: #fff; }
.header-main { padding: 16px 0; }
.header-main .container { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--emerald) 0%, #047857 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 700;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text-dark); }
.logo-text span { color: var(--emerald); }
.header-search { flex: 1; max-width: 520px; }
.search-wrap { position: relative; }
.search-wrap input {
  width: 100%;
  padding: 11px 52px 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--light-gray);
  transition: all var(--transition);
  color: var(--text-dark);
}
.search-wrap input:focus { outline: none; border-color: var(--emerald); background: #fff; box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
.search-wrap button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: var(--emerald); color: #fff;
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.search-wrap button:hover { background: #047857; }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-icon-btn {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--warm-gray); font-size: 0.7rem;
  transition: all var(--transition);
}
.header-icon-btn:hover { background: var(--light-gray); color: var(--text-dark); }
.header-icon-btn svg { width: 22px; height: 22px; }
.header-icon-btn .badge {
  position: absolute; top: 4px; right: 8px;
  background: var(--emerald); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-main {
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-main .container { display: flex; align-items: center; gap: 4px; padding-top: 0; padding-bottom: 0; height: 48px; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px; height: 48px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--warm-gray);
  transition: all var(--transition);
  position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--emerald); border-radius: 2px 2px 0 0;
}
.nav-link:hover::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--border); border-radius: 2px 2px 0 0;
}
.nav-link.active:hover::after { background: var(--emerald); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 220px; z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 8px 14px; font-size: 0.88rem;
  color: var(--warm-gray); border-radius: 6px;
  transition: all var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--light-gray); color: var(--text-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--warm-gray); border-radius: 2px; transition: all var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 2000;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: 300px;
  background: #fff; padding: 24px; overflow-y: auto;
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 500; color: var(--text-dark); }

/* ===== FOOTER ===== */
.site-footer { background: #1C1917; color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--emerald); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--emerald); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-trust { display: flex; align-items: center; gap: 20px; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.trust-badge svg { color: var(--emerald); }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--light-gray); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb ol li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb ol li:not(:last-child)::after { content: '›'; color: var(--text-muted); }
.breadcrumb ol li a { color: var(--sky); }
.breadcrumb ol li a:hover { text-decoration: underline; }
.breadcrumb ol li:last-child { color: var(--warm-gray); }

/* ===== HERO (NO BADGES/BANNERS) ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #F8FAFC;
}
.hero-image-wrap {
  position: absolute; inset: 0;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,25,23,0.68) 0%, rgba(28,25,23,0.22) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 32px; max-width: 440px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card-image { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--light-gray); }
.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.05); }
.product-card-actions-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 8px; padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  transform: translateY(100%); transition: transform var(--transition);
}
.product-card:hover .product-card-actions-overlay { transform: translateY(0); }
.product-card-actions-overlay button {
  flex: 1; padding: 8px; font-size: 0.8rem; font-weight: 600;
  border-radius: 6px; color: #fff;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: background var(--transition);
}
.product-card-actions-overlay button:hover { background: rgba(255,255,255,0.35); }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-brand { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.product-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); line-height: 1.4; font-weight: 600; }
.product-rating { display: flex; align-items: center; gap: 6px; }
.stars { display: flex; gap: 2px; color: #F59E0B; font-size: 0.85rem; }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }
.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 12px; }
.price-current { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.price-old { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: 0.78rem; font-weight: 700; color: var(--emerald); background: rgba(5,150,105,0.1); padding: 2px 8px; border-radius: 20px; }
.product-card-footer { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.btn-cart { flex: 1; background: var(--emerald); color: #fff; padding: 10px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; transition: background var(--transition); }
.btn-cart:hover { background: #047857; }
.btn-wish { background: var(--light-gray); color: var(--warm-gray); padding: 10px 14px; border-radius: 6px; transition: all var(--transition); }
.btn-wish:hover { background: #FEE2E2; color: #EF4444; }

/* ===== CATEGORY CARD ===== */
.category-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
  transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,23,0.75) 0%, transparent 55%); }
.category-card-content { position: relative; z-index: 2; padding: 24px; }
.category-card-content h3 { color: #fff; margin-bottom: 4px; }
.category-card-content p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ===== SPEC TABLE ===== */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.spec-table th {
  background: var(--light-gray); padding: 12px 16px; text-align: left;
  font-weight: 600; color: var(--text-dark); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid var(--border);
}
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--warm-gray); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--light-gray); }
.spec-check { color: var(--emerald); font-weight: 700; }
.spec-x { color: #EF4444; font-weight: 700; }

/* ===== INFO CARDS ===== */
.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.info-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.4rem;
}
.icon-emerald { background: rgba(5,150,105,0.1); color: var(--emerald); }
.icon-sky { background: rgba(2,132,199,0.1); color: var(--sky); }
.icon-beige { background: var(--beige); color: var(--warm-gray); }
.info-card h4 { margin-bottom: 10px; }
.info-card p { font-size: 0.9rem; }

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 22px; }
.blog-tag { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.tag-emerald { background: rgba(5,150,105,0.1); color: var(--emerald); }
.tag-sky { background: rgba(2,132,199,0.1); color: var(--sky); }
.tag-beige { background: var(--beige); color: var(--warm-gray); }
.blog-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }

/* ===== SIDEBAR ===== */
.sidebar-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.sidebar-box h4 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 20px; }
.filter-group h5 { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.filter-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.88rem; cursor: pointer; }
.filter-item input[type=checkbox] { accent-color: var(--emerald); width: 16px; height: 16px; }
.filter-count { margin-left: auto; color: var(--text-muted); font-size: 0.8rem; }
.price-range-wrap { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
.price-range-wrap input { flex: 1; padding: 7px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.85rem; }

/* ===== BADGES / TAGS ===== */
.tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
.tag-green { background: rgba(5,150,105,0.1); color: var(--emerald); }
.tag-blue { background: rgba(2,132,199,0.1); color: var(--sky); }
.tag-gray { background: var(--light-gray); color: var(--warm-gray); }
.tag-orange { background: rgba(245,158,11,0.1); color: #D97706; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header-left { margin-bottom: 36px; }
.section-header-left h2 { margin-bottom: 10px; }
.section-eyebrow { font-size: 0.82rem; font-weight: 600; color: var(--emerald); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }

/* ===== TABS ===== */
.tabs-wrap { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 32px; }
.tab-btn {
  padding: 12px 24px; font-size: 0.9rem; font-weight: 500;
  color: var(--warm-gray); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--text-dark); border-bottom-color: var(--emerald); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== COMPARE ===== */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--light-gray); padding: 16px; text-align: center; border: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; }
.compare-table td { padding: 14px 16px; border: 1px solid var(--border); text-align: center; font-size: 0.88rem; vertical-align: middle; }
.compare-table tr:nth-child(even) td { background: #FAFAF9; }
.compare-table .row-label { text-align: left; font-weight: 500; color: var(--text-dark); background: var(--light-gray); }
.compare-winner { background: rgba(5,150,105,0.07) !important; font-weight: 600; color: var(--emerald); }

/* ===== PRICE HISTORY ===== */
.price-chart-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.price-chart-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; color: var(--text-dark); }

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-text { font-size: 1rem; color: var(--warm-gray); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--light-gray); overflow: hidden; flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--text-dark); padding: 72px 0; }
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter-inner h2 { color: #fff; margin-bottom: 14px; }
.newsletter-inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border-radius: var(--radius-sm); border: none; font-size: 0.95rem; }
.newsletter-form input:focus { outline: 2px solid var(--emerald); }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery { position: sticky; top: 80px; }
.product-main-image { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--light-gray); margin-bottom: 12px; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  width: 70px; height: 70px; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--light-gray); cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
}
.product-thumb.active { border-color: var(--emerald); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-side h1 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 12px; }
.product-meta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.product-price-big { font-size: 2rem; font-weight: 700; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.product-price-old { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.product-options { margin-bottom: 24px; }
.option-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.option-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.option-chip {
  padding: 7px 16px; border: 1.5px solid var(--border);
  border-radius: 6px; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition); color: var(--warm-gray);
}
.option-chip.active { border-color: var(--emerald); color: var(--emerald); background: rgba(5,150,105,0.05); }
.option-chip:hover { border-color: var(--warm-gray); color: var(--text-dark); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-ctrl {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-ctrl button { padding: 10px 16px; font-size: 1.2rem; transition: background var(--transition); }
.qty-ctrl button:hover { background: var(--light-gray); }
.qty-ctrl span { padding: 10px 20px; font-weight: 600; min-width: 52px; text-align: center; }
.delivery-info { background: var(--light-gray); border-radius: var(--radius-sm); padding: 16px; margin-top: 20px; }
.delivery-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; }
.delivery-row:last-child { margin-bottom: 0; }
.delivery-row svg { color: var(--emerald); flex-shrink: 0; }

/* ===== CART PAGE ===== */
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px 16px; text-align: left; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 16px; }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; background: var(--light-gray); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 80px; }
.cart-summary h3 { margin-bottom: 22px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.9rem; }
.summary-total { font-size: 1.15rem; font-weight: 700; border-top: 2px solid var(--border); padding-top: 14px; margin-top: 14px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--text-dark);
  background: #fff; transition: all var(--transition);
}
.form-control:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2357534E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; }
.form-success {
  display: none; background: rgba(5,150,105,0.08); border: 1.5px solid var(--emerald);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 16px;
  color: var(--emerald); font-weight: 500; text-align: center;
}
.form-success.show { display: block; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 24px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--text-dark); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.9rem; color: var(--warm-gray); }

/* ===== BRAND GRID ===== */
.brand-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 24px; border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition); background: #fff;
  font-size: 1.1rem; font-weight: 700; color: var(--warm-gray);
  min-height: 80px;
}
.brand-logo-item:hover { border-color: var(--emerald); color: var(--emerald); box-shadow: var(--shadow-sm); }

/* ===== ALERT / NOTICE ===== */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.9rem; }
.alert-info { background: rgba(2,132,199,0.08); border-left: 3px solid var(--sky); color: #0369a1; }
.alert-success { background: rgba(5,150,105,0.08); border-left: 3px solid var(--emerald); color: #047857; }
.alert-warning { background: rgba(245,158,11,0.08); border-left: 3px solid #F59E0B; color: #B45309; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 500; border: 1.5px solid var(--border);
  color: var(--warm-gray); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.page-btn.dots { border: none; cursor: default; }
.page-btn.dots:hover { background: none; color: var(--warm-gray); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.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; } .mt-64 { margin-top: 64px; }
.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; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.bg-light { background: var(--light-gray); }
.bg-beige { background: var(--beige); }
.bg-dark { background: var(--text-dark); }
.bg-emerald-light { background: rgba(5,150,105,0.06); }
.rounded { border-radius: var(--radius); }
.border { border: 1px solid var(--border); }
.shadow { box-shadow: var(--shadow-md); }
.w-full { width: 100%; }
.relative { position: relative; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.overflow-hidden { overflow: hidden; }
.aspect-ratio-1 { aspect-ratio: 1; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(28,25,23,0.97); backdrop-filter: blur(8px);
  padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { color: rgba(255,255,255,0.8); font-size: 0.88rem; flex: 1; }
.cookie-text a { color: var(--emerald); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 48px; height: 48px; background: var(--emerald); color: #fff;
  border-radius: 50%; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--transition); font-size: 1.2rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #047857; transform: translateY(-2px); }

/* ===== POLICY PAGE ===== */
.policy-content h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.policy-content h3 { font-size: 1.15rem; margin-top: 26px; margin-bottom: 10px; }
.policy-content p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.8; }
.policy-content ul, .policy-content ol { margin: 14px 0 14px 24px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.7; color: var(--warm-gray); }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-content table th, .policy-content table td { padding: 10px 14px; border: 1px solid var(--border); font-size: 0.88rem; }
.policy-content table th { background: var(--light-gray); font-weight: 600; }
.policy-header { background: var(--light-gray); padding: 48px 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.policy-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.policy-header p { color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .hero { min-height: 440px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .compare-table { font-size: 0.8rem; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-icon-btn span { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 52px 0; }
}
