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

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

:root {
  --white: #FFFFFF;
  --green: #166534;
  --green-dark: #0f4a25;
  --green-light: #22c55e;
  --green-muted: #dcfce7;
  --sky: #38BDF8;
  --sky-dark: #0284c7;
  --slate: #334155;
  --slate-light: #64748b;
  --sand: #EAD7B7;
  --sand-dark: #d4b896;
  --gray-light: #F8FAFC;
  --gray-mid: #e2e8f0;
  --gray-border: #cbd5e1;
  --text-primary: #1a2332;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Sora', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.22s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-primary); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
p { color: var(--text-secondary); line-height: 1.7; }

/* ===== UTILITIES ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-sky { color: var(--sky-dark); }
.text-muted { color: var(--text-muted); }
.bg-light { background: var(--gray-light); }
.bg-sand { background: var(--sand); }
.bg-green { background: var(--green); }
.bg-white { background: var(--white); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9375rem; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,101,52,0.30); }
.btn-secondary { background: var(--white); color: var(--green); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green-muted); }
.btn-sky { background: var(--sky); color: var(--white); }
.btn-sky:hover { background: var(--sky-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { padding: 10px; border-radius: var(--radius-sm); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--green-dark); color: var(--white); padding: 8px 0; font-size: 0.8125rem; }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.top-bar__info { display: flex; align-items: center; gap: 20px; }
.top-bar__info a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.top-bar__info a:hover { color: var(--white); }
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__right { display: flex; align-items: center; gap: 16px; }

/* ===== HEADER ===== */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.header__logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 40px; background: var(--green); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { font-family: var(--font-display); font-size: 1.625rem; font-weight: 800; color: var(--green); letter-spacing: -0.5px; }
.logo-text span { color: var(--sky-dark); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 0.9375rem; font-weight: 500; color: var(--slate); border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-muted); }
.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% + 8px); left: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-border); min-width: 240px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 200; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition); }
.dropdown__item:hover { background: var(--gray-light); color: var(--green); }
.dropdown__item-icon { width: 28px; height: 28px; background: var(--green-muted); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown__item-icon svg { width: 14px; height: 14px; color: var(--green); }
.dropdown__divider { height: 1px; background: var(--gray-border); margin: 6px 0; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.header__search { position: relative; }
.header__search input { padding: 9px 16px 9px 40px; border: 1.5px solid var(--gray-border); border-radius: 50px; font-size: 0.875rem; background: var(--gray-light); width: 220px; transition: var(--transition); }
.header__search input:focus { outline: none; border-color: var(--green); width: 260px; background: var(--white); }
.header__search .search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.header__search .search-icon svg { width: 16px; height: 16px; }

.compare-btn { position: relative; display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-sm); color: var(--slate); font-size: 0.875rem; font-weight: 500; transition: var(--transition); cursor: pointer; background: var(--gray-light); border: none; }
.compare-btn:hover { background: var(--green-muted); color: var(--green); }
.compare-count { background: var(--green); color: var(--white); font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.hamburger span { width: 24px; height: 2px; background: var(--slate); border-radius: 2px; transition: var(--transition); }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--gray-light); border-bottom: 1px solid var(--gray-mid); padding: 12px 0; }
.breadcrumb__list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.85rem; }
.breadcrumb__item { color: var(--text-muted); }
.breadcrumb__item a { color: var(--text-secondary); transition: var(--transition); }
.breadcrumb__item a:hover { color: var(--green); }
.breadcrumb__sep { color: var(--gray-border); }
.breadcrumb__item.active { color: var(--text-primary); font-weight: 500; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #1a7a41 100%); padding: 80px 0; color: var(--white); overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero__content { }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 6px 16px; font-size: 0.8125rem; font-weight: 500; margin-bottom: 20px; letter-spacing: 0.03em; text-transform: uppercase; }
.hero__title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero__title span { color: var(--sky); }
.hero__desc { font-size: 1.0625rem; opacity: 0.88; margin-bottom: 36px; max-width: 500px; line-height: 1.7; color: rgba(255,255,255,0.88); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.hero__stat { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 18px; text-align: center; }
.hero__stat-num { font-size: 1.75rem; font-weight: 800; color: var(--sky); font-family: var(--font-display); }
.hero__stat-label { font-size: 0.8rem; opacity: 0.78; margin-top: 4px; }
.hero__image { position: relative; }
.hero__img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.32); }
.hero__img-wrap img { width: 100%; height: 440px; object-fit: cover; }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-eyebrow { display: inline-block; color: var(--green); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2.125rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.3px; }
.section-desc { color: var(--text-secondary); font-size: 1.0625rem; max-width: 600px; }
.section-header--center .section-desc { margin: 0 auto; }

/* ===== CATEGORY CARDS ===== */
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.category-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: var(--transition); cursor: pointer; }
.category-card:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(22,101,52,0.12); transform: translateY(-3px); }
.category-card__icon { width: 56px; height: 56px; background: var(--green-muted); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.category-card__icon svg { width: 26px; height: 26px; color: var(--green); }
.category-card__name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.category-card__count { font-size: 0.8125rem; color: var(--text-muted); }
.category-card__arrow { margin-top: 14px; color: var(--green); font-size: 1.1rem; opacity: 0; transform: translateX(-4px); transition: var(--transition); }
.category-card:hover .category-card__arrow { opacity: 1; transform: translateX(0); }

/* ===== PRODUCT CARDS ===== */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.product-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__img { position: relative; background: var(--gray-light); height: 220px; overflow: hidden; }
.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.05); }
.product-card__tag { position: absolute; top: 12px; left: 12px; background: var(--green); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.product-card__wishlist { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--transition); border: none; }
.product-card__wishlist:hover { background: var(--green-muted); }
.product-card__wishlist svg { width: 15px; height: 15px; color: var(--slate-light); }
.product-card__body { padding: 18px; }
.product-card__brand { font-size: 0.775rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.product-card__name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.35; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.spec-tag { background: var(--gray-light); color: var(--text-secondary); font-size: 0.75rem; padding: 3px 8px; border-radius: 4px; font-weight: 500; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-top: 1px solid var(--gray-mid); }
.product-card__price { font-size: 1.1875rem; font-weight: 800; color: var(--green); font-family: var(--font-display); }
.product-card__price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-top: 2px; }
.product-card__actions { display: flex; gap: 6px; }

/* ===== CATEGORY PAGE LAYOUT ===== */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filter-panel { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); padding: 24px; position: sticky; top: 92px; }
.filter-panel__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-mid); }
.filter-panel__title { font-size: 1rem; font-weight: 700; }
.filter-reset { font-size: 0.8125rem; color: var(--green); cursor: pointer; background: none; border: none; font-weight: 500; }
.filter-group { margin-bottom: 20px; }
.filter-group__title { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.filter-group__title svg { width: 14px; height: 14px; color: var(--text-muted); transition: var(--transition); }
.filter-group.collapsed .filter-group__title svg { transform: rotate(-90deg); }
.filter-group__body { }
.filter-group.collapsed .filter-group__body { display: none; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; }
.filter-option input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
.filter-option label { font-size: 0.875rem; color: var(--text-secondary); cursor: pointer; flex: 1; }
.filter-option .filter-count { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
.filter-price { display: flex; gap: 8px; align-items: center; }
.filter-price input { flex: 1; padding: 7px 10px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.875rem; }
.filter-price input:focus { outline: none; border-color: var(--green); }
.filter-price span { color: var(--text-muted); font-size: 0.875rem; }
.filter-apply { width: 100%; margin-top: 8px; }
.filter-divider { height: 1px; background: var(--gray-mid); margin: 16px 0; }

/* ===== CATALOG TOOLBAR ===== */
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.catalog-count { font-size: 0.9rem; color: var(--text-secondary); }
.catalog-count strong { color: var(--text-primary); }
.catalog-sort { display: flex; align-items: center; gap: 8px; }
.catalog-sort label { font-size: 0.875rem; color: var(--text-muted); }
.catalog-sort select { padding: 8px 14px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.875rem; cursor: pointer; background: var(--white); }
.catalog-sort select:focus { outline: none; border-color: var(--green); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { padding: 7px 10px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); background: var(--white); cursor: pointer; transition: var(--transition); color: var(--text-muted); }
.view-btn.active, .view-btn:hover { background: var(--green-muted); border-color: var(--green); color: var(--green); }
.view-btn svg { width: 16px; height: 16px; display: block; }

/* ===== SPEC COMPARISON TABLE ===== */
.spec-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1.5px solid var(--gray-border); }
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.9rem; }
.spec-table th { background: var(--green); color: var(--white); padding: 14px 18px; text-align: left; font-weight: 600; font-size: 0.875rem; white-space: nowrap; }
.spec-table th:first-child { background: var(--green-dark); }
.spec-table td { padding: 12px 18px; border-bottom: 1px solid var(--gray-mid); color: var(--text-secondary); vertical-align: top; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) { background: var(--gray-light); }
.spec-table td:first-child { font-weight: 600; color: var(--text-primary); background: var(--gray-light); white-space: nowrap; }
.spec-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--green-muted); color: var(--green); font-size: 0.75rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.spec-badge.blue { background: #e0f2fe; color: var(--sky-dark); }
.spec-badge.orange { background: #fff7ed; color: #c2410c; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.blog-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card__img { height: 200px; overflow: hidden; background: var(--gray-light); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card__cat { background: var(--green-muted); color: var(--green); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }
.blog-card__date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); line-height: 1.4; }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--green); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.blog-card__read { font-size: 0.875rem; color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.blog-card__read:hover { color: var(--green-dark); }

/* ===== FEATURE CARDS ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1.5px solid var(--gray-border); transition: var(--transition); }
.feature-card:hover { border-color: var(--sky); box-shadow: 0 4px 20px rgba(56,189,248,0.12); }
.feature-card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--green-muted), #bbf7d0); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card__icon svg { width: 22px; height: 22px; color: var(--green); }
.feature-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== INFO BOXES ===== */
.info-box { background: var(--gray-light); border-left: 4px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; }
.info-box.blue { border-left-color: var(--sky-dark); }
.info-box.sand { background: #fdf8f0; border-left-color: var(--sand-dark); }
.info-box__title { font-weight: 700; color: var(--text-primary); margin-bottom: 6px; font-size: 0.9375rem; }
.info-box__text { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--green) 0%, #1a7a41 100%); padding: 72px 0; color: var(--white); text-align: center; }
.cta-section__title { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 800; margin-bottom: 16px; }
.cta-section__desc { font-size: 1.0625rem; opacity: 0.88; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.88); }
.cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--sand); padding: 56px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-title { font-size: 1.625rem; font-weight: 800; margin-bottom: 10px; }
.newsletter-desc { color: var(--text-secondary); font-size: 0.9375rem; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--sand-dark); border-radius: var(--radius-sm); font-size: 0.9375rem; background: var(--white); }
.newsletter-form input:focus { outline: none; border-color: var(--green); }
.newsletter-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }

/* ===== TRUSTED BRANDS ===== */
.brands-bar { background: var(--white); padding: 32px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.brands-bar__title { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; text-align: center; text-transform: uppercase; letter-spacing: 0.08em; }
.brands-list { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.brand-item { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--slate-light); opacity: 0.65; transition: var(--transition); letter-spacing: -0.3px; }
.brand-item:hover { opacity: 1; color: var(--green); }

/* ===== FOOTER ===== */
.site-footer { background: var(--slate); color: var(--white); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand__text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.footer-brand__text span { color: var(--sky); }
.footer-brand__desc { font-size: 0.9rem; opacity: 0.72; line-height: 1.7; margin-bottom: 22px; color: rgba(255,255,255,0.72); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact__item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; opacity: 0.78; color: rgba(255,255,255,0.78); }
.footer-contact__item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--sky); }
.footer-contact__item a { color: inherit; transition: var(--transition); }
.footer-contact__item a:hover { opacity: 1; color: var(--sky); }
.footer-col__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 18px; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.875rem; opacity: 0.72; color: rgba(255,255,255,0.72); transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding: 20px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8125rem; opacity: 0.65; color: rgba(255,255,255,0.65); }
.footer-bottom__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom__links a { color: inherit; transition: var(--transition); }
.footer-bottom__links a:hover { opacity: 1; color: var(--sky); }

/* ===== PAGE HERO (Category/Info pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--slate) 0%, var(--green-dark) 100%); padding: 56px 0; color: var(--white); }
.page-hero--light { background: var(--gray-light); color: var(--text-primary); padding: 40px 0; }
.page-hero__title { font-size: clamp(1.75rem, 2.5vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.page-hero--light .page-hero__title { color: var(--text-primary); }
.page-hero__desc { font-size: 1.0625rem; opacity: 0.85; max-width: 640px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.page-hero--light .page-hero__desc { color: var(--text-secondary); opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); padding: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--gray-mid); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; background: var(--green-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--green); }
.contact-info-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-info-value { font-size: 0.9375rem; color: var(--text-primary); font-weight: 600; }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--green); }
.contact-form-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 7px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.9375rem; transition: var(--transition); background: var(--white); color: var(--text-primary); }
.form-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,101,52,0.08); }
.form-input.error { border-color: #ef4444; }
textarea.form-input { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { width: 16px; height: 16px; accent-color: var(--green); margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: 0.875rem; color: var(--text-secondary); }
.form-check label a { color: var(--green); }
.form-success { background: var(--green-muted); border: 1.5px solid var(--green-light); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px; display: none; }
.form-success.show { display: flex; align-items: center; gap: 10px; }
.form-success svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.form-success p { color: var(--green); font-weight: 600; font-size: 0.9375rem; margin: 0; }
.form-error-msg { font-size: 0.8125rem; color: #ef4444; margin-top: 5px; }

/* ===== POLICY PAGES ===== */
.policy-page { padding: 64px 0; }
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h1 { font-size: 2rem; margin-bottom: 8px; }
.policy-meta { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-mid); }
.policy-content h2 { font-size: 1.375rem; margin: 36px 0 14px; padding-top: 8px; border-top: 1px solid var(--gray-mid); }
.policy-content h2:first-of-type { border-top: none; }
.policy-content h3 { font-size: 1.125rem; margin: 24px 0 10px; color: var(--text-primary); }
.policy-content p { margin-bottom: 14px; font-size: 0.9375rem; line-height: 1.75; }
.policy-content ul, .policy-content ol { margin: 12px 0 16px 20px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; }
.policy-content strong { color: var(--text-primary); }
.policy-content a { color: var(--green); }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.policy-content table th { background: var(--gray-light); padding: 12px 16px; text-align: left; font-weight: 600; border: 1px solid var(--gray-border); }
.policy-content table td { padding: 11px 16px; border: 1px solid var(--gray-border); color: var(--text-secondary); }
.policy-content table tr:nth-child(even) td { background: var(--gray-light); }
.policy-toc { background: var(--gray-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 36px; }
.policy-toc h3 { font-size: 0.9375rem; margin-bottom: 12px; margin-top: 0; color: var(--text-primary); border: none; }
.policy-toc ul { margin: 0; padding: 0; list-style: none; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { color: var(--green); font-size: 0.875rem; }
.policy-toc a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.stat-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.stat-card__num { font-size: 2rem; font-weight: 800; color: var(--green); font-family: var(--font-display); }
.stat-card__label { font-size: 0.875rem; color: var(--text-secondary); margin-top: 4px; }
.value-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); margin-bottom: 16px; transition: var(--transition); }
.value-card:hover { border-color: var(--green); }
.value-card__icon { width: 40px; height: 40px; background: var(--green-muted); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-card__icon svg { width: 18px; height: 18px; color: var(--green); }
.value-card__title { font-weight: 700; margin-bottom: 4px; font-size: 0.9375rem; }
.value-card__desc { font-size: 0.875rem; color: var(--text-secondary); }

/* ===== GUIDE/REHBER PAGE ===== */
.guide-card { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.guide-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.guide-card__img { height: 190px; overflow: hidden; background: var(--gray-light); }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; }
.guide-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.guide-card__cat { font-size: 0.775rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.guide-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.guide-card__title a { color: inherit; }
.guide-card__title a:hover { color: var(--green); }
.guide-card__desc { font-size: 0.875rem; color: var(--text-secondary); flex: 1; line-height: 1.6; }
.guide-card__footer { padding: 14px 20px; border-top: 1px solid var(--gray-mid); display: flex; align-items: center; justify-content: space-between; }
.guide-card__time { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.guide-card__time svg { width: 13px; height: 13px; }

/* ===== COMPARISON PAGE ===== */
.compare-section { }
.compare-header { background: var(--green); color: var(--white); }
.compare-header th { padding: 20px; text-align: center; }
.compare-header th:first-child { text-align: left; padding-left: 24px; }
.compare-product-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.compare-product-brand { font-size: 0.8rem; opacity: 0.8; }
.compare-product-price { font-size: 1.25rem; font-weight: 800; color: var(--sky); margin-top: 8px; }
.compare-row-label { font-weight: 600; color: var(--text-primary); padding: 12px 24px; background: var(--gray-light); font-size: 0.875rem; }
.compare-cell { text-align: center; padding: 12px 20px; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--gray-mid); }
.check-yes { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.check-no { color: #94a3b8; }
.compare-highlight { background: rgba(22,101,52,0.04); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-border); font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: var(--transition); background: var(--white); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 14px; }

/* ===== ACCORDION ===== */
.accordion { border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-mid); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; background: var(--white); transition: var(--transition); }
.accordion-header:hover { background: var(--gray-light); }
.accordion-header.open { background: var(--green-muted); }
.accordion-title { font-weight: 600; font-size: 0.9375rem; color: var(--text-primary); }
.accordion-header.open .accordion-title { color: var(--green); }
.accordion-icon { width: 20px; height: 20px; color: var(--text-muted); transition: var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); color: var(--green); }
.accordion-body { display: none; padding: 18px 22px; border-top: 1px solid var(--gray-mid); background: var(--white); }
.accordion-body.open { display: block; }
.accordion-body p { font-size: 0.9375rem; color: var(--text-secondary); }

/* ===== ARTICLE PAGE ===== */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.article-header { margin-bottom: 32px; }
.article-cat { display: inline-block; background: var(--green-muted); color: var(--green); font-size: 0.8125rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.article-title { font-size: clamp(1.5rem, 2.5vw, 2.125rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 0.875rem; flex-wrap: wrap; }
.article-meta svg { width: 14px; height: 14px; }
.article-meta-item { display: flex; align-items: center; gap: 5px; }
.article-img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 32px; }
.article-img img { width: 100%; height: 420px; object-fit: cover; }
.article-body { font-size: 1rem; line-height: 1.78; }
.article-body h2 { font-size: 1.5rem; margin: 36px 0 14px; padding-top: 8px; border-top: 2px solid var(--gray-mid); }
.article-body h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.article-body p { margin-bottom: 16px; color: var(--text-secondary); }
.article-body ul, .article-body ol { margin: 12px 0 18px 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; color: var(--text-secondary); }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body blockquote { border-left: 4px solid var(--green); background: var(--green-muted); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.article-body blockquote p { color: var(--green-dark); font-style: italic; margin: 0; }
.article-sidebar { }
.sidebar-widget { background: var(--white); border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); padding: 22px; margin-bottom: 20px; position: sticky; top: 92px; }
.sidebar-widget__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-mid); }
.sidebar-links a { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--gray-mid); font-size: 0.875rem; color: var(--text-secondary); transition: var(--transition); }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--green); }
.sidebar-links a::before { content: '→'; color: var(--green); font-size: 0.8rem; }

/* ===== MAP EMBED ===== */
.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--gray-border); height: 300px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; }
.mobile-menu.open { display: block; }
.mobile-menu__panel { position: absolute; right: 0; top: 0; bottom: 0; width: 300px; background: var(--white); overflow-y: auto; padding: 20px; box-shadow: var(--shadow-lg); }
.mobile-menu__close { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 20px; }
.mobile-menu__close button { padding: 8px; border: none; background: var(--gray-light); border-radius: var(--radius-sm); cursor: pointer; }
.mobile-nav-link { display: block; padding: 12px 16px; font-size: 0.9375rem; font-weight: 500; color: var(--text-primary); border-bottom: 1px solid var(--gray-mid); transition: var(--transition); }
.mobile-nav-link:hover { color: var(--green); background: var(--green-muted); }
.mobile-nav-sub { padding-left: 16px; }
.mobile-nav-sub a { display: block; padding: 9px 12px; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--gray-mid); }

/* ===== TOAST / NOTIFICATION ===== */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--slate); color: var(--white); padding: 14px 20px; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); z-index: 3000; transform: translateY(80px); opacity: 0; transition: all 0.3s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--green); }
.toast svg { width: 18px; height: 18px; }

/* ===== TAGS ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag { display: inline-block; background: var(--gray-light); color: var(--text-secondary); font-size: 0.8125rem; padding: 5px 12px; border-radius: 50px; border: 1px solid var(--gray-border); transition: var(--transition); }
.tag:hover, .tag.active { background: var(--green-muted); color: var(--green); border-color: var(--green); }

/* ===== PROMO BANNER ===== */
.promo-banner { background: linear-gradient(90deg, var(--sky-dark) 0%, var(--sky) 100%); color: var(--white); padding: 20px 0; }
.promo-banner__inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.promo-banner__text { font-size: 0.9375rem; font-weight: 500; }
.promo-banner__text strong { font-weight: 700; }

/* ===== LOADING ===== */
.skeleton { background: linear-gradient(90deg, var(--gray-mid) 25%, var(--gray-light) 50%, var(--gray-mid) 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .category-grid { grid-template-columns: repeat(4,1fr); }
  .hero__stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__img-wrap { max-width: 520px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
  .site-nav, .header__search { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .blog-grid, .feature-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .brands-list { gap: 20px; }
  .top-bar__info { gap: 12px; }
  .top-bar .top-bar__item:nth-child(3) { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .section { padding: 48px 0; }
  .category-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .hero__stat-num { font-size: 1.35rem; }
  .hero__stats { gap: 10px; }
  .compare-btn span { display: none; }
  .top-bar__right { display: none; }
}
