﻿.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background-color: #f4f1ed;
    border: 2px solid #b29b88;
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: 0 10px 25px rgba(58, 52, 47, 0.15);
    z-index: 9999;
    color: #3a342f;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.cookie-text p {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-decline {
    border: none;
    padding: 12px 20px;
    border-radius: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

/* AKZEPTIEREN (wie deine Buttons im Design) */
.btn-accept {
    background-color: #b29b88;
    color: white;
}

    .btn-accept:hover {
        background-color: #9e8877;
    }

/* ABLEHNEN (neutral) */
.btn-decline {
    background-color: transparent;
    border: 1px solid #b29b88;
    color: #3a342f;
}

    .btn-decline:hover {
        background-color: #b29b88;
        color: white;
    }

/* MOBILE */
@media (max-width: 768px) {

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-decline {
        width: 100%;
        text-align: center;
    }
}
