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

:root {
  --white: #FFFFFF;
  --forest: #166534;
  --forest-light: #15803d;
  --forest-dark: #14532d;
  --olive: #84CC16;
  --olive-dark: #65a30d;
  --brown: #92400E;
  --graphite: #374151;
  --gray-light: #F8FAFC;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --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.13);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
}

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

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--graphite); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { color: var(--gray-600); line-height: 1.75; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 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; align-items: 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; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 8px; font-size: 0.95rem;
  font-weight: 600; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--forest); color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover { background: var(--forest-dark); border-color: var(--forest-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-olive { background: var(--olive); color: var(--white); border-color: var(--olive); }
.btn-olive:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--olive); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-links { display: flex; gap: 24px; align-items: center; }
.topbar-left { display: flex; gap: 20px; align-items: center; }

/* ===================== HEADER ===================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--forest);
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--forest);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.logo span { color: var(--olive); }

/* Search */
.header-search {
  flex: 1; max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%; padding: 11px 20px 11px 48px;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-size: 0.9rem; outline: none;
  transition: border-color var(--transition);
}
.header-search input:focus { border-color: var(--forest); }
.header-search .search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); pointer-events: none;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 12px; border-radius: 8px;
  background: none; border: none; color: var(--graphite);
  font-size: 0.72rem; font-weight: 500; transition: all var(--transition);
  position: relative;
}
.header-action-btn:hover { background: var(--gray-light); color: var(--forest); }
.header-action-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: 4px; right: 8px;
  background: var(--olive); color: white;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ===================== NAV ===================== */
.main-nav { background: var(--gray-light); border-bottom: 1px solid var(--gray-200); }
.nav-inner { display: flex; align-items: stretch; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px; font-size: 0.88rem; font-weight: 500;
  color: var(--graphite); white-space: nowrap;
  transition: color var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.nav-link svg { width: 14px; height: 14px; }

/* Dropdown */
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 220px; z-index: 999;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px;
  font-size: 0.88rem; color: var(--gray-700);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--gray-light); color: var(--forest); }
.nav-dropdown a span { font-size: 1.1rem; }

/* ===================== HERO ===================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 580px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,83,45,0.82) 35%, rgba(20,83,45,0.35) 100%);
  z-index: 1;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 80px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

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

/* ===================== CATEGORY CARDS ===================== */
.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--forest);
}
.category-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.category-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.05); }
.category-card-body { padding: 20px; flex: 1; }
.category-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.category-card-body p { font-size: 0.88rem; margin-bottom: 14px; }
.category-card-footer { padding: 0 20px 20px; }
.category-count {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--forest); font-weight: 600;
  background: rgba(22,101,52,0.08); padding: 4px 10px; border-radius: 20px;
}

/* ===================== PRODUCT CARDS ===================== */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}
.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.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700; z-index: 2;
}
.badge-new { background: var(--olive); color: white; }
.badge-hot { background: var(--brown); color: white; }
.badge-sale { background: #DC2626; color: white; }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: white; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); z-index: 2;
  transition: all var(--transition); font-size: 1rem;
}
.product-wishlist:hover { color: #DC2626; border-color: #DC2626; }
.product-card-body { padding: 16px; flex: 1; }
.product-brand { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.product-card-body h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; color: var(--graphite); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: #F59E0B; font-size: 0.85rem; }
.rating-count { font-size: 0.8rem; color: var(--gray-400); }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.spec-chip {
  font-size: 0.75rem; padding: 3px 8px; border-radius: 4px;
  background: var(--gray-light); color: var(--gray-600); border: 1px solid var(--gray-200);
}
.product-price-block { margin-bottom: 14px; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--forest); }
.product-price-old { font-size: 0.9rem; color: var(--gray-400); text-decoration: line-through; margin-left: 8px; }
.product-card-footer { padding: 0 16px 16px; display: flex; gap: 8px; }

/* ===================== SIDEBAR ===================== */
.page-layout { display: grid; grid-template-columns: 270px 1fr; gap: 32px; align-items: start; }
.sidebar { position: sticky; top: 90px; }
.sidebar-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-block h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--graphite); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.filter-item { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; }
.filter-item label { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; cursor: pointer; }
.filter-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--forest); }
.filter-count { font-size: 0.78rem; color: var(--gray-400); background: var(--gray-light); padding: 2px 7px; border-radius: 10px; }
.price-range { display: flex; gap: 8px; margin-top: 8px; }
.price-range input { flex: 1; padding: 8px 10px; border: 1px solid var(--gray-200); border-radius: 6px; font-size: 0.85rem; }

/* ===================== CATEGORY PAGE ===================== */
.products-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.products-count { font-size: 0.9rem; color: var(--gray-500); }
.sort-select {
  padding: 9px 14px; border: 1px solid var(--gray-200);
  border-radius: 7px; font-size: 0.88rem;
  outline: none; cursor: pointer;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px; border: 1px solid var(--gray-200);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  background: white; color: var(--gray-400); cursor: pointer;
  transition: all var(--transition);
}
.view-btn.active { background: var(--forest); color: white; border-color: var(--forest); }

/* ===================== COMPARISON TABLE ===================== */
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--forest); color: white;
  padding: 14px 16px; text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.comparison-table tr:nth-child(even) td { background: var(--gray-light); }
.comparison-table tr:hover td { background: rgba(22,101,52,0.04); }
.check-yes { color: var(--forest); font-weight: 700; }
.check-no { color: var(--gray-400); }

/* ===================== BLOG CARDS ===================== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--forest); background: rgba(22,101,52,0.08);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
}
.blog-card-body h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.45; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--gray-400); margin-top: 12px; }
.blog-meta svg { width: 14px; height: 14px; }

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color: var(--gray-400); }

/* ===================== FEATURES STRIP ===================== */
.features-strip { background: var(--forest); padding: 40px 0; }
.features-strip .grid-4 { gap: 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.12);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-item h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.feature-item p { color: rgba(255,255,255,0.72); font-size: 0.82rem; }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--gray-light); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--forest); font-family: 'Inter', sans-serif; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--gray-500); }

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

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--graphite); }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-size: 0.92rem; font-family: inherit;
  outline: none; transition: border-color var(--transition);
  background: white;
}
.form-control:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(22,101,52,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px;
}
.success-msg {
  display: none; background: #F0FDF4; border: 1px solid #BBF7D0;
  border-radius: 8px; padding: 16px 20px; margin-bottom: 20px;
  color: var(--forest); font-weight: 500; align-items: center; gap: 10px;
}
.success-msg.show { display: flex; }

/* ===================== PRODUCT DETAIL ===================== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: 90px; }
.main-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; background: var(--gray-light); margin-bottom: 12px; }
.main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: flex; gap: 10px; }
.thumb {
  width: 80px; height: 80px; border-radius: 8px;
  overflow: hidden; border: 2px solid var(--gray-200);
  cursor: pointer; transition: border-color var(--transition);
}
.thumb.active, .thumb:hover { border-color: var(--forest); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-size: 1.9rem; margin-bottom: 12px; }
.product-detail-price { font-size: 2rem; color: var(--forest); font-weight: 800; margin: 20px 0; }
.product-detail-specs { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; margin: 24px 0; }
.spec-row { display: flex; border-bottom: 1px solid var(--gray-200); }
.spec-row:last-child { border-bottom: none; }
.spec-key { padding: 10px 16px; background: var(--gray-light); font-size: 0.85rem; font-weight: 600; width: 180px; flex-shrink: 0; color: var(--graphite); }
.spec-val { padding: 10px 16px; font-size: 0.85rem; color: var(--gray-600); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; }
.qty-btn {
  width: 42px; height: 42px; border: none;
  background: var(--gray-light); font-size: 1.1rem;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--gray-200); }
.qty-input { width: 56px; height: 42px; border: none; text-align: center; font-size: 1rem; font-weight: 600; }

/* ===================== TABS ===================== */
.tabs { border-bottom: 2px solid var(--gray-200); display: flex; gap: 0; margin-bottom: 32px; }
.tab-btn {
  padding: 14px 24px; font-size: 0.92rem; font-weight: 600;
  background: none; border: none; color: var(--gray-500);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--forest); border-bottom-color: var(--forest); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ===================== CART ===================== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 20px; border-bottom: 1px solid var(--gray-200);
}
.cart-item-img { width: 100px; height: 100px; border-radius: 8px; overflow: hidden; background: var(--gray-light); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 90px; }
.cart-summary h3 { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; }
.summary-total { font-size: 1.15rem; font-weight: 700; color: var(--forest); border-top: 2px solid var(--gray-200); margin-top: 8px; padding-top: 12px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--graphite); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo { color: white; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h5 { color: white; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--olive); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--olive); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--olive); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: background var(--transition);
}
.social-link:hover { background: var(--forest); }

/* ===================== INFO BOX ===================== */
.info-box {
  background: var(--gray-light); border-left: 4px solid var(--forest);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0;
}
.info-box p { font-size: 0.9rem; color: var(--gray-700); }
.warning-box { border-left-color: #F59E0B; background: #FFFBEB; }
.warning-box p { color: #92400E; }

/* ===================== POLICY PAGES ===================== */
.policy-page { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.policy-page h1 { margin-bottom: 8px; }
.policy-page .updated { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 40px; }
.policy-page h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 14px; }
.policy-page h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; }
.policy-page p { margin-bottom: 14px; font-size: 0.95rem; }
.policy-page ul { margin: 12px 0 16px 20px; }
.policy-page ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--gray-600); list-style: disc; }
.policy-page table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-page table th { background: var(--forest); color: white; padding: 12px 14px; text-align: left; font-size: 0.88rem; }
.policy-page table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; color: var(--gray-600); }
.policy-page table tr:nth-child(even) td { background: var(--gray-light); }

/* ===================== ABOUT PAGE ===================== */
.team-card { text-align: center; }
.team-card-img { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--forest); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; }

/* ===================== PAGINATION ===================== */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--gray-200); background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 500;
  transition: all var(--transition); cursor: pointer; color: var(--graphite);
}
.page-btn:hover, .page-btn.active { background: var(--forest); color: white; border-color: var(--forest); }

/* ===================== NEWSLETTER ===================== */
.newsletter-section { background: var(--forest); padding: 64px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: white; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.8); max-width: 440px; }
.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1; padding: 13px 16px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1);
  color: white; font-size: 0.9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: var(--olive); }

/* ===================== MOBILE ===================== */
.mobile-menu-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--graphite); margin: 5px 0; transition: all var(--transition); }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .feature-item { border-right: none; padding: 16px 0; }
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .main-nav { overflow-x: auto; }
  .nav-inner { width: max-content; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .topbar-left { display: none; }
  .header-action-btn span { display: none; }
}

/* ===================== MISC ===================== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.8rem; padding: 4px 12px; border-radius: 20px; background: var(--gray-light); border: 1px solid var(--gray-200); color: var(--gray-600); }
.tag:hover { background: var(--forest); color: white; border-color: var(--forest); }
.divider { height: 1px; background: var(--gray-200); margin: 32px 0; }
.text-green { color: var(--forest); }
.text-olive { color: var(--olive-dark); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(22,101,52,0.08); color: var(--forest);
  font-size: 0.82rem; font-weight: 600;
}
.highlight-section { background: var(--gray-light); }
.border-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.icon-box { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.icon-box-green { background: rgba(22,101,52,0.1); color: var(--forest); }
.icon-box-olive { background: rgba(132,204,22,0.12); color: var(--olive-dark); }
.icon-box-brown { background: rgba(146,64,14,0.1); color: var(--brown); }
.alert { padding: 14px 18px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 16px; }
.alert-info { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.alert-success { background: #F0FDF4; color: var(--forest); border: 1px solid #BBF7D0; }
.sticky-compare {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: white; border-top: 2px solid var(--forest);
  padding: 14px 20px; z-index: 998;
  display: none; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-compare.show { display: flex; }

/* Price slider */
.price-display { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--gray-600); margin-top: 6px; }
input[type="range"] { width: 100%; accent-color: var(--forest); }

/* Skeleton loader */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--forest); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; opacity: 0; visibility: hidden;
  transition: all var(--transition); z-index: 990;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--forest-dark); transform: translateY(-2px); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--graphite); color: rgba(255,255,255,0.88);
  padding: 20px 0; z-index: 9999;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.88rem; }
.cookie-text a { color: var(--olive); }
.cookie-actions { display: flex; gap: 10px; }

/* Chips bar */
.chips-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip-filter {
  padding: 6px 16px; border-radius: 20px; border: 1.5px solid var(--gray-200);
  background: white; font-size: 0.85rem; cursor: pointer;
  transition: all var(--transition); color: var(--gray-600);
}
.chip-filter:hover, .chip-filter.active { background: var(--forest); color: white; border-color: var(--forest); }

/* Compare checkbox */
.compare-check { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--gray-500); margin-top: 8px; }
.compare-check input { accent-color: var(--forest); }

/* ===================== POLICY PAGE EXTENDED ===================== */
.policy-container { max-width: 860px; margin: 0 auto; padding: 60px 20px 80px; }
.policy-header { margin-bottom: 40px; }
.policy-header h1 { margin-bottom: 8px; }
.policy-meta { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 16px; }
.policy-intro { font-size: 0.97rem; color: var(--gray-600); line-height: 1.75; padding: 20px; background: var(--gray-light); border-left: 4px solid var(--forest); border-radius: 0 8px 8px 0; }
.policy-toc { background: var(--gray-light); border: 1px solid var(--gray-200); border-radius: 10px; padding: 24px 28px; margin-bottom: 40px; }
.policy-toc h2 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 12px; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li { margin-bottom: 6px; }
.policy-toc ol li a { font-size: 0.9rem; color: var(--forest); }
.policy-toc ol li a:hover { text-decoration: underline; }
.policy-content section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--gray-200); }
.policy-content section:last-child { border-bottom: none; }
.policy-content h2 { font-size: 1.35rem; margin-bottom: 14px; margin-top: 0; }
.policy-content h3 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-top: 20px; margin-bottom: 10px; color: var(--graphite); }
.policy-content p { margin-bottom: 14px; font-size: 0.95rem; }
.policy-content ul, .policy-content ol { margin: 12px 0 16px 20px; }
.policy-content ul li, .policy-content ol li { margin-bottom: 8px; font-size: 0.94rem; color: var(--gray-600); }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content a { color: var(--forest); }
.policy-content a:hover { text-decoration: underline; }
.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem; }
.policy-table th { background: var(--forest); color: white; padding: 12px 14px; text-align: left; }
.policy-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); vertical-align: top; }
.policy-table tr:nth-child(even) td { background: var(--gray-light); }
.policy-address-block { font-style: normal; background: var(--gray-light); border: 1px solid var(--gray-200); border-radius: 8px; padding: 16px 20px; margin: 16px 0; font-size: 0.92rem; line-height: 1.8; }
.breadcrumb-bar { background: var(--gray-light); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb-bar nav.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-500); }
.breadcrumb-bar nav.breadcrumb a { color: var(--gray-500); }
.breadcrumb-bar nav.breadcrumb a:hover { color: var(--forest); }
.breadcrumb-bar nav.breadcrumb span:not(:first-child) { color: var(--gray-300); }
