.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1A1510;
    color: #F6F4F1;
    z-index: 9000;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
    transform: translateY(100%);
    transition: transform .4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    width: min(1200px, 100% - 2.5rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }

.cookie-text strong {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .35rem;
    letter-spacing: .04em;
}

.cookie-text p {
    font-size: .78rem;
    color: rgba(246,244,241,.6);
    line-height: 1.6;
}

.cookie-text a {
    color: #D4722A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    padding: .6em 1.4em;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: .2s;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #D4722A;
    color: #fff;
}
.cookie-btn-accept:hover { background: #b85c18; }

.cookie-btn-info {
    background: transparent;
    color: rgba(246,244,241,.6);
    border: 1px solid rgba(246,244,241,.2);
}
.cookie-btn-info:hover { color: #fff; border-color: rgba(246,244,241,.5); }

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; justify-content: center; }
}
