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

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

:root {
  --white: #FFFFFF;
  --deep-blue: #2563EB;
  --cyan: #06B6D4;
  --slate: #334155;
  --silver: #CBD5E1;
  --light-gray: #F8FAFC;
  --dark: #0F172A;
  --mid-gray: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { color: var(--dark); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.7; color: var(--mid-gray); }
a { text-decoration: none; color: var(--deep-blue); transition: color .2s; }
a:hover { color: var(--cyan); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: var(--radius-md); font-size: .9rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all .2s ease; font-family: var(--font-sans); }
.btn-primary { background: var(--deep-blue); color: var(--white); border-color: var(--deep-blue); }
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--deep-blue); border-color: var(--deep-blue); }
.btn-secondary:hover { background: var(--deep-blue); color: var(--white); transform: translateY(-1px); }
.btn-cyan { background: var(--cyan); color: var(--white); border-color: var(--cyan); }
.btn-cyan:hover { background: #0891b2; border-color: #0891b2; color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--border); }
.btn-ghost:hover { background: var(--light-gray); color: var(--dark); }
.btn-sm { padding: 7px 16px; font-size: .82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ── HEADER ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-top { background: var(--dark); padding: 7px 0; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top-text { font-size: .78rem; color: var(--silver); }
.header-top-links { display: flex; gap: 20px; }
.header-top-links a { color: var(--silver); font-size: .78rem; }
.header-top-links a:hover { color: var(--cyan); }
.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; background: var(--deep-blue); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--dark); letter-spacing: -.5px; }
.logo-text span { color: var(--deep-blue); }
.header-search { flex: 1; max-width: 520px; position: relative; }
.header-search input { width: 100%; padding: 10px 48px 10px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: .9rem; font-family: var(--font-sans); color: var(--dark); background: var(--light-gray); transition: border-color .2s, background .2s; }
.header-search input:focus { outline: none; border-color: var(--deep-blue); background: var(--white); }
.header-search button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--mid-gray); transition: color .2s; }
.header-search button:hover { color: var(--deep-blue); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.header-icon-btn { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius-md); background: none; border: 1.5px solid var(--border); cursor: pointer; font-size: .82rem; font-family: var(--font-sans); color: var(--slate); font-weight: 500; transition: all .2s; text-decoration: none; position: relative; }
.header-icon-btn:hover { border-color: var(--deep-blue); color: var(--deep-blue); background: var(--light-gray); }
.header-icon-btn svg { width: 18px; height: 18px; }
.cart-count { background: var(--deep-blue); color: white; border-radius: 50%; width: 18px; height: 18px; font-size: .65rem; display: flex; align-items: center; justify-content: center; position: absolute; top: -5px; right: -5px; font-weight: 700; }
.header-nav { border-top: 1px solid var(--border); }
.header-nav .container { display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.header-nav .container::-webkit-scrollbar { display: none; }
.nav-link { padding: 12px 14px; font-size: .85rem; font-weight: 500; color: var(--slate); white-space: nowrap; border-bottom: 2px solid transparent; transition: all .2s; text-decoration: none; }
.nav-link:hover, .nav-link.active { color: var(--deep-blue); border-bottom-color: var(--deep-blue); }
.nav-link.has-sub { position: relative; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--light-gray); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; font-size: .82rem; color: var(--mid-gray); }
.breadcrumb li a { color: var(--mid-gray); text-decoration: none; }
.breadcrumb li a:hover { color: var(--deep-blue); }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--silver); }
.breadcrumb li:last-child { color: var(--dark); font-weight: 500; }

/* ── HERO ── */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: var(--silver); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { margin-top: 56px; display: flex; gap: 40px; }
.hero-stat .val { font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: var(--silver); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

/* ── CATEGORY CARDS ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; transition: all .25s ease; display: flex; flex-direction: column; }
.category-card:hover { border-color: var(--deep-blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card-img { width: 100%; height: 140px; object-fit: cover; }
.category-card-body { padding: 16px; flex: 1; }
.category-card-body h4 { color: var(--dark); font-size: .9rem; margin-bottom: 4px; }
.category-card-body p { font-size: .78rem; color: var(--mid-gray); }
.category-count { display: inline-block; background: var(--light-gray); color: var(--mid-gray); font-size: .72rem; font-weight: 600; padding: 2px 8px; border-radius: 99px; margin-top: 8px; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.product-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s ease; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--deep-blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card-img-wrap { position: relative; overflow: hidden; background: var(--light-gray); }
.product-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-actions { position: absolute; bottom: 12px; right: 12px; display: flex; gap: 8px; opacity: 0; transition: opacity .2s; }
.product-card:hover .product-card-actions { opacity: 1; }
.product-card-action-btn { width: 34px; height: 34px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.product-card-action-btn:hover { background: var(--deep-blue); border-color: var(--deep-blue); }
.product-card-action-btn:hover svg { stroke: white; }
.product-card-action-btn svg { width: 16px; height: 16px; stroke: var(--slate); fill: none; stroke-width: 2; }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .72rem; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.product-name { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.spec-tag { background: var(--light-gray); color: var(--mid-gray); font-size: .72rem; padding: 3px 8px; border-radius: 4px; font-weight: 500; }
.product-price { margin-top: auto; }
.price-current { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.price-old { font-size: .85rem; color: var(--mid-gray); text-decoration: line-through; margin-left: 6px; }
.price-note { font-size: .72rem; color: var(--mid-gray); margin-top: 3px; }
.product-card-footer { padding: 14px 18px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.product-card-footer .btn { flex: 1; justify-content: center; }

/* ── LAYOUT: SIDEBAR ── */
.layout-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.sidebar { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 90px; }
.sidebar-section { padding: 20px; border-bottom: 1px solid var(--border); }
.sidebar-section:last-child { border-bottom: none; }
.sidebar-section h5 { font-size: .82rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.sidebar-cat-link { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: .87rem; color: var(--slate); text-decoration: none; border-bottom: 1px solid var(--light-gray); transition: color .2s; }
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link:hover, .sidebar-cat-link.active { color: var(--deep-blue); font-weight: 600; }
.sidebar-cat-count { background: var(--light-gray); color: var(--mid-gray); font-size: .7rem; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.filter-group { margin-bottom: 16px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--slate); cursor: pointer; padding: 4px 0; }
.filter-group input[type="checkbox"] { accent-color: var(--deep-blue); width: 15px; height: 15px; }
.filter-range { width: 100%; accent-color: var(--deep-blue); }
.filter-range-vals { display: flex; justify-content: space-between; font-size: .75rem; color: var(--mid-gray); margin-top: 6px; }

/* ── COMPARISON TABLE ── */
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table thead th { background: var(--dark); color: var(--white); font-weight: 600; }
.compare-table thead th:first-child { background: var(--light-gray); color: var(--dark); }
.compare-table tbody tr:nth-child(even) { background: var(--light-gray); }
.compare-table tbody tr:hover { background: #EFF6FF; }
.compare-table .feature-label { font-weight: 600; color: var(--dark); white-space: nowrap; }
.compare-table .winner { color: var(--cyan); font-weight: 700; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 11px 14px; vertical-align: top; }
.spec-table td:first-child { font-weight: 600; color: var(--dark); width: 45%; background: var(--light-gray); }

/* ── GUIDE ARTICLES ── */
.article-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--deep-blue); }
.article-card-img { width: 100%; height: 200px; object-fit: cover; }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-cat-tag { font-size: .72rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.article-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.45; }
.article-card-body p { font-size: .85rem; color: var(--mid-gray); flex: 1; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-size: .78rem; color: var(--mid-gray); }
.article-read-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--deep-blue); margin-top: 14px; }

/* ── HERO ARTICLE ── */
.article-hero { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 480px; display: flex; align-items: flex-end; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.85) 0%, rgba(15,23,42,.1) 60%); }
.article-hero-content { position: relative; z-index: 2; padding: 40px; }
.article-hero-content h2 { color: white; font-size: 1.8rem; margin-bottom: 12px; }
.article-hero-content p { color: var(--silver); }

/* ── WISHLIST / CART ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--light-gray); padding: 12px 16px; text-align: left; font-size: .82rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product-info { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-md); border: 1.5px solid var(--border); flex-shrink: 0; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.qty-btn { width: 32px; height: 32px; background: var(--light-gray); border: none; cursor: pointer; font-size: 1.1rem; color: var(--dark); font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--deep-blue); color: white; }
.qty-input { width: 44px; height: 32px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-size: .9rem; font-family: var(--font-sans); color: var(--dark); }
.cart-summary { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.cart-summary-row.total { font-weight: 800; font-size: 1.1rem; color: var(--dark); border-bottom: none; padding-top: 14px; }

/* ── CHECKOUT ── */
.checkout-form .form-section { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.checkout-form .form-section h3 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: .9rem; font-family: var(--font-sans); color: var(--dark); background: var(--white); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--deep-blue); }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: border-color .2s; }
.radio-opt:hover { border-color: var(--deep-blue); }
.radio-opt input { margin-top: 2px; accent-color: var(--deep-blue); }
.radio-opt-info h5 { font-size: .88rem; margin-bottom: 3px; }
.radio-opt-info p { font-size: .8rem; }

/* ── PRODUCT DETAIL ── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery-main { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); }
.product-gallery-main img { width: 100%; height: 440px; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-thumb { width: 76px; height: 76px; object-fit: cover; border-radius: var(--radius-md); border: 2px solid var(--border); cursor: pointer; transition: border-color .2s; }
.product-thumb:hover, .product-thumb.active { border-color: var(--deep-blue); }
.product-info-panel .product-brand-lg { font-size: .8rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.product-info-panel h1 { font-size: 1.6rem; margin-bottom: 16px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: #F59E0B; letter-spacing: 1px; }
.rating-count { font-size: .82rem; color: var(--mid-gray); }
.product-price-lg { margin-bottom: 20px; }
.product-price-lg .current { font-size: 2rem; font-weight: 800; color: var(--dark); }
.product-price-lg .vat { font-size: .78rem; color: var(--mid-gray); margin-top: 3px; }
.product-stock { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; }
.in-stock { color: #16a34a; }
.in-stock .stock-dot { background: #16a34a; }
.product-actions { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 140px; justify-content: center; }
.delivery-info { background: var(--light-gray); border-radius: var(--radius-md); padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.delivery-row { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--slate); }
.delivery-row svg { width: 16px; height: 16px; stroke: var(--deep-blue); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── TABS ── */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 28px; }
.tab-btn { padding: 12px 22px; font-size: .88rem; font-weight: 600; color: var(--mid-gray); background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; font-family: var(--font-sans); }
.tab-btn.active { color: var(--deep-blue); border-bottom-color: var(--deep-blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── INFO BLOCKS ── */
.info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .2s; }
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon { width: 48px; height: 48px; background: var(--light-gray); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-icon svg { width: 24px; height: 24px; stroke: var(--deep-blue); fill: none; stroke-width: 2; }
.section-header { margin-bottom: 40px; }
.section-header .eyebrow { font-size: .78rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 540px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--dark); padding: 64px 0; }
.newsletter-section h2 { color: white; margin-bottom: 12px; }
.newsletter-section p { color: var(--silver); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input { flex: 1; padding: 12px 16px; border-radius: var(--radius-md); border: none; font-size: .9rem; font-family: var(--font-sans); }
.newsletter-form input:focus { outline: none; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--light-gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 28px; height: 28px; stroke: var(--deep-blue); fill: none; stroke-width: 2; flex-shrink: 0; }
.trust-item h6 { font-size: .85rem; color: var(--dark); margin-bottom: 2px; }
.trust-item p { font-size: .75rem; color: var(--mid-gray); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: var(--silver); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-text { color: white; font-size: 1.3rem; }
.footer-brand p { font-size: .85rem; color: var(--silver); line-height: 1.7; margin: 14px 0 20px; max-width: 260px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--silver); margin-bottom: 8px; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--cyan); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-heading { font-size: .75rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .84rem; color: var(--silver); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ── POLICY PAGES ── */
.policy-content { max-width: 840px; margin: 0 auto; }
.policy-content h1 { margin-bottom: 8px; }
.policy-meta { font-size: .82rem; color: var(--mid-gray); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.policy-content h2 { font-size: 1.2rem; margin: 32px 0 14px; color: var(--dark); }
.policy-content h3 { font-size: 1rem; margin: 20px 0 10px; color: var(--dark); }
.policy-content p { margin-bottom: 14px; }
.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: .9rem; color: var(--mid-gray); line-height: 1.65; }
.policy-content a { color: var(--deep-blue); }
.policy-highlight { background: var(--light-gray); border-left: 4px solid var(--deep-blue); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin: 20px 0; }
.policy-highlight p { margin: 0; font-size: .88rem; color: var(--slate); }
.legal-box { background: var(--light-gray); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.legal-box h3 { font-size: .95rem; margin-bottom: 12px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.legal-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.legal-table td:first-child { font-weight: 600; color: var(--dark); width: 40%; background: var(--light-gray); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--dark); border-radius: var(--radius-xl); padding: 40px; color: white; }
.contact-info-card h2 { color: white; margin-bottom: 12px; }
.contact-info-card p { color: var(--silver); margin-bottom: 28px; }
.contact-detail-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 2; }
.contact-detail-item h5 { color: white; font-size: .82rem; margin-bottom: 4px; }
.contact-detail-item p { color: var(--silver); font-size: .87rem; margin: 0; }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.contact-form-card h2 { margin-bottom: 24px; }
.success-msg { display: none; background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--radius-md); padding: 16px 20px; color: #16a34a; font-size: .9rem; font-weight: 500; margin-top: 16px; align-items: center; gap: 10px; }
.success-msg.show { display: flex; }
.success-msg svg { width: 20px; height: 20px; stroke: #16a34a; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: box-shadow .2s; }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 180px; object-fit: cover; }
.team-card-body { padding: 18px; }
.team-card-body h4 { font-size: .95rem; margin-bottom: 4px; }
.team-card-body p { font-size: .78rem; color: var(--cyan); font-weight: 600; }
.value-card { border-left: 3px solid var(--cyan); padding: 20px 20px 20px 22px; background: var(--light-gray); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 6px; }

/* ── STATS SECTION ── */
.stats-grid { 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-lg); }
.stat-block .number { font-size: 2.5rem; font-weight: 800; color: var(--deep-blue); line-height: 1; margin-bottom: 8px; }
.stat-block .label { font-size: .85rem; color: var(--mid-gray); }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: white; padding: 18px 24px; z-index: 9999; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 2px solid var(--deep-blue); transform: translateY(100%); transition: transform .4s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { flex: 1; font-size: .82rem; color: var(--silver); min-width: 200px; }
.cookie-banner p a { color: var(--cyan); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ── NOTIFICATION / TOAST ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--dark); color: white; padding: 14px 20px; border-radius: var(--radius-md); font-size: .87rem; z-index: 9998; transform: translateY(20px); opacity: 0; transition: all .3s; max-width: 320px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #16a34a; }
.toast.info { border-left: 4px solid var(--deep-blue); }
.toast svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); border: 1.5px solid var(--border); font-size: .85rem; font-weight: 600; color: var(--slate); background: white; cursor: pointer; text-decoration: none; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--deep-blue); border-color: var(--deep-blue); color: white; }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 14px; gap: 4px; font-size: .82rem; }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 88px; right: 24px; width: 40px; height: 40px; background: var(--deep-blue); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all .3s; z-index: 9997; border: none; box-shadow: var(--shadow-md); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; } .mb-20 { margin-bottom: 20px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; } .justify-between { justify-content: space-between; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-20 { gap: 20px; } .gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 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; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.tag { display: inline-block; background: var(--light-gray); color: var(--mid-gray); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 99px; border: 1px solid var(--border); }
.tag-blue { background: #EFF6FF; color: var(--deep-blue); border-color: #BFDBFE; }
.tag-cyan { background: #ECFEFF; color: #0891b2; border-color: #A5F3FC; }
.highlighted-box { background: #EFF6FF; border: 1.5px solid #BFDBFE; border-radius: var(--radius-lg); padding: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { grid-column: auto; }
  .layout-with-sidebar { grid-template-columns: 220px 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 900px) {
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .sidebar.open { display: block; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
}
@media (max-width: 768px) {
  .header-search { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .header-actions .header-icon-btn span { display: none; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
  .mobile-menu-btn { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .header-nav.open { display: block; }
  .header-nav.open .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  h1 { font-size: 1.7rem; }
}
