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

:root {
  --white: #FFFFFF;
  --crimson: #DC2626;
  --crimson-dark: #b91c1c;
  --crimson-light: #fee2e2;
  --graphite: #374151;
  --slate: #334155;
  --light-gray: #F8FAFC;
  --silver: #D1D5DB;
  --silver-dark: #9ca3af;
  --black: #0f172a;
  --border: #e2e8f0;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 32px rgba(0,0,0,.10);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --transition: .2s ease;

  /* auto-aliases */
  --deep-blue: #1e3a5f;
  --emerald: #059669;
  --slate-dark: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #2563eb;
}

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

/* ───── UTILITY ───── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.grid { display: grid; }
.flex { display: flex; }
.text-center { text-align: center; }
.text-crimson { color: var(--crimson); }
.bg-light { background: var(--light-gray); }
.bg-white { background: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ───── TYPOGRAPHY ───── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--slate); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.7; }

.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; margin-bottom: 48px; }
.section-subtitle.center { margin-left: auto; margin-right: auto; }
.label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--crimson); margin-bottom: 8px; display: block; }

/* ───── BUTTONS ───── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; transition: all var(--transition); }
.btn-primary { background: var(--crimson); color: var(--white); }
.btn-primary:hover { background: var(--crimson-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(220,38,38,.3); }
.btn-outline { background: transparent; color: var(--crimson); border: 2px solid var(--crimson); }
.btn-outline:hover { background: var(--crimson); color: var(--white); }
.btn-ghost { background: transparent; color: var(--graphite); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--light-gray); border-color: var(--silver-dark); }
.btn-dark { background: var(--slate); color: var(--white); }
.btn-dark:hover { background: var(--graphite); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }

/* ───── HEADER ───── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.header-top { background: var(--slate); padding: 7px 0; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top-info { display: flex; gap: 24px; align-items: center; }
.header-top-info a { color: var(--silver); font-size: .8rem; display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.header-top-info a:hover { color: var(--white); }
.header-top-info svg { width: 13px; height: 13px; }
.header-top-right { display: flex; gap: 16px; align-items: center; }
.header-top-right a { color: var(--silver); font-size: .8rem; transition: color var(--transition); }
.header-top-right a:hover { color: var(--white); }
.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; background: var(--crimson); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 22px; height: 22px; color: var(--white); }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--slate); }
.logo-text span { color: var(--crimson); }
.header-search { flex: 1; max-width: 540px; position: relative; }
.header-search input { width: 100%; padding: 10px 16px 10px 42px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; color: var(--graphite); background: var(--light-gray); transition: all var(--transition); outline: none; }
.header-search input:focus { border-color: var(--crimson); background: var(--white); box-shadow: 0 0 0 3px rgba(220,38,38,.08); }
.header-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--silver-dark); pointer-events: none; }
.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: var(--radius-sm); color: var(--graphite); font-size: .85rem; font-weight: 500; transition: all var(--transition); position: relative; }
.header-action-btn:hover { background: var(--light-gray); color: var(--crimson); }
.header-action-btn svg { width: 20px; height: 20px; }
.action-count { position: absolute; top: 4px; right: 8px; background: var(--crimson); color: var(--white); font-size: .65rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ───── NAV ───── */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.main-nav .container { display: flex; align-items: stretch; }
.main-nav ul { display: flex; align-items: stretch; gap: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li a { display: flex; align-items: center; gap: 5px; padding: 13px 16px; font-size: .875rem; font-weight: 500; color: var(--graphite); border-bottom: 2px solid transparent; transition: all var(--transition); }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--crimson); border-bottom-color: var(--crimson); }
.main-nav ul li a svg { width: 13px; height: 13px; transition: transform var(--transition); }
.main-nav ul li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--white); border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s; z-index: 200; }
.main-nav ul li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: .875rem; color: var(--graphite); border-bottom: none !important; }
.dropdown a:hover { background: var(--light-gray); color: var(--crimson); }
.dropdown a svg { width: 16px; height: 16px; color: var(--crimson); }

/* ───── MOBILE MENU ───── */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--graphite); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 9999; overflow-y: auto; padding: 24px; }
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu nav a { display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 500; color: var(--graphite); border-bottom: 1px solid var(--border); }
.mobile-menu nav a:hover { color: var(--crimson); }

/* ───── BREADCRUMB ───── */
.breadcrumb { padding: 12px 0; }
.breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb ol li { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-muted); }
.breadcrumb ol li a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb ol li a:hover { color: var(--crimson); }
.breadcrumb ol li:last-child { color: var(--graphite); font-weight: 500; }
.breadcrumb ol li + li::before { content: '/'; color: var(--silver-dark); }

/* ───── HERO ───── */
.hero { position: relative; overflow: hidden; background: var(--slate); min-height: 540px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-desc { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat { border-left: 2px solid rgba(220,38,38,.6); padding-left: 16px; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ───── CATEGORY CARDS ───── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.category-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all var(--transition); cursor: pointer; display: block; }
.category-card:hover { border-color: var(--crimson); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card-icon { width: 56px; height: 56px; background: var(--crimson-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.category-card-icon svg { width: 28px; height: 28px; color: var(--crimson); }
.category-card h3 { font-size: 1rem; margin-bottom: 6px; }
.category-card p { font-size: .8rem; color: var(--text-muted); }
.category-card-count { display: inline-block; margin-top: 10px; font-size: .75rem; font-weight: 600; color: var(--crimson); background: var(--crimson-light); padding: 2px 10px; border-radius: 20px; }

/* ───── PRODUCT CARDS ───── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--crimson); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transition: opacity var(--transition); }
.product-card:hover .product-card-actions { opacity: 1; }
.product-card-action { width: 34px; height: 34px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all var(--transition); }
.product-card-action:hover { background: var(--crimson); color: var(--white); }
.product-card-action svg { width: 16px; height: 16px; }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-brand { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.product-card-title { font-size: .95rem; font-weight: 600; color: var(--slate); line-height: 1.4; }
.product-card-title a:hover { color: var(--crimson); }
.product-card-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-tag { font-size: .72rem; background: var(--light-gray); color: var(--graphite); padding: 3px 8px; border-radius: 4px; }
.product-card-rating { display: flex; align-items: center; gap: 6px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; color: #f59e0b; fill: #f59e0b; }
.rating-count { font-size: .75rem; color: var(--text-muted); }
.product-card-footer { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--slate); }
.product-price small { font-family: var(--font); font-size: .72rem; color: var(--text-muted); font-weight: 400; display: block; }
.btn-cart { padding: 8px 14px; font-size: .8rem; }

/* ───── FILTER SIDEBAR ───── */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 100px; }
.filter-sidebar h4 { font-size: .95rem; margin-bottom: 16px; color: var(--slate); }
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--graphite); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-group-title svg { width: 14px; height: 14px; transition: transform var(--transition); }
.filter-group.collapsed .filter-group-title svg { transform: rotate(-90deg); }
.filter-group.collapsed .filter-options { display: none; }
.filter-option { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--crimson); width: 15px; height: 15px; }
.filter-option label { font-size: .855rem; color: var(--graphite); cursor: pointer; display: flex; justify-content: space-between; width: 100%; }
.filter-option label span { color: var(--text-muted); font-size: .78rem; }
.price-range { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.price-range input { flex: 1; padding: 7px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .82rem; outline: none; }
.price-range input:focus { border-color: var(--crimson); }
.filter-apply { width: 100%; margin-top: 8px; }

/* ───── CATALOG TOP BAR ───── */
.catalog-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.catalog-topbar select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .85rem; color: var(--graphite); outline: none; cursor: pointer; }
.catalog-count { font-size: .85rem; color: var(--text-muted); }
.view-toggle { display: flex; gap: 4px; }
.view-toggle button { width: 34px; height: 34px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.view-toggle button.active, .view-toggle button:hover { background: var(--crimson); color: var(--white); }
.view-toggle svg { width: 17px; height: 17px; }

/* ───── SPEC TABLE ───── */
.spec-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.spec-table th { background: var(--light-gray); padding: 12px 16px; text-align: left; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--graphite); border-bottom: 2px solid var(--border); }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--graphite); vertical-align: top; }
.spec-table tr:hover td { background: var(--light-gray); }
.spec-table td:first-child { font-weight: 600; color: var(--slate); width: 38%; }
.check-yes { color: #16a34a; }
.check-no { color: var(--text-muted); }

/* ───── COMPARISON TABLE ───── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 12px 20px; border: 1px solid var(--border); font-size: .86rem; }
.compare-table th { background: var(--light-gray); font-weight: 700; color: var(--slate); text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--graphite); background: var(--light-gray); }
.compare-table tr:hover td { background: rgba(248,250,252,.7); }
.compare-best { color: var(--crimson); font-weight: 700; }

/* ───── BLOG ───── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--silver-dark); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-category { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--crimson); }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--slate); line-height: 1.4; }
.blog-card-title a:hover { color: var(--crimson); }
.blog-card-excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--text-muted); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-card-meta svg { width: 13px; height: 13px; }

/* ───── ARTICLE ───── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 32px; }
.article-header h1 { margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.article-meta svg { width: 14px; height: 14px; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-content { font-size: .975rem; line-height: 1.8; color: var(--graphite); }
.article-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 18px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 6px; }
.article-content img { width: 100%; border-radius: var(--radius); margin: 24px 0; }
.article-content blockquote { border-left: 4px solid var(--crimson); padding: 16px 24px; background: var(--light-gray); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 24px; }
.sidebar-widget h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-list li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { font-size: .875rem; color: var(--graphite); transition: color var(--transition); display: flex; justify-content: space-between; align-items: center; }
.sidebar-list a:hover { color: var(--crimson); }

/* ───── INFO BLOCKS ───── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.info-card-icon { width: 48px; height: 48px; background: var(--crimson-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.info-card-icon svg { width: 24px; height: 24px; color: var(--crimson); }
.info-card h4 { font-size: 1rem; color: var(--slate); }
.info-card p { font-size: .875rem; }

/* ───── FEATURE SECTION ───── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text { display: flex; flex-direction: column; gap: 20px; }
.feature-text h2 { margin-bottom: 0; }
.feature-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--graphite); }
.feature-list li svg { width: 18px; height: 18px; color: var(--crimson); flex-shrink: 0; margin-top: 2px; }

/* ───── TESTIMONIALS ───── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testimonial-text { font-size: .9rem; color: var(--graphite); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--light-gray); overflow: hidden; }
.testimonial-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name { font-weight: 600; font-size: .9rem; color: var(--slate); }
.testimonial-author-role { font-size: .78rem; color: var(--text-muted); }
.testimonial-quote { font-size: 2.5rem; line-height: 1; color: var(--crimson); font-family: Georgia, serif; margin-bottom: 12px; }

/* ───── PRODUCT DETAIL ───── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-main-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--light-gray); }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); cursor: pointer; flex-shrink: 0; }
.product-thumb.active { border-color: var(--crimson); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-brand-cat { font-size: .78rem; color: var(--text-muted); }
.product-title { font-size: 1.6rem; font-weight: 800; color: var(--slate); line-height: 1.25; }
.product-rating-row { display: flex; align-items: center; gap: 12px; }
.product-main-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--slate); }
.product-main-price .currency { font-size: 1.1rem; color: var(--text-muted); }
.price-note { font-size: .8rem; color: var(--text-muted); }
.product-short-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: var(--light-gray); border-radius: var(--radius); padding: 18px; }
.short-spec { }
.short-spec dt { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.short-spec dd { font-size: .9rem; font-weight: 600; color: var(--slate); }
.product-add-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-add-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
.qty-input { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-input button { width: 36px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--light-gray); color: var(--graphite); font-size: 1.1rem; transition: background var(--transition); }
.qty-input button:hover { background: var(--silver); }
.qty-input input { width: 48px; height: 40px; text-align: center; border: none; outline: none; font-size: .9rem; font-weight: 600; }
.delivery-info { display: flex; flex-direction: column; gap: 8px; padding: 16px; background: var(--light-gray); border-radius: var(--radius-sm); }
.delivery-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--graphite); }
.delivery-item svg { width: 16px; height: 16px; color: var(--crimson); }

/* ───── CART ───── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; background: var(--light-gray); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-weight: 600; font-size: .9rem; color: var(--slate); margin-bottom: 4px; }
.cart-item-brand { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--slate); }
.cart-remove { color: var(--text-muted); transition: color var(--transition); margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; }
.cart-remove:hover { color: var(--crimson); }
.cart-summary { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 100px; }
.cart-summary h3 { margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; font-weight: 700; font-size: 1.05rem; padding-top: 14px; }

/* ───── CONTACT ───── */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--slate); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; color: var(--graphite); outline: none; transition: all var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(220,38,38,.07); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-card { background: var(--slate); border-radius: var(--radius); padding: 36px; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item svg { width: 20px; height: 20px; color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .05em; }
.contact-info-item span { font-size: .9rem; color: var(--white); }
.contact-map { margin-top: 24px; border-radius: var(--radius-sm); overflow: hidden; height: 200px; background: var(--graphite); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .85rem; }
.success-message { display: none; background: #dcfce7; border: 1.5px solid #16a34a; border-radius: var(--radius-sm); padding: 16px 20px; color: #166534; font-size: .9rem; font-weight: 500; align-items: center; gap: 10px; }
.success-message.visible { display: flex; }
.success-message svg { width: 20px; height: 20px; color: #16a34a; flex-shrink: 0; }

/* ───── POLICY PAGES ───── */
.policy-content { max-width: 860px; }
.policy-content h1 { margin-bottom: 8px; }
.policy-meta { font-size: .85rem; color: var(--text-muted); margin-bottom: 40px; display: flex; gap: 16px; }
.policy-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.policy-content p { margin-bottom: 14px; font-size: .95rem; }
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 14px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { margin-bottom: 6px; font-size: .95rem; color: var(--text-muted); }
.policy-toc { background: var(--light-gray); border-radius: var(--radius); padding: 24px; margin-bottom: 40px; }
.policy-toc h4 { margin-bottom: 12px; font-size: .95rem; }
.policy-toc ol { list-style: decimal; padding-left: 18px; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { font-size: .875rem; color: var(--graphite); transition: color var(--transition); }
.policy-toc a:hover { color: var(--crimson); }

/* ───── ABOUT ───── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; }
.team-card-img { aspect-ratio: 1; overflow: hidden; background: var(--light-gray); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-info { padding: 20px; }
.team-card-name { font-weight: 700; color: var(--slate); margin-bottom: 4px; }
.team-card-role { font-size: .82rem; color: var(--text-muted); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-block { text-align: center; padding: 32px 20px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); }
.stat-block strong { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--crimson); margin-bottom: 6px; }
.stat-block span { font-size: .875rem; color: var(--text-muted); }
.partners-grid { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
.partner-logo { padding: 16px 28px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; color: var(--graphite); }

/* ───── FOOTER ───── */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-text { color: var(--white); font-size: 1.3rem; }
.footer-desc { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: .82rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.footer-contact a:hover { color: var(--crimson); }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col h5 { color: var(--white); font-size: .875rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--crimson); }
.footer-newsletter { display: flex; flex-direction: column; gap: 10px; }
.footer-newsletter-form { display: flex; gap: 0; }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); color: var(--white); font-size: .85rem; outline: none; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-form input:focus { border-color: var(--crimson); }
.footer-newsletter-form button { padding: 10px 18px; background: var(--crimson); color: var(--white); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .82rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.footer-newsletter-form button:hover { background: var(--crimson-dark); }
.footer-newsletter p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--crimson); }

/* ───── PAGINATION ───── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; border: 1.5px solid var(--border); color: var(--graphite); transition: all var(--transition); }
.pagination a:hover { border-color: var(--crimson); color: var(--crimson); }
.pagination .active { background: var(--crimson); border-color: var(--crimson); color: var(--white); }
.pagination .dots { border: none; color: var(--text-muted); }

/* ───── TAGS / BADGES ───── */
.tag { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.tag-red { background: var(--crimson-light); color: var(--crimson); }
.tag-gray { background: var(--light-gray); color: var(--graphite); }
.tag-green { background: #dcfce7; color: #166534; }
.tag-blue { background: #dbeafe; color: #1e40af; }

/* ───── MISC ───── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; }
.alert-info { background: #dbeafe; color: #1e40af; border-left: 3px solid #3b82f6; }
.alert-warn { background: #fef3c7; color: #92400e; border-left: 3px solid #f59e0b; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--crimson); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all var(--transition); z-index: 900; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--crimson-dark); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ───── COOKIE BANNER ───── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--black); color: rgba(255,255,255,.85); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9999; flex-wrap: wrap; }
.cookie-banner p { font-size: .83rem; max-width: 700px; }
.cookie-banner p a { color: var(--crimson); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 8px 20px; font-size: .82rem; }
.cookie-banner.hidden { display: none; }

/* ───── ACCORDION ───── */
.accordion { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--slate); transition: background var(--transition); }
.accordion-header:hover { background: var(--light-gray); }
.accordion-header svg { width: 18px; height: 18px; transition: transform var(--transition); flex-shrink: 0; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.accordion-item.open .accordion-body { padding: 4px 20px 18px; max-height: 600px; }
.accordion-body p { font-size: .875rem; color: var(--text-muted); }

/* ───── SEARCH RESULTS ───── */
.search-results-header { margin-bottom: 32px; }
.search-results-header h1 span { color: var(--crimson); }
.no-results { text-align: center; padding: 64px 20px; }
.no-results svg { width: 64px; height: 64px; color: var(--silver); margin: 0 auto 20px; }
.no-results h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* ───── WISHLIST ───── */
.wishlist-empty { text-align: center; padding: 64px; }
.wishlist-empty svg { width: 56px; height: 56px; color: var(--silver); margin: 0 auto 16px; }
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ───── STEPS ───── */
.steps { display: flex; gap: 0; counter-reset: step; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; position: relative; }
.step::after { content: ''; position: absolute; top: 36px; left: 50%; right: 0; height: 2px; background: var(--border); z-index: 0; }
.step:last-child::after { display: none; }
.step-num { width: 48px; height: 48px; background: var(--crimson); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; font-family: var(--font-heading); position: relative; z-index: 1; margin-bottom: 16px; }
.step h5 { font-size: .9rem; margin-bottom: 6px; }
.step p { font-size: .8rem; }

/* ───── PROMO BANNER ───── */
.promo-banner { background: var(--slate); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.promo-banner h2 { color: var(--white); margin-bottom: 10px; }
.promo-banner p { color: rgba(255,255,255,.65); font-size: .95rem; }
.promo-banner .btn-primary { flex-shrink: 0; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .catalog-layout { grid-template-columns: 220px 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 900px) {
  .product-detail-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .promo-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .header-search, .header-top { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .filter-sidebar.open { display: block; position: fixed; inset: 0; z-index: 500; overflow-y: auto; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 400px; }
  .section { padding: 48px 0; }
  .steps { flex-direction: column; }
  .step::after { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}
