/* Cookie Consent Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: 750px;
    max-width: 95%;
    background: #88735e;
    border-radius: 8px;
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.cookie-banner.active {
    display: flex;
    animation: cookieSlideUp 0.6s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__content {
    flex: 1;
    margin-right: 20px;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.cookie-banner__text a {
    color: #ce9b56;
    text-decoration: underline;
}

.cookie-banner__text-small {
    font-size: 11px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.cookie-banner__actions {
    flex-shrink: 0;
}

.cookie-banner__btn {
    background-color: #ce9b56;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cookie-banner__btn:hover {
    background-color: #b88645;
}

/* Callback Button override to move higher ONLY when banner is visible */
.cookie-banner-active .callbackkiller.cbk-phone,
.cookie-banner-active #envybox-cbk-button-container, 
.cookie-banner-active #envybox-cbk-button, 
.cookie-banner-active .envybox-cbk-button,
.cookie-banner-active .envy-cbk-button-wrapper,
.cookie-banner-active div[id^="envybox"] {
    transform: translateY(-80px) !important;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 15px; 
        right: 15px; 
        left: 15px;
        width: auto;
        max-width: none;
        border-radius: 12px;
        padding: 20px 15px;
    }
    .cookie-banner__content { margin-right: 0; margin-bottom: 20px; text-align: center; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { width: 100%; }
}
