/* ================================================================
   FEEDERMANIA — Design System v2
   Paleta: ciemna zieleń + limonkowy akcent + biel
   Fonty: Playfair Display (nagłówki) + DM Sans (body)
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f2f4f0;
  --white: #ffffff;
  --text: #1a1e16;
  --muted: #6b7260;
  --line: #e0e4d8;
  --dark: #0d1a08;
  --dark2: #162410;
  --accent: #b6ff1f;
  --accent2: #8dcf00;
  --accent3: #d4ff6e;
  --soft: #f5f8f0;
  --green-mid: #2a4a15;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
img { display: block; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: 'Playfair Display', Georgia, serif; }
.muted { color: var(--muted); }
.center { display: flex; align-items: center; justify-content: center; }
.empty { padding: 40px 24px; border: 1px dashed #cdd4c4; background: #fafbf8; color: var(--muted); text-align: center; border-radius: var(--radius); font-size: 13px; }

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar { background: var(--dark); color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; border-bottom: 1px solid #1c3010; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 36px; }

/* ── HEADER ─────────────────────────────────────────────────── */
.header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.header .container { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; letter-spacing: .04em; color: var(--dark); }
.nav { display: flex; gap: 28px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.nav a { color: var(--text); transition: color .2s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a.active { color: var(--green-mid); border-bottom-color: var(--accent2); }
.header-right { display: flex; align-items: center; gap: 10px; }
.header-search { position: relative; }
.search-pill-input { width: 260px; height: 40px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--soft); padding: 0 16px; font-size: 12px; transition: border-color .2s, box-shadow .2s; }
.search-pill-input:focus { outline: none; border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(141,207,0,.15); }
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 200; max-height: 360px; overflow: auto; }
.search-results.open { display: block; }
.search-result-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; padding: 10px; border-radius: var(--radius-sm); align-items: center; transition: background .15s; }
.search-result-item:hover { background: var(--soft); }
.search-result-thumb { width: 48px; height: 48px; border: 1px solid var(--line); background: #f4f4f4; border-radius: var(--radius-sm); object-fit: cover; }
.search-result-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.search-empty { padding: 16px; font-size: 12px; color: var(--muted); text-align: center; }

/* ── PILLS / BUTTONS ─────────────────────────────────────────── */
.pill { height: 40px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; display: flex; align-items: center; padding: 0 16px; font-size: 11px; font-weight: 600; letter-spacing: .06em; transition: all .2s; white-space: nowrap; }
.pill:hover { border-color: var(--accent2); color: var(--green-mid); }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 22px; border: none; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius); transition: all .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { background: var(--accent3); }
.btn-outline { background: transparent; border: 1.5px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: rgba(182,255,31,.1); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark2); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { background: var(--dark); color: #fff; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, #1a3a0a 0%, transparent 70%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; align-items: center; gap: 48px; padding: 60px 0; }
.hero-copy { display: flex; flex-direction: column; gap: 0; }
.tagline { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px; }
.tagline::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 72px; line-height: .9; font-weight: 900; margin: 0 0 20px; }
.hero-sub { font-size: 14px; color: #c8d4be; line-height: 1.7; max-width: 420px; margin-bottom: 28px; }
.hero-usp { font-size: 12px; color: #9aad8a; margin-bottom: 32px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge { font-size: 11px; color: #9aad8a; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hero-badge::before { content: '✓'; color: var(--accent); font-weight: 900; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { width: 100%; aspect-ratio: 4/3; border: 1px solid #1e3812; border-radius: var(--radius-lg); background: linear-gradient(135deg, #112008 0%, #0a1405 100%); overflow: hidden; position: relative; }
.hero-img-wrap::after { content: 'FEEDERMANIA'; position: absolute; bottom: 20px; right: 20px; font-family: 'Playfair Display', serif; font-size: 13px; color: rgba(182,255,31,.3); letter-spacing: .2em; }

/* ── SEARCH BAND ─────────────────────────────────────────────── */
.band { background: #fff; border-bottom: 1px solid var(--line); padding: 18px 0; }
.band-row { display: flex; gap: 12px; align-items: center; max-width: 720px; margin: 0 auto; }
.band-input { flex: 1; height: 48px; border: 1.5px solid var(--line); background: var(--soft); border-radius: 999px; padding: 0 20px; font-size: 13px; transition: border-color .2s; }
.band-input:focus { outline: none; border-color: var(--accent2); }
.band-tags { display: flex; gap: 8px; flex-wrap: wrap; padding: 10px 0 0; max-width: 720px; margin: 0 auto; }
.band-tag { font-size: 11px; color: var(--muted); padding: 4px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; transition: all .15s; }
.band-tag:hover { border-color: var(--accent2); color: var(--green-mid); }

/* ── CATEGORY TILES ──────────────────────────────────────────── */
.cat-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 28px 0; }
.cat-tile { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px 16px; transition: all .2s; cursor: pointer; text-align: center; }
.cat-tile:hover { border-color: var(--accent2); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-tile-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.cat-tile-count { font-size: 11px; color: var(--muted); }

/* ── SECTION ─────────────────────────────────────────────────── */
.section { padding: 32px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; gap: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--text); font-weight: 700; line-height: 1.1; }
.section-sub { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.section-link { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent2); transition: color .2s; }
.section-link:hover { color: var(--green-mid); }

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .22s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #ccd9be; }
.product-card { cursor: pointer; }
.product-card:focus { outline: 2px solid var(--accent2); outline-offset: 2px; }
.card-photo { height: 190px; background: linear-gradient(135deg, #e8ede0, #f4f6f0); overflow: hidden; position: relative; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .card-photo img { transform: scale(1.04); }
.card-body { padding: 14px; }
.badge { display: inline-flex; height: 20px; align-items: center; padding: 0 9px; border-radius: 999px; background: var(--dark); color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.badge.new { background: #e8f6d6; color: #2a6000; border: 1px solid #b8e08a; }
.badge.top { background: #fff4d6; color: #7a5200; border: 1px solid #f5d980; }
.price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin: 8px 0 4px; color: var(--text); }
.old-price { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.lowest-price { font-size: 11px; color: #5a6b37; line-height: 1.5; }

/* ── PROMO BANNER ────────────────────────────────────────────── */
.promo-banner { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 8px 0; position: relative; overflow: hidden; }
.promo-banner::before { content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(182,255,31,.15) 0%, transparent 70%); }
.promo-banner-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin: 0 0 8px; font-weight: 900; }
.promo-banner-text p { font-size: 13px; color: #9aad8a; margin: 0; }

/* ── WHY US ──────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 32px 0; }
.why-item { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.why-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { margin-top: 40px; background: var(--dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 48px 24px 32px; }
.footer-brand p { font-size: 12px; color: #7a9060; line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-title { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.footer a { font-size: 13px; color: #9aad8a; display: block; margin-bottom: 8px; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1c3010; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--accent2); }

/* ── LISTING PAGE ────────────────────────────────────────────── */
.breadcrumb { font-size: 11px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.sidebar { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 120px; max-height: calc(100vh - 140px); overflow-y: auto; }
.sidebar-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 14px; }
.box { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 20px; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.toolbar .left { display: flex; flex-direction: column; gap: 4px; }
.input, .select, textarea { width: 100%; height: 46px; border: 1.5px solid var(--line); background: #fff; padding: 0 14px; border-radius: var(--radius-sm); font-size: 13px; transition: border-color .2s; }
.input:focus, .select:focus, textarea:focus { outline: none; border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(141,207,0,.12); }
textarea { height: 120px; padding: 12px; resize: vertical; }
.filter-brand { display: flex; align-items: center; gap: 10px; font-size: 13px; cursor: pointer; padding: 6px 0; }
.filter-brand input { width: 16px; height: 16px; accent-color: var(--accent2); cursor: pointer; }

.listing-layout { align-items:start; }
.listing-sidebar-head { display:none; }
.listing-filters-toggle { display:none; align-items:center; justify-content:center; min-width:104px; height:38px; padding:0 16px; border:1.5px solid var(--line); border-radius:12px; background:#fff; color:var(--text); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; }
.listing-filters-backdrop { display:none; }
.listing-sidebar-close { display:none; width:40px; height:40px; border:1.5px solid var(--line); border-radius:999px; background:#fff; color:var(--dark); font-size:24px; line-height:1; cursor:pointer; }

/* ── PRODUCT PAGE ────────────────────────────────────────────── */
.product-layout { display: grid; grid-template-columns: 520px 1fr; gap: 48px; }
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-main { height: 420px; border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.product-main img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumb { height: 72px; border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm); cursor: pointer; overflow: hidden; transition: border-color .2s; }
.thumb.active { border-color: var(--accent2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.stock { display: inline-flex; height: 26px; padding: 0 12px; align-items: center; border-radius: 999px; background: #e8f6d6; color: #2a6000; font-size: 11px; font-weight: 600; margin: 12px 0; }
.stock.out { background: #fde8e8; color: #a00; }
.qty { display: inline-flex; overflow: hidden; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.qty button { width: 42px; height: 42px; border: none; background: var(--soft); cursor: pointer; font-size: 18px; color: #333; transition: background .15s; }
.qty button:hover { background: var(--accent); color: #111; }
.qty input { width: 60px; height: 42px; border: none; border-left: 1.5px solid var(--line); border-right: 1.5px solid var(--line); text-align: center; font-size: 15px; font-weight: 600; background: #fff; }
.notice { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid #d5e8c0; background: var(--soft); border-radius: var(--radius-sm); font-size: 12px; color: var(--muted); margin-top: 8px; }
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 24px; }
.tab { padding: 12px 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; color: var(--muted); transition: all .2s; }
.tab.active, .tab:hover { color: var(--text); border-bottom-color: var(--accent2); }
.desc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-top: 40px; }
.variant-pill { cursor: pointer; height: 38px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 600; transition: all .15s; display: inline-flex; align-items: center; }
.variant-pill:hover { border-color: var(--accent2); }
.variant-pill.active { background: var(--dark) !important; color: var(--accent) !important; border-color: var(--dark) !important; font-weight: 700; }

/* ── CART ────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 16px; align-items: center; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; transition: box-shadow .2s; }
.cart-item:hover { box-shadow: var(--shadow); }
.cart-photo { width: 80px; height: 80px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #f4f6f0; overflow: hidden; }
.cart-photo img { width: 100%; height: 100%; object-fit: cover; }
.summary { background: var(--dark); color: #fff; padding: 24px; border-radius: var(--radius-lg); position: sticky; top: 88px; }
.summary-title { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #9aad8a; padding: 6px 0; }
.summary-total { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: #fff; }
.promo-inline-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 16px; }
.promo-inline-form .input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; height: 42px; }
.promo-inline-form .input::placeholder { color: rgba(255,255,255,.4); }
.promo-feedback { font-size: 12px; color: var(--accent); margin-top: 8px; min-height: 18px; }

/* ── CHECKOUT ────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.checkout-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid #ececec; font-size: 13px; }
.checkout-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.success-box { padding: 18px; border: 1.5px solid #c8e0a8; background: #f4fbec; border-radius: var(--radius); display: grid; gap: 6px; }
.checkout-panel { display: none; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.checkout-panel.open { display: block; }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-hero-section { background: var(--dark); color: #fff; padding: 48px 0 32px; }
.blog-hero-section h1 { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; margin: 0 0 12px; }
.blog-hero-section p { font-size: 14px; color: #9aad8a; max-width: 480px; }
.blog-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.blog-cat-btn { height: 36px; padding: 0 16px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 999px; background: transparent; color: #9aad8a; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: all .2s; }
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--accent); color: #111; border-color: var(--accent); }
.blog-listing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 32px 0; }
.blog-single { display: grid; gap: 20px; padding: 32px 0; }
.blog-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .22s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card.large { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-card.large .blog-photo { height: 100%; min-height: 260px; }
.blog-photo { height: 200px; background: linear-gradient(135deg, #d9e8d0, #f4f4f4); overflow: hidden; }
.blog-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-photo img { transform: scale(1.04); }
.blog-body { padding: 20px; }
.blog-single .blog-hero { height: 400px; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--line); }
.blog-single .blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-single .blog-content { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 32px; font-size: 14px; line-height: 1.8; }
.muted-chip { display: inline-flex; padding: 4px 10px; border-radius: 999px; background: #eef3e8; color: #4a5e39; font-size: 10px; font-weight: 700; letter-spacing: .08em; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-hero { background: var(--dark); color: #fff; padding: 48px 0 36px; }
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; margin: 0 0 12px; }
.contact-hero p { font-size: 14px; color: #9aad8a; }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 28px; padding: 32px 0; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; transition: box-shadow .2s; }
.contact-item:hover { box-shadow: var(--shadow); }
.contact-icon { width: 44px; height: 44px; border-radius: 999px; background: var(--soft); border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.social-btn { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-size: 12px; font-weight: 600; transition: all .2s; cursor: pointer; }
.social-btn:hover { border-color: var(--accent2); background: var(--soft); }

/* ── AUTH ────────────────────────────────────────────────────── */
.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: linear-gradient(135deg, var(--dark) 0%, #162010 100%); }
.auth-card { width: min(480px, 100%); background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.auth-card h1 { font-family: 'Playfair Display', serif; font-size: 32px; margin: 0 0 6px; }
.auth-grid { display: grid; gap: 14px; margin-top: 24px; }
.link-btn { font-size: 12px; color: var(--green-mid); font-weight: 600; }

/* ── ACCOUNT ─────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.account-menu { display: grid; gap: 8px; }
.account-nav { height: 46px; border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-sm); text-align: left; padding: 0 16px; cursor: pointer; font-weight: 600; font-size: 13px; transition: all .2s; }
.account-nav.active { background: #eef7dd; border-color: #b0d87a; color: var(--green-mid); }
.account-nav:hover:not(.active) { border-color: var(--accent2); }
.account-view { display: none; }
.account-view.active { display: block; }
.account-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.account-card-stat { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px; }
.account-card-stat .num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--text); margin-top: 8px; }
.account-card-stat label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.danger-zone { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ── ADMIN ───────────────────────────────────────────────────── */
.admin-wrap { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; background: #f0f2ec; }
.admin-side { background: var(--dark); color: #fff; border-right: 1px solid #0b2300; }
.admin-top { height: 52px; background: #111d08; color: #fff; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; border-bottom: 1px solid #1c3010; }
.admin-brand { padding: 20px 16px; border-bottom: 1px solid #1c3010; display: flex; align-items: center; gap: 12px; }
.admin-brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; background: #fff; }
.admin-brand-text { font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .14em; }
.admin-menu { padding: 18px 16px 24px; }
.menu-group { margin-bottom: 28px; }
.menu-title { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #5a7a3a; margin-bottom: 10px; font-weight: 700; }
.menu-link { display: flex; align-items: center; gap: 8px; font-size: 13px; line-height: 2.0; color: #c8d4be; border-radius: var(--radius-sm); padding: 0 8px; transition: all .15s; }
.menu-link:hover { background: rgba(182,255,31,.08); color: #fff; }
.menu-link.active { color: var(--accent); background: rgba(182,255,31,.1); font-weight: 600; }
.admin-main { background: #f0f2ec; }
.admin-content { padding: 24px; }
.admin-page-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 20px; }
.stat { border: 1.5px solid var(--line); background: #fff; padding: 20px; border-radius: var(--radius); }
.stat.dark { background: var(--dark2); color: var(--accent); border-color: #213215; }
.stat label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.stat.dark label { color: #7a9060; }
.num { font-family: 'Playfair Display', serif; font-size: 38px; margin-top: 10px; line-height: 1; }
.admin-grid-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 16px; }
.admin-grid-bottom { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.table { width: 100%; border-collapse: collapse; font-size: 12px; }
.table th { padding: 10px 10px; border-bottom: 2px solid var(--line); text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.table td { padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--soft); }
.chart { height: 260px; border: 1.5px solid var(--line); background: linear-gradient(#f8fcf2, #fff); border-radius: var(--radius); position: relative; overflow: hidden; }
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.status-chip { display: inline-flex; padding: 4px 10px; border-radius: 999px; background: #eef6e3; color: #355a12; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.status-chip.new { background: #e8f0ff; color: #2a4aaa; }
.status-chip.sent { background: #d6f6e8; color: #0a6640; }
.status-chip.cancelled { background: #fde8e8; color: #aa2a2a; }
.admin-view { display: none; }
.admin-view.active { display: block; }
.admin-form-grid { display: grid; gap: 12px; }
.admin-form-actions, .table-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-check { font-size: 13px; display: flex; align-items: center; gap: 8px; }
.admin-main .btn-outline { border: 1.5px solid #d8d8d8; color: #333; background: #fff; }
.admin-main .btn-outline:hover { background: #f7f7f7; border-color: #bbb; }
.mini-kpi, .info-card { border: 1.5px solid var(--line); background: var(--soft); padding: 16px; border-radius: var(--radius-sm); display: grid; gap: 6px; }
.mini-kpi strong, .info-card strong { font-size: 22px; font-family: 'Playfair Display', serif; color: var(--green-mid); }
.mini-kpi span, .info-card span { font-size: 12px; color: var(--muted); }
.info-stack { display: grid; gap: 12px; }
.admin-kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.admin-actions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.image-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.preview-card { position: relative; height: 90px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fafafa; }
.preview-card button { position: absolute; top: 6px; right: 6px; width: 24px; height: 24px; border: none; border-radius: 50%; background: rgba(0,0,0,.7); color: #fff; cursor: pointer; font-size: 14px; line-height: 1; }
.product-thumb-cell { display: grid; grid-template-columns: 48px 1fr; gap: 10px; align-items: center; }
.product-thumb-cell img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; border: 1.5px solid var(--line); }
.notice-bar { padding: 12px 16px; border: 1px solid #dce7d0; background: #f8fdf2; color: #355a12; font-size: 12px; margin-bottom: 16px; border-radius: var(--radius-sm); }
.period-summary { display: grid; gap: 12px; }
.period-summary .info-card strong { font-size: 18px; }

/* ── PERMISSIONS / USERS ─────────────────────────────────────── */
.permissions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.perm-check { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-size: 13px; transition: all .15s; background: #fff; }
.perm-check:hover { background: var(--soft); border-color: #b0d87a; }
.perm-check input[type=checkbox] { accent-color: var(--accent2); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.perm-check:has(input:checked) { background: #eef7dd; border-color: #b0d87a; }
.perm-badge { display: inline-flex; flex-wrap: wrap; gap: 3px; }
.perm-tag { font-size: 10px; padding: 2px 8px; border-radius: 999px; background: #eef4e8; color: #4a7c1f; font-weight: 600; border: 1px solid #c6df9c; }
.perm-tag-none { font-size: 11px; color: #aaa; font-style: italic; }

/* ── MODALS / OVERLAYS ───────────────────────────────────────── */
.confirm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9999; display: flex; align-items: center; justify-content: center; animation: fadeIn .15s; }
.confirm-box { background: #fff; border-radius: var(--radius-lg); padding: 32px; max-width: 440px; width: 90%; box-shadow: 0 24px 60px rgba(0,0,0,.3); display: grid; gap: 16px; }
.confirm-title { font-weight: 800; font-size: 18px; line-height: 1.3; }
.confirm-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }
.confirm-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast-wrap { position: fixed; right: 20px; bottom: 20px; display: grid; gap: 8px; z-index: 9999; }
.toast { background: var(--dark); color: #fff; border: 1px solid #2b4119; padding: 14px 18px; border-radius: var(--radius); min-width: 260px; box-shadow: var(--shadow-lg); font-size: 13px; animation: slideIn .2s ease; }
.toast.error { border-color: #7a2c2c; background: #2a0808; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── MISC ────────────────────────────────────────────────────── */
.password-wrap { position: relative; display: flex; align-items: center; }
.password-wrap .input { flex: 1; padding-right: 44px; }
.password-toggle { position: absolute; right: 12px; background: none; border: none; cursor: pointer; font-size: 16px; color: #888; padding: 4px; line-height: 1; transition: color .15s; }
.password-toggle:hover { color: #333; }
.trash-days-left { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 3px 8px; border-radius: 999px; }
.trash-days-urgent { background: #fde8e8; color: #c0392b; }
.trash-days-warn { background: #fdf3cd; color: #8a6600; }
.trash-days-ok { background: #e8f5e9; color: #2e7d32; }
.protected-badge { display: inline-flex; align-items: center; padding: 8px 14px; background: #eef4e8; border-radius: 999px; font-size: 11px; font-weight: 700; }
.admin-brand-link { color: #fff; text-decoration: none; cursor: pointer; }


/* File inputs need auto height, not fixed */
input[type="file"].input,
input[type="file"] {
  height: auto;
  padding: 10px 14px;
  cursor: pointer;
  line-height: 1.4;
}

/* ── GALLERY NAV ─────────────────────────────────────────────── */
.product-gallery { position: relative; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid rgba(0,0,0,.12); background: rgba(255,255,255,.95); cursor: pointer; font-size: 24px; line-height: 1; color: #111; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.12); transition: all .2s; }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-nav:hover { background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.gallery-nav[style*="none"] { display: none !important; }
/* ================================================================
   RESPONSIVE — full rewrite
   Breakpoints: 1024 · 900 · 640 · 480
================================================================ */

/* ── 1024px ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 420px 1fr; gap: 32px; }
  .admin-grid-top { grid-template-columns: 1fr; }
}

/* ── 900px ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* base */
  .container { padding: 0 16px; }

  /* hide desktop nav, show hamburger */
  .nav,
  .desktop-only { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; }

  /* header */
  .header .container {
    height: auto;
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    flex-wrap: nowrap;
  }
  .brand img { height: 36px; }
  .brand-name { font-size: 17px; }
  .header-right { gap: 8px; flex-wrap: nowrap; margin-left: auto; flex-shrink: 0; }
  .header-right .pill { height: 38px; padding: 0 12px; font-size: 10px; }
  /* hide login/panel buttons — accessible via hamburger */
  .header-right [data-login-link],
  .header-right [data-logout-link],
  .header-right [data-panel-link] { display: none !important; }

  /* topbar */
  .topbar { font-size: 10px; }
  .topbar .container {
    height: auto;
    min-height: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  /* collapse all multi-col layouts to 1 col */
  .hero-grid,
  .layout,
  .listing-layout,
  .product-layout,
  .desc-layout,
  .cart-layout,
  .checkout-layout,
  .contact-grid,
  .admin-wrap,
  .admin-grid-top,
  .admin-grid-bottom,
  .stats,
  .footer-grid,
  .blog-listing,
  .account-layout { grid-template-columns: 1fr; }

  /* hero */
  .hero h1 { font-size: 44px; }
  .hero-visual { display: none; }
  .hero-grid { min-height: auto; padding: 36px 0; gap: 24px; }

  /* grids */
  .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }

  /* cat tiles */
  .cat-tiles { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }

  /* section */
  .section-head { align-items: flex-start; }
  .section-title { font-size: 26px; }

  /* product page */
  .product-main { height: 300px; }
  .thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .desc-layout { gap: 20px; margin-top: 24px; }

  /* cart */
  .cart-item {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px 14px;
    padding: 14px;
  }
  .cart-item > *:nth-child(n+3) { grid-column: 2; }
  .summary { position: static; }

  /* checkout */
  .checkout-layout { gap: 20px; }

  /* listing sidebar — slide-in drawer */
  .listing-filters-toggle { display: inline-flex; }
  .listing-sidebar {
    position: fixed; top: 0; left: 0; z-index: 275;
    width: min(88vw, 360px); height: 100dvh;
    max-height: 100dvh; overflow-y: auto;
    background: #fff; margin: 0; padding: 18px 16px 24px;
    border-right: 1px solid var(--line);
    box-shadow: 20px 0 48px rgba(0,0,0,.18);
    transform: translateX(-110%);
    transition: transform .24s ease;
  }
  .listing-sidebar.open { transform: translateX(0); }
  .listing-sidebar-head {
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    margin-bottom: 18px;
  }
  .listing-sidebar-close { display: inline-flex; align-items: center; justify-content: center; }
  .listing-filters-backdrop {
    position: fixed; inset: 0; z-index: 270;
    background: rgba(0,0,0,.42);
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
  }
  .listing-filters-backdrop.open { display: block; opacity: 1; pointer-events: auto; }
  body.filters-open { overflow: hidden; }

  /* toolbar sticky */
  .toolbar { position: sticky !important; top: 60px; background: var(--bg); z-index: 50; padding: 10px 0; }

  /* account */
  .account-cards { grid-template-columns: repeat(2, 1fr); }

  /* blog */
  .blog-card.large { grid-template-columns: 1fr; }
  .blog-card.large .blog-photo { height: 220px; }

  /* admin */
  .admin-side { padding-bottom: 20px; }
  .image-preview-grid { grid-template-columns: 1fr 1fr; }

  /* band search */
  .band-row { flex-direction: column; align-items: stretch; }
  .band-row .btn { width: 100%; }

  /* footer */
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* search input in header */
  .search-pill-input { width: 160px; }

  /* promo banner */
  .promo-banner { flex-direction: column; align-items: flex-start; padding: 24px 24px; gap: 16px; }
  .promo-banner-text h2 { font-size: 28px; }

  /* auth — give bottom padding so cookie banner doesn't overlap */
  .auth-wrap {
    align-items: flex-start;
    padding: 20px 16px 120px;
    min-height: 100dvh;
  }
  .auth-card { width: 100%; max-width: 480px; margin: auto; }

  body.menu-open { overflow: hidden; }
}

/* ── 640px ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 14px; }
  .brand-name { font-size: 15px; }
  .header-right .pill { padding: 0 10px; font-size: 10px; }

  /* hero */
  .hero-grid { padding: 28px 0 32px; }
  .hero h1 { font-size: 34px; line-height: 1; }
  .hero-sub { font-size: 13px; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-badges { gap: 10px; }
  .hero-usp { font-size: 11px; }

  /* cat tiles */
  .cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-tile { padding: 14px 12px; }

  /* grids */
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-photo { height: 160px; }

  /* product */
  .product-main { height: 260px; }
  .thumb { height: 60px; }
  .gallery-nav { width: 34px; height: 34px; font-size: 20px; }
  .tabs { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .tab { flex: 0 0 auto; padding: 12px 14px; font-size: 11px; }

  /* cart */
  .cart-item { grid-template-columns: 64px 1fr; gap: 10px 12px; }
  .cart-photo { width: 64px; height: 64px; }
  .promo-inline-form { grid-template-columns: 1fr; }

  /* checkout */
  .checkout-item { grid-template-columns: 48px 1fr; }
  .checkout-item img { width: 48px; height: 48px; }

  /* blog / contact / legal headings */
  .blog-hero-section h1,
  .contact-hero h1,
  .legal-hero h1 { font-size: 30px; }
  .blog-single .blog-hero { height: 200px; }
  .blog-single .blog-content,
  .legal-card { padding: 16px; }

  /* account */
  .account-cards { grid-template-columns: 1fr 1fr; }

  /* sections */
  .section { padding: 22px 0; }
  .section-title { font-size: 24px; }

  /* why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* mobile menu full width */
  .mobile-menu-sheet { width: 100vw; }

  /* auth */
  .auth-card { padding: 28px 20px; }
  .auth-card h1 { font-size: 26px; }
  .auth-wrap { padding: 16px 14px 130px; }
}

/* ── 480px ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .account-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .card-photo { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .summary-total { font-size: 28px; }
  .auth-wrap { padding: 16px 12px 140px; }
}

/* ── LEGAL pages responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .legal-hero h1 { font-size: 34px; }
  .legal-card { padding: 20px; }
  .legal-card h2 { font-size: 20px; }
  .legal-hero { padding: 36px 0 28px; }
}

/* ── Mobile menu panel ──────────────────────────────────────── */
.mobile-menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  position: relative;
}
.mobile-menu-toggle::before,
.mobile-menu-toggle::after,
.mobile-menu-toggle span {
  content: '';
  display: block;
  position: absolute;
  width: 18px; height: 2px;
  background: var(--dark);
  border-radius: 99px;
  transition: transform .22s, opacity .22s;
}
.mobile-menu-toggle::before { transform: translateY(-6px); }
.mobile-menu-toggle::after  { transform: translateY(6px); }
.mobile-menu-toggle span    { transform: translateY(0); }
.mobile-menu-toggle.open span { opacity: 0; }
.mobile-menu-toggle.open::before { transform: rotate(45deg); }
.mobile-menu-toggle.open::after  { transform: rotate(-45deg); }

.mobile-menu-panel { position: fixed; inset: 0; z-index: 260; display: none; }
.mobile-menu-panel.open { display: block; }
.mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.mobile-menu-sheet {
  position: absolute; top: 0; right: 0;
  width: min(90vw, 360px); height: 100%;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,.18);
  padding: 20px 18px 28px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px;
}
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mobile-menu-close {
  width: 42px; height: 42px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-nav { display: grid; gap: 10px; }
.mobile-menu-nav a {
  display: flex; align-items: center;
  min-height: 48px; padding: 0 16px;
  border: 1.5px solid var(--line); border-radius: 14px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--soft); color: var(--text);
}
.mobile-menu-nav a:active { background: #e8f0d8; }
.mobile-menu-actions { display: grid; gap: 10px; }
.mobile-menu-search .search-pill-input { width: 100%; }
.mobile-menu-meta { padding-top: 6px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }

/* ── Listing toggle ─────────────────────────────────────────── */
.listing-filters-toggle {
  display: none;
  align-items: center; justify-content: center;
  min-width: 104px; height: 38px; padding: 0 16px;
  border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--text);
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
}
.listing-sidebar-head { display: none; }
.listing-sidebar-close {
  display: none;
  width: 40px; height: 40px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--dark);
  font-size: 22px; line-height: 1; cursor: pointer;
  align-items: center; justify-content: center;
}
.listing-filters-backdrop { display: none; }

/* ================================================================
   COOKIE BANNER
================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--dark);
  color: #c8d8b8;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  border-top: 2px solid #1c3010;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  font-size: 13px;
  line-height: 1.55;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; max-width: 680px; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner a:hover { color: var(--accent3); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  height: 40px; padding: 0 20px;
  background: var(--accent); color: var(--dark);
  border: none; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--accent3); transform: translateY(-1px); }
.cookie-btn-reject {
  height: 40px; padding: 0 18px;
  background: transparent; color: #9aad8a;
  border: 1.5px solid #2a4020; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.cookie-btn-reject:hover { border-color: #4a6040; color: #c0d0a8; }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px 20px;
    gap: 14px;
  }
  .cookie-banner p { font-size: 12px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept,
  .cookie-btn-reject { flex: 1; justify-content: center; display: flex; align-items: center; }
}
