.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #111;
    border-top: 3px solid #f9671a;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 40px rgba(0,0,0,0.5);
}

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

.cookie-banner-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-banner-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 1000px;
    padding: 11px 28px;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(29.81deg, #ED1C24 1.816%, #FCEC21 106.59%);
    color: #fff;
}

.cookie-btn-accept:hover {
    opacity: 0.85;
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px;
        gap: 16px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }
}
