/* ============================================================
   AcreRanch – base.css  |  Forest Green / Amber theme
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 15px; line-height: 1.6; color: var(--body); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ── Variables ── */
:root {
  --navy:       #1c2418;
  --navy2:      #243020;
  --navy3:      #2f3d2a;
  --accent:     #c17d3c;
  --accent-lt:  #f5ead8;
  --accent-mid: #d9975a;
  --bg:         #f7f4ee;
  --white:      #ffffff;
  --off:        #faf8f4;
  --stone:      #ede9e1;
  --border:     rgba(0,0,0,.08);
  --muted:      #8a7b6a;
  --body:       #3d3228;
  --heading:    #1c2418;
  --green:      #2d7d4a;
  --red:        #c0392b;
  --shadow:     0 2px 12px rgba(28,36,24,.10);
  --shadow-lg:  0 8px 32px rgba(28,36,24,.14);
  --radius:     10px;
  --radius-sm:  6px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: 'Raleway', system-ui, sans-serif; color: var(--heading); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; font-weight: 600; }

/* ── Container ── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ── USP Bar ── */
.usp-bar { background: var(--navy); color: rgba(255,255,255,.82); font-size: 12.5px; font-weight: 500; }
.usp-bar-inner { max-width: 1220px; margin: 0 auto; padding: 8px 20px; display: flex; gap: 24px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.usp-bar-inner::-webkit-scrollbar { display: none; }
.usp-item { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.usp-item svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ── Header ── */
.site-header { background: var(--navy2); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.header-inner { max-width: 1220px; margin: 0 auto; padding: 0 20px; height: 62px; display: flex; align-items: center; gap: 16px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; color: var(--white); font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.2rem; text-decoration: none; flex-shrink: 0; letter-spacing: -.3px; }
.logo span { color: var(--accent); }
.logo small { display: block; font-size: 10px; font-weight: 400; color: rgba(255,255,255,.5); line-height: 1; }
.logo:hover { text-decoration: none; }

/* Search */
.header-search { flex: 1; max-width: 420px; position: relative; }
.header-search input { width: 100%; padding: 8px 38px 8px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.08); color: var(--white); font-size: 13.5px; }
.header-search input::placeholder { color: rgba(255,255,255,.45); }
.header-search input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.12); }
.header-search-btn { position: absolute; right: 0; top: 0; height: 100%; width: 38px; background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.header-search-btn svg { width: 17px; height: 17px; }
.header-search-btn:hover { color: var(--accent); }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a { color: rgba(255,255,255,.8); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; transition: all .15s; }
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.1); color: var(--white); text-decoration: none; }

/* Cart button */
.cart-btn { display: flex; align-items: center; gap: 7px; color: var(--white); font-size: 13.5px; font-weight: 500; padding: 7px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); position: relative; transition: all .15s; flex-shrink: 0; }
.cart-btn svg { width: 19px; height: 19px; }
.cart-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); text-decoration: none; }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; padding: 0 4px; display: none; align-items: center; justify-content: center; }
.cart-badge.show { display: flex; }

/* Menu toggle (mobile) */
.menu-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 6px; border-radius: var(--radius-sm); }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle:hover { background: rgba(255,255,255,.1); }

/* ── Mini Cart ── */
.mini-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 300; display: none; }
.mini-cart-overlay.open { display: block; }
.mini-cart { position: fixed; top: 0; right: -400px; width: 360px; height: 100vh; background: var(--white); z-index: 301; display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,.15); transition: right .28s ease; }
.mini-cart.open { right: 0; }
.mini-cart-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--navy2); }
.mini-cart-head h3 { color: var(--white); font-size: 15px; }
.mini-cart-close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; padding: 4px; border-radius: 4px; }
.mini-cart-close svg { width: 20px; height: 20px; }
.mini-cart-close:hover { color: var(--white); background: rgba(255,255,255,.1); }
.mini-cart-items { flex: 1; overflow-y: auto; padding: 12px; }
.mini-cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; color: var(--muted); gap: 8px; text-align: center; font-size: 14px; }
.mini-cart-empty svg { width: 40px; height: 40px; opacity: .4; }
.mc-item { display: flex; gap: 10px; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 8px; background: var(--off); }
.mc-item-img { width: 64px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.mc-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mc-item-info { flex: 1; min-width: 0; }
.mc-item-name { font-size: 12.5px; font-weight: 600; line-height: 1.35; color: var(--heading); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-item-price { font-size: 12.5px; color: var(--accent); font-weight: 700; margin-top: 3px; }
.mc-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; padding: 2px; flex-shrink: 0; align-self: center; border-radius: 4px; }
.mc-item-remove svg { width: 16px; height: 16px; }
.mc-item-remove:hover { color: var(--red); background: #fdecea; }
.mini-cart-footer { padding: 14px 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.mc-total { display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.mc-total strong { color: var(--accent); font-size: 1.15rem; }
.btn-to-cart { display: block; background: var(--accent); color: #fff; text-align: center; padding: 11px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; transition: background .15s; }
.btn-to-cart:hover { background: #a96a2e; text-decoration: none; }
.btn-continue { background: none; border: 1px solid var(--border); color: var(--muted); padding: 9px; border-radius: var(--radius-sm); cursor: pointer; font-size: 13px; width: 100%; }
.btn-continue:hover { border-color: var(--accent); color: var(--accent); }

/* ── Hero ── */
.hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.45); }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(28,36,24,.78) 40%, rgba(193,125,60,.25) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1220px; margin: 0 auto; padding: 60px 20px; max-width: 640px; padding-left: 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(193,125,60,.22); border: 1px solid rgba(193,125,60,.45); color: var(--accent-mid); font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; }
.hero-badge svg { width: 13px; height: 13px; }
.hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.7rem, 4vw, 2.7rem); text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14.5px; border: none; cursor: pointer; transition: background .15s, transform .1s; }
.btn-primary:hover { background: #a96a2e; transform: translateY(-1px); text-decoration: none; }
.btn-primary svg { width: 17px; height: 17px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; border: 1px solid rgba(255,255,255,.3); transition: all .15s; }
.btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }

/* ── Brands strip ── */
.brands-strip { background: var(--off); border-bottom: 1px solid var(--border); }
.brands-inner { max-width: 1220px; margin: 0 auto; padding: 14px 20px; display: flex; gap: 32px; overflow-x: auto; scrollbar-width: none; align-items: center; }
.brands-inner::-webkit-scrollbar { display: none; }
.brand-logo { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 16px; color: var(--muted); white-space: nowrap; letter-spacing: .5px; opacity: .7; transition: opacity .15s; }
.brand-logo:hover { opacity: 1; color: var(--accent); }

/* ── Trust bar ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1220px; margin: 0 auto; padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-icon { width: 36px; height: 36px; background: var(--accent-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 18px; height: 18px; color: var(--accent); }
.trust-item > div { display: flex; flex-direction: column; gap: 2px; }
strong.trust-label { font-size: 13px; font-weight: 700; color: var(--heading); display: block; }
span.trust-label { font-size: 12px; color: var(--muted); display: block; }

/* ── Section ── */
.section { padding: 56px 0; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.section-header-row h2 { margin-bottom: 4px; }
.section-header-row p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.btn-outline { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--accent); color: var(--accent); padding: 8px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: all .15s; white-space: nowrap; }
.btn-outline:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* ── Filter bar ── */
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; padding: 14px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.filter-bar label { font-size: 12.5px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.filter-chip { padding: 5px 13px; border-radius: 20px; border: 1.5px solid var(--border); background: transparent; color: var(--body); font-size: 13px; cursor: pointer; transition: all .15s; }
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 6px 10px; font-size: 13px; color: var(--body); background: var(--white); cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--accent); }

/* ── Product grid ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card-img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--stone); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.badge-row { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.badge { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.badge-dvbt2 { background: var(--navy); color: #fff; }
.badge-promo { background: var(--red); color: #fff; }
.badge-new { background: var(--accent); color: #fff; }
.badge-best { background: var(--green); color: #fff; }
.product-card-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--heading); line-height: 1.4; margin-bottom: 10px; }
.product-name:hover { color: var(--accent); }
.product-specs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.spec-tag { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: var(--accent-lt); color: var(--accent); border: 1px solid rgba(193,125,60,.2); }
.product-price-block { margin-top: auto; }
.price-omnibus { font-size: 11.5px; color: var(--muted); margin-bottom: 4px; }
.price-omnibus del { color: #bbb; }
.price-main { font-size: 1.4rem; font-weight: 800; color: var(--heading); font-family: 'Raleway', sans-serif; margin-bottom: 4px; }
.price-installment { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.price-installment strong { color: var(--accent); font-weight: 700; }
.btn-add-cart { width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--navy); color: #fff; border: none; padding: 10px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .15s; }
.btn-add-cart svg { width: 16px; height: 16px; }
.btn-add-cart:hover { background: var(--accent); }

/* ── Article grid ── */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--stone); }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.article-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--accent); background: var(--accent-lt); padding: 3px 9px; border-radius: 4px; margin-bottom: 10px; }
.article-title { font-size: 15px; font-weight: 700; color: var(--heading); line-height: 1.4; margin-bottom: 8px; font-family: 'Raleway', sans-serif; }
.article-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-size: 13px; font-weight: 600; margin-top: 12px; }
.read-more svg { width: 14px; height: 14px; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-col h4 { color: var(--white); font-size: 13.5px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .6px; font-family: 'Raleway', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.footer-nip { font-size: 11.5px; color: rgba(255,255,255,.3); }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-legal-links a:hover { color: var(--accent); text-decoration: none; }

/* ── Cookie banner ── */
.cookie-banner { position: fixed; bottom: -100%; left: 0; right: 0; background: var(--navy2); color: rgba(255,255,255,.88); padding: 18px 24px; z-index: 500; transition: bottom .3s; box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
.cookie-banner.show { bottom: 0; }
.cookie-banner h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; font-family: 'Raleway', sans-serif; }
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.btn-cookie-accept { background: var(--accent); color: #fff; border: none; padding: 9px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 13.5px; cursor: pointer; }
.btn-cookie-accept:hover { background: #a96a2e; }
.btn-cookie-essential { background: none; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75); padding: 9px 16px; border-radius: var(--radius-sm); font-size: 13.5px; cursor: pointer; }
.btn-cookie-essential:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ───────────────────────────────────────────────
   PRODUCT DETAIL PAGE
─────────────────────────────────────────────── */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0; align-items: start; }
.product-gallery {}
.product-main-img { border-radius: var(--radius); overflow: hidden; background: var(--stone); aspect-ratio: 3/2; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-strip { display: flex; gap: 8px; margin-top: 10px; }
.product-thumb { width: 72px; height: 52px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; cursor: pointer; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--accent); }
.product-info {}
.product-title { font-size: clamp(1.2rem, 3vw, 1.65rem); margin-bottom: 8px; }
.product-price-big { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: 'Raleway', sans-serif; margin-bottom: 4px; }
.price-was { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.price-was del { text-decoration: line-through; color: #bbb; }
.price-install { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.price-install strong { color: var(--accent); font-weight: 700; }
.btn-add-cart-big { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--navy); color: #fff; border: none; padding: 14px 24px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; transition: background .15s; margin-bottom: 12px; }
.btn-add-cart-big svg { width: 20px; height: 20px; }
.btn-add-cart-big:hover { background: var(--accent); }
.product-trust-mini { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.ptm-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--body); }
.ptm-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

/* Tabs */
.tabs { margin-top: 32px; }
.tab-btns { display: flex; border-bottom: 2px solid var(--border); gap: 4px; }
.tab-btn { padding: 10px 18px; font-size: 14px; font-weight: 600; background: none; border: none; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .15s; }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-btn:hover { color: var(--heading); }
.tab-panel { display: none; padding: 24px 0; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 9px 12px; vertical-align: top; }
.spec-table td:first-child { font-weight: 600; color: var(--muted); width: 42%; font-size: 13px; }
.spec-table td:last-child { color: var(--body); }
.spec-table tr:nth-child(even) { background: var(--off); }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.feature-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* Related products */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }

/* ───────────────────────────────────────────────
   CART PAGE
─────────────────────────────────────────────── */
.cart-page { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 40px 0; align-items: start; }
.cart-main-title { font-size: 1.4rem; margin-bottom: 20px; }
.cart-items-container { display: flex; flex-direction: column; gap: 12px; }
.cart-row { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.cart-row-img { width: 80px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--stone); }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--heading); }
.cart-row-name small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 3px; }
.qty-control { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-val { width: 28px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-row-price { font-size: 15px; font-weight: 700; color: var(--heading); flex-shrink: 0; min-width: 90px; text-align: right; }
.remove-btn { background: none; border: none; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 6px; flex-shrink: 0; }
.remove-btn svg { width: 18px; height: 18px; }
.remove-btn:hover { color: var(--red); background: #fdecea; }
.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.cart-summary h3 { font-size: 16px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.summary-row.total { font-weight: 700; font-size: 15px; border-top: 2px solid var(--border); padding-top: 12px; margin-top: 4px; }
.btn-checkout { display: block; background: var(--accent); color: #fff; text-align: center; padding: 13px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; margin-top: 14px; transition: background .15s; }
.btn-checkout:hover { background: #a96a2e; text-decoration: none; }
.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-state svg { width: 52px; height: 52px; margin: 0 auto 12px; opacity: .35; }
.empty-state h3 { margin-bottom: 8px; color: var(--heading); }
.empty-state .btn-primary { margin: 16px auto 0; }

/* Checkout form */
.checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 40px 0; align-items: start; }
.form-section { margin-bottom: 28px; }
.form-section h3 { font-size: 16px; margin-bottom: 16px; border-bottom: 2px solid var(--accent-lt); padding-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--heading); }
.form-group input, .form-group select, .form-group textarea { padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: var(--white); color: var(--body); transition: border .15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 90px; }
.radio-card { border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 14px; cursor: pointer; display: flex; align-items: flex-start; gap: 10px; transition: border .15s; margin-bottom: 8px; }
.radio-card.selected { border-color: var(--accent); background: var(--accent-lt); }
.radio-card input { margin-top: 2px; }
.radio-card-label { font-size: 14px; font-weight: 600; }
.radio-card-desc { font-size: 12px; color: var(--muted); }

/* ───────────────────────────────────────────────
   BLOG / ARTICLE PAGES
─────────────────────────────────────────────── */
.blog-page-hero { background: var(--navy); padding: 40px 0 20px; }
.blog-page-title { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 4px; }
.blog-page-sub { color: rgba(255,255,255,.6); font-size: 14px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 40px 0; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .15s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card a { display: contents; color: inherit; text-decoration: none; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--stone); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 18px; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.blog-card-cat { background: var(--accent-lt); color: var(--accent); font-weight: 700; padding: 2px 8px; border-radius: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.blog-card-title { font-size: 15.5px; font-weight: 700; color: var(--heading); line-height: 1.4; margin-bottom: 8px; font-family: 'Raleway', sans-serif; }
.blog-card-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-size: 13px; font-weight: 600; }
.blog-read-more svg { width: 13px; height: 13px; }

/* Article page */
.article-hero-wrap { background: var(--navy); }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; }
.article-hero-inner { max-width: 760px; margin: 0 auto; padding: 32px 20px 16px; }
.article-hero-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--accent); background: rgba(193,125,60,.18); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.article-hero-title { color: var(--white); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.3; margin-bottom: 10px; }
.article-meta { color: rgba(255,255,255,.55); font-size: 13px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-body-wrap { max-width: 760px; margin: 0 auto; padding: 36px 20px 56px; }
.article-lead { font-size: 17px; color: var(--body); line-height: 1.75; font-weight: 500; margin-bottom: 28px; border-left: 3px solid var(--accent); padding-left: 16px; background: var(--accent-lt); padding: 16px 16px 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-body { font-size: 15px; line-height: 1.8; color: var(--body); }
.article-body h2 { font-size: 1.35rem; margin: 32px 0 12px; color: var(--heading); }
.article-body h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--heading); }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 6px; list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 15px; line-height: 1.6; }
.article-body strong { font-weight: 700; color: var(--heading); }
.article-body a { color: var(--accent); }
.product-card-inline { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; gap: 14px; align-items: center; margin: 20px 0; }
.product-card-inline img { width: 90px; height: 65px; object-fit: cover; border-radius: 6px; }
.product-card-inline-info { flex: 1; }
.product-card-inline-name { font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.product-card-inline-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); font-family: 'Raleway', sans-serif; }
.article-footer { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 32px; font-size: 13px; color: var(--muted); }

/* Reading progress bar */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 9999; transition: width .1s linear; width: 0; }

/* Related articles section */
.related-section { background: var(--off); padding: 40px 0; }
.related-title { font-size: 1.2rem; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ───────────────────────────────────────────────
   STATIC PAGES (O-nas, Kontakt, Legal)
─────────────────────────────────────────────── */
.page-hero { background: var(--navy); padding: 40px 0 30px; border-bottom: 3px solid var(--accent); }
.page-hero h1 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.page-hero p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 6px; }
.page-content { padding: 48px 0; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: 'Raleway', sans-serif; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12.5px; color: var(--muted); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.feature-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.feature-box h4 { margin-bottom: 8px; color: var(--heading); font-size: 14.5px; }
.feature-box p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.feature-box-icon { width: 36px; height: 36px; background: var(--accent-lt); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feature-box-icon svg { width: 18px; height: 18px; color: var(--accent); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.contact-info-box { background: var(--navy2); border-radius: var(--radius); padding: 28px; color: rgba(255,255,255,.82); }
.contact-info-box h3 { color: var(--white); font-size: 16px; margin-bottom: 20px; font-family: 'Raleway', sans-serif; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.contact-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: rgba(255,255,255,.82); }
.contact-detail a:hover { color: var(--accent); text-decoration: none; }
.contact-hours { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: rgba(255,255,255,.65); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-form h3 { font-size: 16px; margin-bottom: 20px; color: var(--heading); font-family: 'Raleway', sans-serif; }
.contact-form .form-group { margin-bottom: 14px; }
.contact-success { display: none; text-align: center; padding: 32px 16px; }
.contact-success.visible { display: block; }
.contact-success svg { width: 44px; height: 44px; color: var(--green); margin: 0 auto 12px; }
.contact-success h3 { color: var(--heading); margin-bottom: 8px; }
.contact-success p { color: var(--muted); font-size: 14px; }
.btn-submit { background: var(--accent); color: #fff; border: none; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14.5px; cursor: pointer; width: 100%; transition: background .15s; margin-top: 6px; }
.btn-submit:hover { background: #a96a2e; }
.gdpr-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.gdpr-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }

/* Legal pages */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 48px 0; align-items: start; }
.legal-nav { position: sticky; top: 80px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.legal-nav h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 12px; font-family: 'Raleway', sans-serif; }
.legal-nav ul { display: flex; flex-direction: column; gap: 2px; }
.legal-nav a { display: block; padding: 7px 10px; font-size: 13.5px; color: var(--body); border-radius: 5px; }
.legal-nav a:hover, .legal-nav a.active { background: var(--accent-lt); color: var(--accent); text-decoration: none; }
.legal-content h2 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--heading); }
.legal-content h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--heading); }
.legal-content p { font-size: 14px; line-height: 1.75; color: var(--body); margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px 20px; display: flex; flex-direction: column; gap: 6px; list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { font-size: 14px; line-height: 1.6; }
.legal-content table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 14px 0; }
.legal-content th, .legal-content td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; }
.legal-content th { background: var(--stone); font-weight: 700; }
.legal-content tr:nth-child(even) td { background: var(--off); }
.legal-update { font-size: 12.5px; color: var(--muted); margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.legal-hero { background: var(--navy); padding: 40px 0 30px; border-bottom: 3px solid var(--accent); }
.legal-hero h1 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.legal-hero p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 6px; }

/* ───────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .product-page { grid-template-columns: 1fr; gap: 28px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cart-page { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { padding-left: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brands-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 360px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
}
