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

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:        #FFFFFF;
  --green:        #15803D;
  --green-dark:   #0f5e2c;
  --green-light:  #dcfce7;
  --olive:        #65A30D;
  --olive-light:  #ecfccb;
  --beige:        #D6C3A5;
  --beige-light:  #f5f0e8;
  --graphite:     #374151;
  --graphite-light:#6B7280;
  --gray-light:   #F8FAFC;
  --gray-mid:     #E5E7EB;
  --gray-dark:    #D1D5DB;
  --black:        #111827;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07);
  --shadow-md:    0 4px 12px rgba(0,0,0,.09);
  --shadow-lg:    0 8px 30px rgba(0,0,0,.11);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   .25s ease;
  --font-sans:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--black); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { color: var(--graphite); }
.serif { font-family: var(--font-serif); }
.text-green { color: var(--green); }
.text-olive { color: var(--olive); }
.text-graphite { color: var(--graphite); }
.text-muted { color: var(--graphite-light); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ==============================
   LAYOUT UTILITIES
============================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.wrap { flex-wrap: wrap; }
.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; }

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-light); }
.bg-green { background: var(--green); }
.bg-beige { background: var(--beige-light); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(21,128,61,.25); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--graphite);
  border: 2px solid var(--gray-dark);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { padding: 10px; border-radius: var(--radius-sm); }

/* ==============================
   TOP BAR
============================== */
.top-bar {
  background: var(--graphite);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar a { color: var(--white); opacity: .85; transition: var(--transition); }
.top-bar a:hover { opacity: 1; }
.top-bar-links { display: flex; gap: 20px; align-items: center; }

/* ==============================
   HEADER
============================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--black); letter-spacing: -0.5px; }
.logo-text span { color: var(--green); }
.logo-sub { font-size: 0.65rem; color: var(--graphite-light); letter-spacing: 1px; text-transform: uppercase; line-height: 1; }

.search-bar {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 11px 50px 11px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  font-size: 0.9rem;
  background: var(--gray-light);
  transition: var(--transition);
  color: var(--graphite);
}
.search-bar input:focus { outline: none; border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(21,128,61,.1); }
.search-bar button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: white;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--green-dark); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--graphite);
  font-size: 0.7rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.header-btn:hover { background: var(--gray-light); color: var(--green); }
.header-btn svg { width: 22px; height: 22px; }
.badge {
  position: absolute;
  top: 4px;
  right: 8px;
  background: var(--green);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================
   NAVIGATION
============================== */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item {
  position: relative;
  flex-shrink: 0;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
  white-space: nowrap;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-link.active { color: var(--green); border-bottom-color: var(--green); }
.nav-link svg { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--graphite);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--gray-light); color: var(--green); }
.dropdown-icon { width: 32px; height: 32px; background: var(--gray-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }

/* ==============================
   BREADCRUMB
============================== */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--graphite-light);
  flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--green); transition: var(--transition); }
.breadcrumb-list a:hover { color: var(--green-dark); }
.breadcrumb-sep { color: var(--gray-dark); }
.breadcrumb-current { color: var(--graphite); font-weight: 500; }

/* ==============================
   HERO SECTION
============================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,24,39,.72) 0%, rgba(17,24,39,.35) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==============================
   CATEGORY CARDS
============================== */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/2;
  display: block;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.category-card:hover img { transform: scale(1.04); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.category-card-overlay h3 { color: white; font-size: 1.15rem; margin-bottom: 4px; }
.category-card-overlay span { color: rgba(255,255,255,.8); font-size: 0.8rem; }

/* ==============================
   PRODUCT CARDS
============================== */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(6px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.product-action-btn svg { width: 16px; height: 16px; }
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.75rem; color: var(--olive); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.product-title { font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 8px; line-height: 1.35; }
.product-title a { color: inherit; transition: var(--transition); }
.product-title a:hover { color: var(--green); }
.product-specs { font-size: 0.78rem; color: var(--graphite-light); margin-bottom: 12px; line-height: 1.6; flex: 1; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.stars { color: #f59e0b; font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: var(--graphite-light); }
.product-price { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 12px; }
.price-current { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.price-old { font-size: 0.85rem; color: var(--graphite-light); text-decoration: line-through; }
.price-unit { font-size: 0.75rem; color: var(--graphite-light); }
.product-card-footer { border-top: 1px solid var(--gray-mid); padding: 12px 16px; }

/* ==============================
   SIDEBAR & FILTERS
============================== */
.page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.filter-widget {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.filter-widget-title {
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.filter-widget-title svg { width: 16px; height: 16px; color: var(--graphite-light); transition: var(--transition); }
.filter-widget-title.open svg { transform: rotate(180deg); }
.filter-widget-body { padding: 14px 18px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--graphite);
  transition: var(--transition);
}
.filter-option:hover { color: var(--green); }
.filter-option input[type="checkbox"] { accent-color: var(--green); width: 15px; height: 15px; }
.filter-option-count { margin-left: auto; font-size: 0.75rem; color: var(--graphite-light); }

.price-range { display: flex; flex-direction: column; gap: 12px; }
.range-track { position: relative; height: 4px; background: var(--gray-mid); border-radius: 2px; }
.range-track-fill { position: absolute; height: 100%; background: var(--green); border-radius: 2px; left: 0; right: 20%; }
input[type="range"] { width: 100%; accent-color: var(--green); }
.range-values { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--graphite); font-weight: 600; }

/* ==============================
   SECTION HEADERS
============================== */
.section-header { margin-bottom: 48px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--graphite-light); max-width: 580px; line-height: 1.7; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ==============================
   COMPARISON TABLE
============================== */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th { background: var(--gray-light); padding: 14px 18px; text-align: left; font-weight: 600; color: var(--black); border-bottom: 2px solid var(--gray-mid); }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--gray-mid); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-light); }
.compare-table .feature-name { font-weight: 500; color: var(--black); }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: #ef4444; }
.compare-table th:first-child { width: 200px; }
.compare-table-wrap { border: 1px solid var(--gray-mid); border-radius: var(--radius-md); overflow: hidden; overflow-x: auto; }

/* ==============================
   BLOG / ARTICLE CARDS
============================== */
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-image { aspect-ratio: 16/9; overflow: hidden; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  display: inline-block;
  background: var(--olive-light);
  color: var(--olive);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.article-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.article-card-body h3 a { color: var(--black); transition: var(--transition); }
.article-card-body h3 a:hover { color: var(--green); }
.article-card-body p { font-size: 0.875rem; color: var(--graphite-light); line-height: 1.65; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-mid); font-size: 0.78rem; color: var(--graphite-light); }
.article-meta svg { width: 14px; height: 14px; }

/* ==============================
   FEATURE BOXES
============================== */
.feature-box {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-box:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.feature-box h4 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-box p { font-size: 0.875rem; color: var(--graphite-light); line-height: 1.65; }

/* ==============================
   TRUST BAR / STATS
============================== */
.trust-bar { background: var(--gray-light); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 20px 0; }
.trust-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.9rem; color: var(--black); font-weight: 600; }
.trust-text span { font-size: 0.78rem; color: var(--graphite-light); }

/* ==============================
   NEWSLETTER
============================== */
.newsletter-section {
  background: var(--green);
  padding: 60px 0;
}
.newsletter-section h2 { color: white; margin-bottom: 10px; }
.newsletter-section p { color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: rgba(255,255,255,.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,.3);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form input:focus { outline: none; background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }
.newsletter-form button { background: white; color: var(--green); padding: 13px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; transition: var(--transition); }
.newsletter-form button:hover { background: var(--beige); }

/* ==============================
   FOOTER
============================== */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: white; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 14px; margin-bottom: 20px; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.social-btn:hover { background: var(--green); color: white; }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .7px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: white; }

/* ==============================
   FORMS
============================== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--black); margin-bottom: 7px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--graphite);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,128,61,.1); }
.form-input::placeholder { color: var(--graphite-light); }
textarea.form-input { min-height: 130px; resize: vertical; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%236B7280' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-hint { font-size: 0.78rem; color: var(--graphite-light); margin-top: 5px; }
.form-error { font-size: 0.78rem; color: #ef4444; margin-top: 5px; }
.form-success {
  background: var(--green-light);
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

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

/* ==============================
   TABS
============================== */
.tabs { border-bottom: 2px solid var(--gray-mid); margin-bottom: 30px; display: flex; gap: 0; }
.tab-btn {
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--graphite-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ==============================
   CART & WISHLIST
============================== */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.cart-item-image { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--gray-mid); flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.cart-item-meta { font-size: 0.8rem; color: var(--graphite-light); margin-bottom: 10px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-dark); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn { width: 32px; height: 32px; background: var(--gray-light); font-size: 1rem; font-weight: 600; color: var(--graphite); transition: var(--transition); }
.qty-btn:hover { background: var(--green); color: white; }
.qty-input { width: 44px; height: 32px; border: none; border-left: 1.5px solid var(--gray-dark); border-right: 1.5px solid var(--gray-dark); text-align: center; font-size: 0.875rem; font-weight: 600; }
.cart-summary {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.875rem; border-bottom: 1px solid var(--gray-mid); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--black); padding-top: 16px; }
.summary-row .price { font-weight: 600; color: var(--green); }

/* ==============================
   INFO BOXES
============================== */
.info-box {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.info-box.info { background: #eff6ff; border-left: 4px solid #3b82f6; }
.info-box.success { background: var(--green-light); border-left: 4px solid var(--green); }
.info-box.warning { background: #fffbeb; border-left: 4px solid #f59e0b; }
.info-box svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.info-box.info svg { color: #3b82f6; }
.info-box.success svg { color: var(--green); }
.info-box.warning svg { color: #f59e0b; }
.info-box-content h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.info-box-content p { font-size: 0.85rem; line-height: 1.6; color: var(--graphite); }

/* ==============================
   ACCORDION
============================== */
.accordion-item { border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.accordion-header:hover { background: var(--gray-light); }
.accordion-header svg { width: 18px; height: 18px; color: var(--graphite-light); transition: var(--transition); flex-shrink: 0; }
.accordion-item.open .accordion-header { background: var(--gray-light); }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body { padding: 0 20px 18px; font-size: 0.875rem; color: var(--graphite); line-height: 1.7; display: none; }
.accordion-item.open .accordion-body { display: block; }

/* ==============================
   PAGINATION
============================== */
.pagination { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.page-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gray-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--green); color: var(--green); }
.page-btn.active { background: var(--green); color: white; border-color: var(--green); }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ==============================
   MOBILE MENU
============================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  overflow-y: auto;
  transition: left .3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { left: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--gray-mid); }
.mobile-menu-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--gray-light); cursor: pointer; }
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-nav { padding: 10px 0; }
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite);
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.mobile-menu-nav a:hover { background: var(--gray-light); color: var(--green); }
.mobile-menu-footer { padding: 20px; margin-top: auto; border-top: 1px solid var(--gray-mid); }
.hamburger { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--gray-light); cursor: pointer; display: none; }
.hamburger svg { width: 20px; height: 20px; }

/* ==============================
   PRODUCT DETAIL
============================== */
.product-gallery { position: sticky; top: 90px; }
.gallery-main { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 12px; border: 1px solid var(--gray-mid); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--gray-mid);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--green); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding-left: 16px; }
.product-detail-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
.product-detail-price { font-size: 2.2rem; font-weight: 800; color: var(--green); margin-bottom: 20px; }
.product-detail-price small { font-size: 1rem; font-weight: 500; color: var(--graphite-light); }
.spec-table { width: 100%; font-size: 0.875rem; }
.spec-table tr td:first-child { font-weight: 600; color: var(--black); padding: 8px 0; width: 45%; }
.spec-table tr td:last-child { color: var(--graphite); padding: 8px 0 8px 16px; }
.spec-table tr { border-bottom: 1px solid var(--gray-mid); }
.spec-table tr:last-child { border-bottom: none; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; }
.stock-badge.in-stock { background: var(--green-light); color: var(--green); }
.stock-badge.low-stock { background: #fffbeb; color: #d97706; }

/* ==============================
   COOKIE BANNER
============================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite);
  color: white;
  padding: 18px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .35s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.85rem; color: rgba(255,255,255,.85); flex: 1; min-width: 260px; line-height: 1.6; }
.cookie-inner p a { color: var(--olive); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

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

/* ==============================
   POLICY PAGES
============================== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h1 { margin-bottom: 6px; }
.policy-content .last-updated { font-size: 0.85rem; color: var(--graphite-light); margin-bottom: 40px; display: block; }
.policy-content h2 { font-size: 1.35rem; margin: 40px 0 14px; color: var(--black); padding-bottom: 10px; border-bottom: 2px solid var(--green-light); }
.policy-content h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.policy-content p { margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }
.policy-content ul, .policy-content ol { margin: 14px 0 20px 26px; }
.policy-content ul li, .policy-content ol li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.7; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.875rem; }
.policy-content table th { background: var(--gray-light); padding: 12px 14px; text-align: left; font-weight: 600; border: 1px solid var(--gray-dark); }
.policy-content table td { padding: 11px 14px; border: 1px solid var(--gray-dark); vertical-align: top; }
.policy-toc { background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 24px; margin-bottom: 40px; }
.policy-toc h4 { margin-bottom: 14px; font-size: 1rem; }
.policy-toc ol { margin: 0 0 0 20px; }
.policy-toc ol li { margin-bottom: 6px; }
.policy-toc ol li a { color: var(--green); font-size: 0.875rem; transition: var(--transition); }
.policy-toc ol li a:hover { color: var(--green-dark); text-decoration: underline; }

/* ==============================
   ABOUT PAGE
============================== */
.about-hero { background: var(--gray-light); padding: 80px 0; }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h4 { margin-bottom: 4px; }
.team-card-body span { font-size: 0.82rem; color: var(--olive); font-weight: 600; }
.team-card-body p { font-size: 0.82rem; color: var(--graphite-light); margin-top: 8px; }
.stat-box {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
}
.stat-box .number { font-size: 2.8rem; font-weight: 800; color: var(--green); font-family: var(--font-serif); line-height: 1; margin-bottom: 6px; }
.stat-box .label { font-size: 0.875rem; color: var(--graphite-light); }

/* ==============================
   ACCOUNT PAGE
============================== */
.account-sidebar { border: 1px solid var(--gray-mid); border-radius: var(--radius-md); overflow: hidden; }
.account-sidebar .user-info { background: var(--green); color: white; padding: 24px; }
.account-sidebar .user-info h4 { color: white; margin-bottom: 4px; }
.account-sidebar .user-info span { font-size: 0.82rem; color: rgba(255,255,255,.8); }
.account-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--graphite);
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.account-nav a:hover, .account-nav a.active { background: var(--gray-light); color: var(--green); }
.account-nav a svg { width: 17px; height: 17px; color: var(--graphite-light); }
.account-nav a.active svg { color: var(--green); }

/* ==============================
   MISC
============================== */
.divider { border: none; border-top: 1px solid var(--gray-mid); margin: 32px 0; }
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--graphite);
  font-weight: 500;
}
.tag.green { background: var(--green-light); border-color: var(--green); color: var(--green); }
.tag.olive { background: var(--olive-light); border-color: var(--olive); color: var(--olive); }
.select-box { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--graphite); }
.select-box select { padding: 7px 30px 7px 12px; border: 1.5px solid var(--gray-dark); border-radius: var(--radius-sm); font-size: 0.85rem; background: white; color: var(--graphite); cursor: pointer; }
.select-box select:focus { outline: none; border-color: var(--green); }
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state-icon { font-size: 4rem; margin-bottom: 18px; opacity: .4; }
.empty-state h3 { margin-bottom: 10px; }
.empty-state p { color: var(--graphite-light); margin-bottom: 24px; }
.notice-bar { background: var(--olive-light); border-bottom: 1px solid var(--olive); padding: 10px 0; font-size: 0.82rem; color: var(--graphite); text-align: center; }
.notice-bar strong { color: var(--olive); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 220px 1fr; gap: 24px; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .sidebar.mobile-open { display: block; }
  .product-gallery { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .search-bar { display: none; }
  .hero { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .header-btn span { display: none; }
  .header-btn { padding: 8px; }
  .top-bar .top-bar-left { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
