.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EDE7D6;
    border-top: 2px solid #242A32;
    color: #242A32;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner-content {
    flex: 1;
    margin-right: 20px;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    min-width: 160px;
    border: 1.6px solid #242A32;
    font-size: 16px;
    transition: none !important;
}

.cookie-btn-all {
    background: transparent;
    color: #242A32;
}

.cookie-btn-necessary {
    background: #B5233B;
    border-color: #B5233B;
    color: #F1EBDB;
}

.cookie-btn:hover,
.cookie-btn:focus,
.cookie-btn:active {
    transform: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.cookie-btn-all:hover,
.cookie-btn-all:focus,
.cookie-btn-all:active {
    background: #242A32 !important;
    color: #EDE7D6 !important;
    border-color: #242A32 !important;
}

.cookie-btn-necessary:hover,
.cookie-btn-necessary:focus,
.cookie-btn-necessary:active {
    background: #8E1B2F !important;
    color: #F1EBDB !important;
    border-color: #8E1B2F !important;
}

@media (max-width: 768px) {
    .cookie-consent-bar {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cookie-banner-content p {
        font-size: 14px;
    }

    .cookie-btn {
        padding: 10px 20px;
        min-width: 140px;
        font-size: 14px;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent-bar {
        padding: 12px;
    }

    .cookie-banner-content p {
        font-size: 13px;
        line-height: 1.4;
    }

    .cookie-btn {
        padding: 8px 16px;
        min-width: 120px;
        font-size: 13px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
}