/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 16px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    transform: translateY(100%);
    animation: cookieSlideUp 0.5s forwards;
}

@keyframes cookieSlideUp {
    to { transform: translateY(0); }
}

.cookie-consent-banner.hide {
    animation: cookieSlideDown 0.5s forwards;
}

@keyframes cookieSlideDown {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}

.cookie-consent-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent-banner__text {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}
.cookie-consent-banner__link {
    color: #FFCA00;
    text-decoration: underline;
}
.cookie-consent-banner__link:hover {
    color: #FFF;
}
.cookie-consent-banner__buttons {
    display: flex;
    gap: 10px;
}
.cookie-consent-banner__btn {
    padding: 10px 20px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}
.cookie-consent-banner__btn:hover {
    opacity: 0.85;
}
.cookie-consent-banner__btn--accept {
    background: #FFCA00;
    border-color: #FFCA00;
    color: #000000;
}
.cookie-consent-banner__btn--decline {
    background: #f0f0f0;
    border-color: #cccccc;
    color: #666666;
}
.cookie-consent-banner__btn--decline:hover {
    background: #e4e4e4;
    color: #444444;
}

@media (max-width: 768px) {
    .cookie-consent-banner__content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-banner__buttons {
        width: 100%;
        justify-content: center;
    }
}