:root {
    --red:        #8B0000;
    --red-dark:   #6B0000;
    --black:      #000000;
    --white:      #FFFFFF;
    --gray-dark:  #333333;
    --gray-mid:   #727272;
    --gray-light: #F2F2F2;
    --header-h:   72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 2px solid var(--red);
    height: var(--header-h);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.logo img { height: 50px; width: auto; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.main-nav { flex: 1; }

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    border-radius: 4px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.main-nav a:hover { color: var(--red); }

.main-nav .arrow { font-size: 10px; margin-left: 4px; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--red);
    border-radius: 0 0 6px 6px;
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    z-index: 200;
    margin-top: 0;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    display: none;
}

.has-dropdown:hover::after,
.has-dropdown.open::after { display: block; }

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }

.dropdown li a {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 0;
}

.dropdown li a:hover { background: var(--gray-light); color: var(--red); }

.nav-b2b {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    transition: background .2s !important;
}

.nav-b2b:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.lang-switcher {
    display: flex;
    gap: 2px;
    align-items: center;
}

.lang-switcher a {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    color: var(--gray-mid);
    border-radius: 3px;
    transition: color .2s, background .2s;
    letter-spacing: .5px;
}

.lang-switcher a:hover { color: var(--red); }
.lang-switcher a.active { color: var(--red); background: rgba(237,28,36,.08); }
.lang-switcher a + a::before { content: '|'; margin-right: 2px; color: #ddd; }

/* ── MOBILE NAV TOGGLE ───────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-content h1 span { color: var(--red); }

.hero-content p {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 12px;
    opacity: .92;
}

.hero-content .sub {
    font-size: clamp(14px, 1.8vw, 16px);
    opacity: .8;
    font-style: italic;
    margin-bottom: 28px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s;
    text-align: center;
    border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--red); }

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-light); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.section-header p {
    font-size: 17px;
    color: var(--gray-mid);
    max-width: 640px;
    margin: 0 auto;
}

.section-header .accent { color: var(--red); }

/* ── STATS BAND ─────────────────────────────────────────── */
.stats-band {
    background: var(--black);
    color: var(--white);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 24px 32px;
    border-right: 1px solid rgba(255,255,255,.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

/* ── CARDS GRID ─────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.13); transform: translateY(-4px); }

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body { padding: 24px; }

.card-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.card-body p { font-size: 14px; color: var(--gray-mid); line-height: 1.65; }

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(237,28,36,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon svg { width: 28px; height: 28px; fill: var(--red); }

/* ── HIGHLIGHT BAND ─────────────────────────────────────── */
.highlight-band {
    background: var(--red);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.highlight-band h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight-band p {
    font-size: 17px;
    opacity: .9;
    max-width: 640px;
    margin: 0 auto 28px;
}

/* ── INTERIOR HERO (subpages) ───────────────────────────── */
.page-hero {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 4px;
    background: var(--red);
}

.page-hero h1 {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 17px;
    opacity: .85;
    max-width: 700px;
    line-height: 1.7;
}

/* ── IMAGE + TEXT SPLIT ─────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-img { border-radius: 8px; overflow: hidden; }
.split-img img { width: 100%; height: 400px; object-fit: cover; }

.split-text h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.split-text p { font-size: 16px; color: var(--gray-mid); margin-bottom: 16px; line-height: 1.75; }

/* ── STEPS (Storitve) ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }

.step { text-align: center; padding: 36px 24px; }

.step-num {
    width: 60px; height: 60px;
    background: var(--red);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.step p  { font-size: 14px; color: var(--gray-mid); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.contact-info .intro { color: var(--gray-mid); margin-bottom: 40px; }

.contact-dept { margin-bottom: 28px; }
.contact-dept h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.contact-dept a {
    display: block;
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 4px;
    transition: color .2s;
}

.contact-dept a:hover { color: var(--red); }

.sales-team { margin-top: 36px; padding-top: 32px; border-top: 1px solid #e0e0e0; }
.sales-team h3 { font-size: 16px; font-weight: 600; margin-bottom: 20px; }

.sales-person { margin-bottom: 20px; }
.sales-person strong { display: block; font-size: 15px; margin-bottom: 3px; }
.sales-region {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 2px 7px;
    border-radius: 3px;
    margin-bottom: 6px;
}
.sales-person a { display: block; font-size: 14px; color: var(--gray-mid); transition: color .2s; }
.sales-person a:hover { color: var(--red); }

/* ── CONTACT INTRO TEXT ─────────────────────────────────── */
.contact-text {
    max-width: 820px;
    margin: 0 auto;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.contact-text p:last-child { margin-bottom: 0; }

/* ── CONTACT PERSON CARDS ───────────────────────────────── */
.contact-persons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-person-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    border-top: 4px solid var(--red);
}

.contact-person-card strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-person-card a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-mid);
    margin-top: 8px;
    transition: color .2s;
    word-break: break-all;
}

.contact-person-card a:hover { color: var(--red); }

.contact-person-card .cp-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .contact-persons { grid-template-columns: 1fr; }
}

/* ── HOME CATEGORY CARDS ─────────────────────────────────── */
.home-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-cat-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .25s, transform .25s;
    border-bottom: 3px solid transparent;
}

.home-cat-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    transform: translateY(-4px);
    border-bottom-color: var(--red);
}

.home-cat-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.home-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.home-cat-card:hover .home-cat-img img {
    transform: scale(1.05);
}

.home-cat-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-cat-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--black);
}

.home-cat-body p {
    font-size: .9rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.home-cat-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: .02em;
}

@media (max-width: 1024px) {
    .home-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .home-cat-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT IMAGE BAND ────────────────────────────────────── */
.about-image-band {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.about-image-band img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── REŠITVE / SOLUTIONS ─────────────────────────────────── */
.res-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.res-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-top: 4px solid var(--red);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}

.res-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

.res-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.res-card-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--black);
}

.res-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.res-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.res-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .res-grid { grid-template-columns: 1fr; }
    .about-image-band img { height: 280px; }
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-form-wrap { background: var(--gray-light); padding: 36px; border-radius: 8px; }

.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: var(--white);
    color: var(--gray-dark);
    transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(237,28,36,.1);
}

.form-group textarea { height: 120px; resize: vertical; }

.form-submit { margin-top: 8px; }

.form-submit button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.form-submit button:hover { background: var(--red-dark); transform: translateY(-1px); }

.form-message {
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 20px;
}

.form-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message.error   { background: #fce4e4; color: #b71c1c; border: 1px solid #f5a5a5; }

/* ── SUBPAGE LINKS GRID ─────────────────────────────────── */
.subpage-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }

.subpage-link {
    display: block;
    padding: 28px 24px;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--red);
    font-weight: 600;
    font-size: 16px;
    transition: background .2s, transform .2s;
}

.subpage-link:hover { background: #e8e8e8; transform: translateX(4px); }
.subpage-link span { display: block; font-size: 13px; font-weight: 400; color: var(--gray-mid); margin-top: 4px; }

/* ── ABOUT SPECS ────────────────────────────────────────── */
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.spec-card {
    padding: 32px 24px;
    border-radius: 8px;
    background: var(--gray-light);
    border-top: 4px solid var(--red);
}

.spec-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.spec-card p  { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--white); padding: 60px 0 0; }

.footer-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8; }

.footer-contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-contact-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.footer-contact-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
    transition: color .2s;
}

.footer-contact-col a:hover { color: var(--white); }

.footer-bottom {
    padding: 20px 0;
    background: rgba(255,255,255,.04);
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); text-align: center; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .split-img { order: -1; }
    .split-img img { height: 260px; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-contacts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: var(--white);
        overflow-y: auto;
        padding: 24px;
        z-index: 99;
        flex-direction: column;
    }
    .main-nav.open { display: flex; }
    .main-nav > ul { flex-direction: column; gap: 0; }
    .main-nav > ul > li { border-bottom: 1px solid var(--gray-light); }
    .main-nav a { padding: 14px 8px; font-size: 16px; }
    .has-dropdown .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--red);
        margin-left: 16px;
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .lang-switcher { margin-left: auto; }
    .hero { min-height: 400px; }
    .specs-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-contacts { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .subpage-links { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .stat-item:last-child { border-bottom: none; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -2px 12px rgba(0,0,0,.4);
}
#cookie-banner p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    flex: 1;
}
#cookie-banner p a {
    color: #c58080;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
#cookie-accept, #cookie-decline {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', Arial, sans-serif;
}
#cookie-accept {
    background: var(--red);
    color: var(--white);
}
#cookie-accept:hover { background: var(--red-dark); }
#cookie-decline {
    background: transparent;
    color: #999;
    border: 1px solid #555;
}
#cookie-decline:hover { color: var(--white); border-color: #999; }

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
    .cookie-banner-btns { width: 100%; }
    #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
}

/* ===== COOKIE POLICY PAGE ===== */
.cookies-content { padding: 3rem 0 5rem; }
.cookies-content .narrow { max-width: 800px; }
.cookies-content h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.15rem; color: var(--black); }
.cookies-content p { color: var(--gray-mid); line-height: 1.7; margin-bottom: 1rem; }
.cookie-table-wrap { overflow-x: auto; margin: 1.25rem 0 1.5rem; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cookie-table th { background: var(--gray-light); padding: 0.6rem 1rem; text-align: left; font-weight: 600; border-bottom: 2px solid #ddd; }
.cookie-table td { padding: 0.6rem 1rem; border-bottom: 1px solid #eee; color: var(--gray-mid); vertical-align: top; }
.cookie-table code { background: var(--gray-light); padding: 0.1rem 0.35rem; border-radius: 3px; font-size: 0.85em; color: var(--black); }
.cookies-note { color: var(--gray-mid); font-size: 0.9rem; font-style: italic; }
.cookies-updated { color: #aaa; margin-top: 2rem; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; opacity: 0.8; }
.footer-bottom a:hover { opacity: 1; }
