#cookieConsent,
#cookieCustomise {
    display: none;
}

/* Base */
.cookie-consent {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}
body.cookie-lock {
    overflow: hidden;
}

/* Mobile overlay */
@media (max-width: 767px) {
    .cookie-consent {
                background: rgba(0, 0, 0, 0.45) !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cookie-box {
        width: 90%;
        max-width: 420px;
        background: #fff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
    }
}

/* Desktop bottom banner */
@media (min-width: 768px) {
    .cookie-consent {
        background: rgba(0, 0, 0, 0.25); /* soft dim */
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        pointer-events: auto;
    }

    .cookie-box {
        width: 100%;
        max-width: 1200px;
        background: #fff;
        padding: 25px 40px;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -15px 45px rgba(0, 0, 0, 0.25);
        text-align: center;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }
}


/* Text */
.cookie-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cookie-box p {
    font-size: 14px;
    color: #555;
}

.cookie-box a {
    color: #c39540;
    text-decoration: underline;
}

/* Buttons */
.cookie-actions {
    margin-top: 20px;
}

.cookie-actions .btn {
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    margin: 5px;
    min-width: 240px;
}

.btn.primary {
    background: #c39540;
    color: #fff;
    border: none;
}

.btn.secondary {
    background: #c39540;
    color: #fff;
    border: none;
}

.btn.outline {
    background: #fff;
    border: 2px solid #c39540;
    color: #c39540;
}


