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

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --white: #FFFFFF;
  --sage: #84A98C;
  --sage-dark: #6B8F74;
  --sage-light: #A8C5B0;
  --beige: #E9D8A6;
  --beige-light: #F5EDD4;
  --charcoal: #374151;
  --charcoal-light: #6B7280;
  --soft-gray: #D1D5DB;
  --light-gray: #F8FAFC;
  --border: #E5E7EB;
  --shadow: 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: 10px;
  --radius-lg: 16px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: 0.25s ease;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { line-height: 1.7; color: var(--charcoal-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   LAYOUT
============================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 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; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ============================================
   HEADER
============================================ */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-top { background: var(--charcoal); padding: 8px 0; }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; }
.header-top-text { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.header-top-links { display: flex; gap: 20px; }
.header-top-links a { color: rgba(255,255,255,0.75); font-size: 0.8rem; transition: color var(--transition); }
.header-top-links a:hover { color: var(--beige); }
.header-main { padding: 16px 0; }
.header-main-inner { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 42px; height: 42px; background: var(--sage); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; }
.logo-tagline { font-size: 0.68rem; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.08em; }
.header-search { flex: 1; max-width: 480px; }
.search-form { display: flex; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color var(--transition); }
.search-form:focus-within { border-color: var(--sage); }
.search-input { flex: 1; padding: 10px 16px; border: none; outline: none; font-size: 0.9rem; background: var(--light-gray); color: var(--charcoal); }
.search-btn { padding: 10px 16px; background: var(--sage); color: var(--white); border: none; cursor: pointer; transition: background var(--transition); }
.search-btn:hover { background: var(--sage-dark); }
.search-btn svg { width: 18px; height: 18px; }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-action-btn { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); transition: all var(--transition); position: relative; }
.header-action-btn:hover { background: var(--light-gray); color: var(--sage); }
.header-action-btn svg { width: 20px; height: 20px; }
.action-count { position: absolute; top: 2px; right: 6px; background: var(--sage); color: var(--white); font-size: 0.65rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* NAV */
.site-nav { border-top: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; }
.nav-list { display: flex; gap: 0; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 14px 18px; font-size: 0.875rem; font-weight: 500; color: var(--charcoal); transition: all var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--sage); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px; background: var(--sage); border-radius: 2px; }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 1px); left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 999; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 20px; font-size: 0.875rem; color: var(--charcoal); transition: all var(--transition); }
.dropdown a:hover { background: var(--light-gray); color: var(--sage); padding-left: 26px; }
.nav-cta { margin-left: auto; padding: 8px 20px; background: var(--sage); color: var(--white); border-radius: 8px; font-size: 0.875rem; font-weight: 600; transition: all var(--transition); white-space: nowrap; }
.nav-cta:hover { background: var(--sage-dark); }
.mobile-menu-btn { display: none; padding: 8px; border-radius: 6px; }
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb-bar { padding: 14px 0; background: var(--light-gray); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: 0.8rem; color: var(--charcoal-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb-sep { color: var(--soft-gray); font-size: 0.8rem; }
.breadcrumb-current { font-size: 0.8rem; color: var(--charcoal); font-weight: 500; }

/* ============================================
   BUTTONS
============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: all var(--transition); cursor: pointer; text-decoration: none; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); }
.btn-outline { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: var(--white); }
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: #1F2937; border-color: #1F2937; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 8px; }
.btn svg { width: 18px; height: 18px; }

/* ============================================
   HERO (NO BADGES/PROMOS)
============================================ */
.hero { position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(55,65,81,0.72) 0%, rgba(55,65,81,0.35) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0; }
.hero-inner { max-width: 580px; }
.hero-eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--beige); font-weight: 600; margin-bottom: 20px; display: block; }
.hero-title { color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.hero-desc { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   SECTION HEADERS
============================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }
.section-eyebrow { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sage); font-weight: 700; display: block; margin-bottom: 14px; }
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--charcoal-light); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.section-header.left .section-subtitle { margin: 0; }

/* ============================================
   PRODUCT CARDS
============================================ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--sage-light); }
.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.04); }
.product-card-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(8px); transition: all var(--transition); }
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-card-action-btn { width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all var(--transition); }
.product-card-action-btn:hover { background: var(--sage); color: var(--white); }
.product-card-action-btn svg { width: 16px; height: 16px; }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.75rem; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.product-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; line-height: 1.3; }
.product-name a:hover { color: var(--sage); }
.product-specs-mini { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.spec-tag { font-size: 0.72rem; background: var(--light-gray); color: var(--charcoal-light); padding: 3px 10px; border-radius: 20px; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 1px; }
.rating-count { font-size: 0.78rem; color: var(--charcoal-light); }
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); }
.product-price .old { font-size: 0.85rem; font-weight: 400; color: var(--charcoal-light); text-decoration: line-through; margin-right: 6px; }
.product-compare-btn { font-size: 0.78rem; color: var(--sage); font-weight: 600; padding: 6px 14px; border: 1.5px solid var(--sage); border-radius: 6px; transition: all var(--transition); }
.product-compare-btn:hover { background: var(--sage); color: var(--white); }

/* ============================================
   CATEGORY CARDS
============================================ */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(55,65,81,0.8) 0%, rgba(55,65,81,0.2) 60%, transparent 100%); }
.category-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; }
.category-card-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.category-card-count { font-size: 0.78rem; color: rgba(255,255,255,0.72); }
.category-card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--beige); font-size: 0.8rem; font-weight: 600; margin-top: 10px; transition: gap var(--transition); }
.category-card:hover .category-card-link { gap: 8px; }

/* ============================================
   FILTERS SIDEBAR
============================================ */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.filters-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.filters-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); }
.filters-reset { font-size: 0.8rem; color: var(--sage); font-weight: 600; cursor: pointer; }
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-group-title { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.filter-group-title svg { width: 14px; height: 14px; transition: transform var(--transition); }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--sage); cursor: pointer; }
.filter-option label { font-size: 0.875rem; color: var(--charcoal); cursor: pointer; flex: 1; }
.filter-option .filter-count { font-size: 0.75rem; color: var(--charcoal-light); }
.price-range-inputs { display: flex; gap: 12px; align-items: center; }
.price-input-wrap { flex: 1; }
.price-input-wrap input { width: 100%; padding: 8px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.85rem; outline: none; transition: border-color var(--transition); }
.price-input-wrap input:focus { border-color: var(--sage); }
.price-sep { color: var(--charcoal-light); font-size: 0.85rem; }

/* ============================================
   CATALOG TOOLBAR
============================================ */
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding: 14px 20px; background: var(--light-gray); border-radius: var(--radius); }
.catalog-count { font-size: 0.875rem; color: var(--charcoal-light); }
.catalog-count strong { color: var(--charcoal); }
.catalog-sort { display: flex; align-items: center; gap: 10px; }
.catalog-sort label { font-size: 0.85rem; color: var(--charcoal-light); }
.sort-select { padding: 7px 30px 7px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.85rem; background: var(--white); color: var(--charcoal); outline: none; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.view-toggle { display: flex; gap: 4px; }
.view-toggle-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--charcoal-light); transition: all var(--transition); }
.view-toggle-btn.active, .view-toggle-btn:hover { background: var(--sage); color: var(--white); }
.view-toggle-btn svg { width: 16px; height: 16px; }

/* ============================================
   COMPARISON TABLE
============================================ */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--charcoal); color: var(--white); font-size: 0.85rem; font-weight: 600; }
.compare-table tr:nth-child(even) td { background: var(--light-gray); }
.compare-table tr:hover td { background: var(--beige-light); }
.compare-table .row-label { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); width: 200px; }
.compare-table .check { color: var(--sage); font-size: 1.1rem; }
.compare-table .cross { color: #EF4444; font-size: 1.1rem; }
.compare-product-img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; margin: 0 auto 8px; display: block; }
.compare-product-name { font-size: 0.85rem; font-weight: 600; text-align: center; }
.compare-product-price { font-size: 1rem; font-weight: 700; color: var(--sage); text-align: center; margin-top: 4px; }

/* ============================================
   BLOG CARDS
============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--light-gray); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.blog-category { font-size: 0.72rem; background: var(--beige-light); color: var(--sage-dark); padding: 4px 12px; border-radius: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-date { font-size: 0.78rem; color: var(--charcoal-light); }
.blog-read-time { font-size: 0.78rem; color: var(--charcoal-light); }
.blog-card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 12px; line-height: 1.35; }
.blog-card-title a:hover { color: var(--sage); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--charcoal-light); line-height: 1.65; margin-bottom: 18px; }
.blog-card-link { font-size: 0.85rem; color: var(--sage); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.blog-card-link:hover { gap: 8px; }

/* ============================================
   PRODUCT DETAIL
============================================ */
.product-detail-layout { display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: start; }
.product-gallery { position: sticky; top: 90px; }
.product-gallery-main { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--light-gray); margin-bottom: 16px; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-gallery-thumb { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--light-gray); border: 2px solid transparent; cursor: pointer; transition: border-color var(--transition); }
.product-gallery-thumb.active, .product-gallery-thumb:hover { border-color: var(--sage); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { }
.product-detail-brand { font-size: 0.8rem; color: var(--sage); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.product-detail-title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 16px; line-height: 1.2; }
.product-detail-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.product-detail-price { font-size: 1.8rem; font-weight: 700; color: var(--charcoal); }
.product-detail-price .old-price { font-size: 1.1rem; font-weight: 400; color: var(--charcoal-light); text-decoration: line-through; margin-right: 10px; }
.product-availability { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; }
.availability-dot { width: 8px; height: 8px; border-radius: 50%; }
.in-stock { color: #16A34A; }
.in-stock .availability-dot { background: #16A34A; }
.product-specs-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.product-specs-table tr { border-bottom: 1px solid var(--border); }
.product-specs-table td { padding: 10px 0; font-size: 0.875rem; }
.product-specs-table .spec-label { color: var(--charcoal-light); width: 45%; }
.product-specs-table .spec-value { color: var(--charcoal); font-weight: 500; }
.product-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 40px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all var(--transition); }
.qty-btn:hover { background: var(--light-gray); }
.qty-input { width: 56px; height: 48px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 1rem; font-weight: 600; outline: none; }

/* ============================================
   TABS
============================================ */
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 32px; overflow-x: auto; }
.tab-btn { padding: 12px 24px; font-size: 0.9rem; font-weight: 600; color: var(--charcoal-light); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--transition); white-space: nowrap; cursor: pointer; }
.tab-btn.active, .tab-btn:hover { color: var(--sage); border-bottom-color: var(--sage); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   STATS BAR
============================================ */
.stats-bar { background: var(--charcoal); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-value { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--beige); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

/* ============================================
   FEATURES / USP
============================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { padding: 32px 24px; text-align: center; border-radius: var(--radius-lg); background: var(--light-gray); transition: all var(--transition); }
.feature-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; background: var(--beige-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.feature-icon svg { width: 28px; height: 28px; color: var(--sage); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.feature-desc { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.65; }

/* ============================================
   INFO BOXES
============================================ */
.info-box { padding: 20px 24px; border-radius: var(--radius); border-left: 4px solid var(--sage); background: var(--beige-light); margin-bottom: 24px; }
.info-box.warning { border-left-color: #F59E0B; background: #FFFBEB; }
.info-box.tip { border-left-color: var(--sage); background: #F0FFF4; }
.info-box-title { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 6px; }
.info-box p { font-size: 0.875rem; margin-bottom: 0; }

/* ============================================
   FORMS
============================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; color: var(--charcoal); background: var(--white); outline: none; transition: border-color var(--transition); }
.form-control:focus { border-color: var(--sage); }
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-hint { font-size: 0.78rem; color: var(--charcoal-light); margin-top: 5px; }
.form-success { display: none; background: #ECFDF5; border: 1.5px solid #6EE7B7; border-radius: var(--radius); padding: 20px 24px; text-align: center; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 2rem; margin-bottom: 10px; }
.form-success-title { font-weight: 700; color: #065F46; margin-bottom: 6px; font-size: 1rem; }
.form-success-text { font-size: 0.875rem; color: #047857; }

/* ============================================
   PAGINATION
============================================ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 56px; }
.page-item { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: all var(--transition); cursor: pointer; }
.page-item a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--charcoal); }
.page-item:hover { background: var(--light-gray); }
.page-item.active { background: var(--sage); }
.page-item.active a { color: var(--white); }
.page-item.dots { cursor: default; }
.page-item.dots:hover { background: transparent; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--charcoal); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 320px repeat(4, 1fr); gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-name { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand .logo-mark { background: var(--sage); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-top: 18px; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--beige); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--beige); }

/* ============================================
   GUIDE / ARTICLE PAGES
============================================ */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.article-body h2 { font-size: 1.6rem; margin-top: 40px; margin-bottom: 16px; color: var(--charcoal); }
.article-body h3 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 12px; }
.article-body p { margin-bottom: 18px; font-size: 0.95rem; }
.article-body ul, .article-body ol { margin-bottom: 18px; padding-left: 20px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 0.95rem; color: var(--charcoal-light); margin-bottom: 6px; line-height: 1.65; }
.article-body img { border-radius: var(--radius-lg); margin: 28px 0; }
.article-body blockquote { border-left: 4px solid var(--sage); padding: 16px 24px; background: var(--beige-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }
.article-body blockquote p { margin-bottom: 0; font-style: italic; color: var(--charcoal); }
.article-meta-bar { display: flex; align-items: center; gap: 20px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.article-meta-item { font-size: 0.82rem; color: var(--charcoal-light); display: flex; align-items: center; gap: 6px; }
.article-meta-item svg { width: 14px; height: 14px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--sage); }
.sidebar-product-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-product-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-product-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.sidebar-product-info .name { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.sidebar-product-info .price { font-size: 0.9rem; font-weight: 700; color: var(--sage); }
.sidebar-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--charcoal); transition: color var(--transition); }
.sidebar-nav-link:hover { color: var(--sage); }
.sidebar-nav-link svg { width: 14px; height: 14px; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; }
.contact-info-card { background: var(--charcoal); border-radius: var(--radius-lg); padding: 40px; color: var(--white); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; background: var(--sage); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.map-placeholder { background: var(--light-gray); border-radius: var(--radius-lg); height: 280px; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--border); }
.map-placeholder span { font-size: 0.9rem; color: var(--charcoal-light); }

/* ============================================
   POLICY PAGES
============================================ */
.policy-layout { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-header { margin-bottom: 48px; }
.policy-title { margin-bottom: 12px; }
.policy-meta { font-size: 0.85rem; color: var(--charcoal-light); }
.policy-toc { background: var(--light-gray); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 40px; }
.policy-toc-title { font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.policy-toc ol { list-style: decimal; padding-left: 20px; }
.policy-toc li { font-size: 0.875rem; margin-bottom: 8px; }
.policy-toc li a { color: var(--sage); }
.policy-toc li a:hover { text-decoration: underline; }
.policy-body h2 { font-size: 1.35rem; margin-top: 48px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.policy-body h3 { font-size: 1.05rem; margin-top: 28px; margin-bottom: 10px; color: var(--charcoal); }
.policy-body p { font-size: 0.925rem; line-height: 1.8; margin-bottom: 16px; color: #4B5563; }
.policy-body ul, .policy-body ol { margin-bottom: 18px; padding-left: 22px; }
.policy-body ul { list-style: disc; }
.policy-body ol { list-style: decimal; }
.policy-body li { font-size: 0.925rem; color: #4B5563; line-height: 1.75; margin-bottom: 6px; }
.policy-body strong { color: var(--charcoal); }
.policy-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.875rem; }
.policy-body table th { background: var(--charcoal); color: var(--white); padding: 10px 16px; text-align: left; }
.policy-body table td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.policy-body table tr:nth-child(even) td { background: var(--light-gray); }

/* ============================================
   ABOUT PAGE
============================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 32px 24px; background: var(--light-gray); border-radius: var(--radius-lg); }
.team-card-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--sage); }
.team-card-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-card-role { font-size: 0.82rem; color: var(--sage); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card-bio { font-size: 0.85rem; color: var(--charcoal-light); margin-top: 10px; line-height: 1.6; }

/* ============================================
   WISHLIST PAGE
============================================ */
.wishlist-table { width: 100%; border-collapse: collapse; }
.wishlist-table th { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal-light); padding: 12px 16px; border-bottom: 2px solid var(--border); text-align: left; }
.wishlist-table td { padding: 18px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.wishlist-product { display: flex; align-items: center; gap: 16px; }
.wishlist-product img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; }
.wishlist-product-name { font-weight: 600; font-size: 0.9rem; }
.wishlist-product-brand { font-size: 0.78rem; color: var(--charcoal-light); }
.wishlist-remove { color: #EF4444; cursor: pointer; transition: all var(--transition); }
.wishlist-remove:hover { transform: scale(1.1); }

/* ============================================
   BADGES & STATUS
============================================ */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-green { background: #ECFDF5; color: #065F46; }
.badge-amber { background: #FFFBEB; color: #92400E; }
.badge-blue { background: #EFF6FF; color: #1D4ED8; }
.badge-gray { background: var(--light-gray); color: var(--charcoal-light); }

/* ============================================
   UTILITY
============================================ */
.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; }
.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; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-size: 0.78rem; padding: 5px 14px; background: var(--light-gray); color: var(--charcoal-light); border-radius: 20px; border: 1px solid var(--border); transition: all var(--transition); cursor: pointer; }
.tag:hover, .tag.active { background: var(--sage); color: var(--white); border-color: var(--sage); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sticky-header-offset { scroll-margin-top: 90px; }

/* ============================================
   COOKIE BANNER
============================================ */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 700px; margin: 0 auto; background: var(--charcoal); color: var(--white); padding: 24px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 9999; display: flex; align-items: center; gap: 20px; }
.cookie-banner.hidden { display: none; }
.cookie-banner-text { flex: 1; font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.cookie-banner-text a { color: var(--beige); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .catalog-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 1024px) {
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .header-search { display: none; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-link { border-bottom: 1px solid var(--border); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light-gray); }
  .mobile-menu-btn { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner-actions { flex-direction: column; width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* auto-fix structural */
.footer-col { }
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;opacity:.65;}
.footer-col ul{padding:0;list-style:none}.footer-col li{margin-bottom:7px}
.footer-brand { }
.footer-brand .logo-text,.footer-brand .site-logo__name{color:#fff}
.cookie-banner,.kolacic-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1a2e;color:#fff;padding:16px 24px;z-index:9999;display:none}