@charset "utf-8";

/* ================================================================
   KA-PLOW OUTDOOR SERVICES — Global Stylesheet v4.0
   Single source of truth. Replaces hdrftr.css + navmenu.css.
   ================================================================ */

/* ── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
    --clr-green-dark:    #0E2606;
    --clr-green-mid:     #1d5a0f;
    --clr-green-light:   #e8f0e0;
    --clr-orange:        #D74100;
    --clr-orange-dark:   #b33600;
    --clr-white:         #ffffff;
    --clr-off-white:     #f5f7f3;
    --clr-text:          #1a1a1a;
    --clr-text-light:    #555555;
    --clr-border:        #dde5d6;

    /* Seasonal defaults (summer) — overridden by body.season-winter */
    --clr-season-primary:   #0E2606;
    --clr-season-accent:    #D74100;
    --clr-season-nav-bg:    #0E2606;
    --clr-season-footer-bg: #0E2606;

    --font-main:    'Manrope', sans-serif;

    --hdr-top-h:    42px;
    --hdr-main-h:   76px;

    --radius:       4px;
    --shadow:       0 2px 16px rgba(0,0,0,0.10);
    --transition:   0.25s ease;

    --container:    1200px;
}

/* ── WINTER SEASON OVERRIDES ───────────────────────────────── */
body.season-winter {
    --clr-season-primary:   #0d1b3e;
    --clr-season-accent:    #5b9bd5;
    --clr-season-nav-bg:    #0d1b3e;
    --clr-season-footer-bg: #071229;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--clr-text);
    background: var(--clr-white);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { padding-left: 1.5em; }

/* ── UTILITY ────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.7em 1.6em;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    line-height: 1;
}
.btn-primary {
    background: var(--clr-orange);
    color: var(--clr-white);
    border-color: var(--clr-orange);
    box-shadow: 0 3px 8px rgba(215,65,0,0.45);
}
.btn-primary:active {
    box-shadow: none;
    transform: translateY(1px);
}
.btn-primary:hover {
    background: var(--clr-orange-dark);
    border-color: var(--clr-orange-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--clr-green-dark);
    border-color: var(--clr-green-dark);
}
.btn-outline:hover {
    background: var(--clr-green-dark);
    color: var(--clr-white);
}
.btn-outline-white {
    background: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}
.btn-outline-white:hover {
    background: var(--clr-white);
    color: var(--clr-green-dark);
}

/* ── TOP UTILITY BAR ────────────────────────────────────────── */
#top-bar {
    background-color: var(--clr-season-nav-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 4 Q31 7 31 18 Q31 29 20 34 Q9 29 9 18 Q9 7 20 4Z' fill='rgba(255,255,255,0.05)'/%3E%3Cline x1='20' y1='4' x2='20' y2='34' stroke='rgba(255,255,255,0.04)' stroke-width='0.75'/%3E%3Cline x1='11' y1='14' x2='20' y2='19' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3Cline x1='11' y1='22' x2='20' y2='25' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3Cline x1='29' y1='14' x2='20' y2='19' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3Cline x1='29' y1='22' x2='20' y2='25' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    color: #c8d8b0;
    height: var(--hdr-top-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5%;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
#top-bar a {
    color: #c8d8b0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    transition: color var(--transition);
}
#top-bar a:hover { color: var(--clr-white); }
.top-bar-left  { display: flex; align-items: center; gap: 1.125em; }
#top-bar .tb-sms-icon { display: none; }
.top-bar-right { display: flex; align-items: center; gap: 1.25em; }
.top-bar-divider {
    width: 1px; height: 16px;
    background: rgba(255,255,255,0.2);
}

/* ── MAIN HEADER ────────────────────────────────────────────── */
#header-wrap {
    position: sticky;
    top: 0;
    z-index: 200;
}
#site-header {
    background: var(--clr-white);
    height: var(--hdr-main-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5%;
    border-bottom: 3px solid var(--clr-green-light);
    box-shadow: var(--shadow);
}
#hdr-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
#hdr-logo img {
    height: 56px;
    width: auto;
}

/* ── DESKTOP NAV ────────────────────────────────────────────── */
#hdr-nav {
    display: flex;
    align-items: center;
    gap: 0.1em;
    flex: 1;
    justify-content: center;
}
#hdr-nav a {
    padding: 0.5em 0.65em;
    font-family: 'Saira Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--clr-text);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
#hdr-nav a:hover,
#hdr-nav a.nav-active {
    color: var(--clr-orange);
}
#hdr-cta { flex-shrink: 0; }

/* ── MOBILE TOGGLE BUTTON ───────────────────────────────────── */
#mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.1rem;
    color: var(--clr-green-dark);
    padding: 0.3em;
    margin-left: 0.5em;
    line-height: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
#mobile-nav-toggle .icon-close { display: none; }
#mobile-nav-toggle.open .icon-open  { display: none; }
#mobile-nav-toggle.open .icon-close { display: inline; }

/* ── MOBILE DROPDOWN NAV ────────────────────────────────────── */
#mobile-nav {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
    background: var(--clr-white);
    border-top: 2px solid var(--clr-green-light);
    padding: 0 5%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    z-index: 1;
}
#mobile-nav.open {
    max-height: 600px;
    padding: 1em 5% 0.75em;
}
#mobile-nav a {
    padding: 0.5em 0;
    font-family: 'Saira Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-green-light);
    transition: color var(--transition);
}
#mobile-nav a:last-of-type { border-bottom: none; }
#mobile-nav a i { width: 1.25em; text-align: center; color: #888; margin-right: 0.4em; }
#mobile-nav a:hover { color: var(--clr-orange); }
.mobile-nav-btns {
    display: flex;
    gap: 0.75em;
    margin-top: 1.25em;
    padding-bottom: 1.5em;
}
.mobile-nav-btns .btn { flex: 1; text-align: center; color: #fff !important; }
.mobile-nav-btns .btn-outline {
    background: var(--clr-green-dark);
    color: #fff;
    border-color: var(--clr-green-dark);
}
.mobile-nav-btns .btn-outline:hover {
    background: var(--clr-green-mid);
    border-color: var(--clr-green-mid);
}

/* ── PAGE BANNER ────────────────────────────────────────────── */
.page-banner {
    background: var(--clr-season-primary);
    color: var(--clr-white);
    text-align: center;
    padding: 3rem 5%;
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
}
.page-banner::after {
    content: '';
    display: block;
    height: 4px;
    background: var(--clr-season-accent);
    position: absolute;
    bottom: 0; left: 0; right: 0;
}
.page-banner.has-bg {
    min-height: 28vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    background-size: cover;
    background-position: center;
}
.page-banner.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.page-banner.has-bg span {
    position: relative;
    z-index: 1;
}

/* ── TAGLINE BAR ────────────────────────────────────────────── */
.tagline-bar {
    background: #1a1a2e;
    color: #c8d8b0;
    text-align: center;
    padding: 1rem 5%;
    font-family: 'Kaushan Script', cursive;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}
@media (min-width: 601px) {
    .tagline-bar {
        font-size: clamp(1.5rem, 3.75vw, 2.175rem);
        line-height: 1.1265;
        border-top: 3px solid #c8d8b0;
        border-bottom: 3px solid #c8d8b0;
    }
}

/* ── FOOTER ─────────────────────────────────────────────────── */

/* Summer: subtle repeating leaf pattern */
#site-footer {
    background-color: var(--clr-season-footer-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 4 Q31 7 31 18 Q31 29 20 34 Q9 29 9 18 Q9 7 20 4Z' fill='rgba(255,255,255,0.05)'/%3E%3Cline x1='20' y1='4' x2='20' y2='34' stroke='rgba(255,255,255,0.04)' stroke-width='0.75'/%3E%3Cline x1='11' y1='14' x2='20' y2='19' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3Cline x1='11' y1='22' x2='20' y2='25' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3Cline x1='29' y1='14' x2='20' y2='19' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3Cline x1='29' y1='22' x2='20' y2='25' stroke='rgba(255,255,255,0.03)' stroke-width='0.75'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    color: #c0d0b8;
}

/* Winter: snowflake pattern on top bar */
body.season-winter #top-bar {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg stroke='rgba(255,255,255,0.07)' stroke-width='1' stroke-linecap='round' fill='none'%3E%3Cline x1='20' y1='3' x2='20' y2='37'/%3E%3Cline x1='3' y1='20' x2='37' y2='20'/%3E%3Cline x1='7' y1='7' x2='33' y2='33'/%3E%3Cline x1='33' y1='7' x2='7' y2='33'/%3E%3Cline x1='20' y1='3' x2='16' y2='9'/%3E%3Cline x1='20' y1='3' x2='24' y2='9'/%3E%3Cline x1='20' y1='37' x2='16' y2='31'/%3E%3Cline x1='20' y1='37' x2='24' y2='31'/%3E%3Cline x1='3' y1='20' x2='9' y2='16'/%3E%3Cline x1='3' y1='20' x2='9' y2='24'/%3E%3Cline x1='37' y1='20' x2='31' y2='16'/%3E%3Cline x1='37' y1='20' x2='31' y2='24'/%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

/* Winter: subtle repeating snowflake pattern */
body.season-winter #site-footer {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg stroke='rgba(255,255,255,0.07)' stroke-width='1' stroke-linecap='round' fill='none'%3E%3Cline x1='20' y1='3' x2='20' y2='37'/%3E%3Cline x1='3' y1='20' x2='37' y2='20'/%3E%3Cline x1='7' y1='7' x2='33' y2='33'/%3E%3Cline x1='33' y1='7' x2='7' y2='33'/%3E%3Cline x1='20' y1='3' x2='16' y2='9'/%3E%3Cline x1='20' y1='3' x2='24' y2='9'/%3E%3Cline x1='20' y1='37' x2='16' y2='31'/%3E%3Cline x1='20' y1='37' x2='24' y2='31'/%3E%3Cline x1='3' y1='20' x2='9' y2='16'/%3E%3Cline x1='3' y1='20' x2='9' y2='24'/%3E%3Cline x1='37' y1='20' x2='31' y2='16'/%3E%3Cline x1='37' y1='20' x2='31' y2='24'/%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}
.ftr-main {
    display: grid;
    grid-template-columns: 1fr 1.875em 1fr 6em 1fr;
    column-gap: 0;
    row-gap: 0;
    padding: 3em 5%;
    max-width: var(--container);
    margin: 0 auto;
}
.ftr-col:nth-child(1) { grid-column: 1; }
.ftr-col:nth-child(2) { grid-column: 3; }
.ftr-col:nth-child(3) { grid-column: 5; }
.ftr-col h4 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 1.25em;
    padding-bottom: 0.6em;
    border-bottom: 2px solid var(--clr-season-accent);
    display: inline-block;
}
.ftr-col p {
    line-height: 1.85;
    margin-bottom: 0.5em;
    font-size: 0.9rem;
}
.ftr-col a {
    color: #8ec488;
    text-decoration: none;
    transition: color var(--transition);
}
.ftr-col a:hover { color: var(--clr-white); text-decoration: underline; text-underline-offset: 3px; }
.ftr-col .btn { color: #fff; }
.ftr-col .btn:hover { color: #fff; }
.ftr-col .fa-solid,
.ftr-col .fa-brands {
    color: #6aaa60;
    width: 1.1em;
    margin-right: 0.4em;
}
.ftr-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4em 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
}
.ftr-hours-row:last-child { border-bottom: none; }
.ftr-hours-day { font-weight: 700; color: #c8d8b0; }
/* Spinner state for service-cta and estimate btn-primary */
.service-cta,
.btn-primary[href*="/site/estimates/"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6em;
}
/* Keep spinner white inside footer estimate button */
.ftr-col .btn-primary .fa-solid {
    color: #fff;
    width: auto;
    margin-right: 0;
}

.ftr-hours-day.today { color: #6deb6d; }
.ftr-bottom {
    background: rgba(0,0,0,0.35);
    padding: 1em 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #6a8a62;
    flex-wrap: wrap;
    gap: 0.5em;
}
.ftr-bottom a { color: #6a8a62; text-decoration: none; }
.ftr-bottom a:hover { color: var(--clr-white); text-decoration: underline; text-underline-offset: 3px; }

.ftr-cta-links {
    display: flex;
    flex-direction: column;
    gap: 0.55em;
    margin-top: 1.25em;
}
.ftr-cta-links a {
    display: flex;
    align-items: center;
    gap: 0.55em;
    color: #a8c99e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition);
}
.ftr-cta-links a:hover { color: var(--clr-white); text-decoration: underline; text-underline-offset: 3px; }
.ftr-cta-links a i { font-size: 1rem; color: #6dab63; }
.ftr-bottom i { color: #6aaa60; margin: 0 0.15em; }

/* ── QR CALL MODAL ──────────────────────────────────────────── */
#qr-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
#qr-modal.open { display: flex; }
#qr-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 2em 2.5em 2em;
    max-width: 340px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    border: 10px solid transparent;
}
#qr-modal-box.modal-call { border-color: #4caf50; }
#qr-modal-box.modal-sms  { border-color: #a23eff; }
#qr-modal-close {
    position: absolute;
    top: 0.75em;
    right: 0.9em;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}
#qr-modal-close:hover { color: #000; }
#qr-modal-header {
    display: flex;
    align-items: center;
    gap: 0.75em;
    margin-bottom: 0.75em;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
}
#qr-modal-header span { line-height: 1.1; }
#qr-modal-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    padding: 3px;
}
#qr-modal-phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}
#qr-modal-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 0.75em 0;
}
#qr-modal-label {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-bottom: 0.75em;
}
#qr-modal-qr {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    display: block;
}

/* ── SECTION UTILITIES ──────────────────────────────────────── */
.section-alt  { background: var(--clr-off-white); }
.section-pad  { padding: 4rem 5%; }

/* ── MEDIA QUERIES ──────────────────────────────────────────── */
/* ── Shrink desktop nav + footer between 900–1100px ─────────── */
@media (max-width: 600px) and (hover: hover) and (pointer: fine) {
    .top-bar-tagline { display: none; }
    .tb-txt          { display: none; }
    .top-bar-divider { display: none; }
}
@media (max-width: 1100px) {
    #site-header    { height: 80px; }
    #hdr-logo img   { height: 70px; }
}
@media (max-width: 1100px) and (min-width: 901px) {
    #hdr-nav { gap: 0; }
    #hdr-nav a {
        font-size: 0.95rem;
        padding: 0.4em 0.35em;
        letter-spacing: 0.01em;
    }
    #hdr-cta .btn {
        font-size: 0.9rem;
        padding: 0.55em 1em;
    }
    .ftr-col h4   { font-size: 0.78rem; }
    .ftr-col p,
    .ftr-hours-row { font-size: 0.78rem; }
    .ftr-col a    { font-size: 0.78rem; }
    .ftr-main     { gap: 1.5em; padding: 2.5em 3%; }
}

/* ── Switch to mobile nav + stack footer under 900px ────────── */
@media (max-width: 900px) {
    #hdr-nav, #hdr-cta { display: none; }
    #mobile-nav-toggle  { display: block; }
    #hdr-logo img       { height: 70px; }
    .ftr-main           { grid-template-columns: 1fr 1fr; column-gap: 2em; }
    .ftr-social-links   { display: none !important; }
    .ftr-col:nth-child(1) { grid-column: 1; }
    .ftr-col:nth-child(2) { grid-column: 2; }
    .ftr-col:nth-child(3) { grid-column: 1 / -1; margin-top: 2em; }
}

/* ── Touch devices: icon-only top bar + wider mobile nav ────── */
@media (hover: none) and (pointer: coarse) {
    #mobile-nav { width: 75%; }
    .tb-txt              { display: none; }
    .top-bar-tagline     { display: none; }
    .top-bar-divider     { display: none; }
    #top-bar .tb-sms-icon { display: inline-flex; align-items: center; }
    #top-bar             { flex-direction: row; height: auto; padding: 0.6em 2.5%; }
    .top-bar-left,
    .top-bar-right       { justify-content: flex-start; flex-wrap: nowrap; }
    #top-bar .fa-solid,
    #top-bar .fa-brands  { font-size: 2.46rem; }
    #top-bar a           { padding: 0.4em 0; }
    .top-bar-right       { gap: 1.75em; }
}

@media (max-width: 600px) {
    .tagline-bar          { font-size: 1.1rem; }
    .ftr-main             { grid-template-columns: 1fr; column-gap: 0; row-gap: 2em; }
    .ftr-col:nth-child(1),
    .ftr-col:nth-child(2),
    .ftr-col:nth-child(3) { grid-column: 1; }
    .ftr-bottom { flex-direction: column; text-align: center; }
    .mobile-nav-btns { flex-direction: column; }
}

/* ── PAYMENT BUTTON — DISABLED STATE ───────────────────────── */
.hdr-pay-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}

/* ── COOKIE CONSENT BANNER ──────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    background:
        radial-gradient(ellipse at 10% 50%, rgba(90,90,90,0.35) 0%, transparent 55%),
        linear-gradient(160deg, #0d0d0d 0%, #1e1e1e 50%, #141414 100%);
    border-top: 3px solid #D74100;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
}
#cookie-banner.visible {
    transform: translateY(0);
}
#cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
#cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 220px;
}
#cookie-banner-text .fa-cookie-bite {
    font-size: 1.4rem;
    color: #D74100;
    flex-shrink: 0;
}
#cookie-banner-text span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
}
#cookie-banner-btns {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}
#cookie-decline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    background: transparent;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 0.45rem 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}
#cookie-decline:hover {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.45);
}
#cookie-accept {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    background: #D74100;
    color: #fff;
    border: 1px solid #D74100;
    border-radius: 4px;
    padding: 0.45rem 1.4rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(215,65,0,0.4);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
#cookie-accept:hover {
    background: #b33600;
    box-shadow: 0 4px 12px rgba(215,65,0,0.5);
}
@media (max-width: 560px) {
    #cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    #cookie-banner-btns  { width: 100%; justify-content: flex-end; }
}
