.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #d72213, #FF4757, #FF6348, #FFA502, #fee19e);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px 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: 6px;
    cursor: pointer;
    font-weight: 600;
    min-width: 160px;
    border: 2px solid white;
    font-size: 16px;
    transition: none !important;
}

.cookie-btn-all {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookie-btn-necessary {
    background: rgba(255, 255, 255, 0.95);
    color: #d72213;
}

.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: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: white !important;
}

.cookie-btn-necessary:hover,
.cookie-btn-necessary:focus,
.cookie-btn-necessary:active {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #d72213 !important;
    border-color: white !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;
    }
}