.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 99999;
}

.cookie-content {
    max-width: 1200px;
    margin: auto;

    background: #fff;
    border-radius: 18px;

    padding: 22px 25px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.cookie-text p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: .2s;
}

.cookie-refuse {
    background: #f4f4f4;
    color: #333;
}

.cookie-refuse:hover {
    background: #e8e8e8;
}

.cookie-accept {
    background: #c7a15a;
    color: #fff;
}

.cookie-accept:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    border: 1px solid transparent;
    cursor: pointer;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: all .2s ease;
}

.cookie-refuse {
    background: transparent;
    color: #6f6250;
    border-color: rgba(111, 98, 80, .25);
}

.cookie-refuse:hover {
    background: rgba(111, 98, 80, .08);
    border-color: rgba(111, 98, 80, .4);
}

.cookie-accept {
    background: linear-gradient(135deg, #c7a15a, #a98235);
    color: #fff;
    box-shadow: 0 8px 20px rgba(199, 161, 90, .35);
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(199, 161, 90, .45);
}