/**
 * Cookie Banner Styles
 * Vision Hall Theme
 */

/* Body overlay when cookie banner is visible */
body.has-cookie-banner {
    position: relative;
}

body.has-cookie-banner::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 47, 66, 0.54);
    z-index: 9998; /* Just below the cookie banner */
    pointer-events: none; /* Allow clicks to pass through */
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F2EEE6;
    color: #fff;
    padding: 20px 34px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.cookie-banner-inner {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-banner .btn {
    white-space: nowrap;
    text-align: center;
    width: 100%;
    background-color: #111;
    color: #fff;
    border: 0;
}


@media (min-width: 690px) {
    .cookie-banner-inner {
        flex-direction: row;
        gap: 20px;
    }
    
    .cookie-banner .btn {
        min-width: 179px;
        width: auto;
    }
} 
@media (min-width: 1024px) {

    .cookie-banner p {
        font-size: 15px;
    }
} 



