/* Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#cookieBanner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text a {
    color: #c9302c;
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #c9302c;
    color: white;
}

.cookie-btn-accept:hover {
    background: #a02622;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn-reject:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.cookie-btn-manage {
    background: transparent;
    color: #c9302c;
    padding: 10px 16px;
    text-decoration: none;
}

.cookie-btn-manage:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-banner-text h3 {
        font-size: 16px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .cookie-btn-manage {
        order: 3;
    }
}

@media (max-width: 480px) {
    #cookieBanner {
        padding: 15px 0;
    }
    
    .cookie-banner-content {
        padding: 0 15px;
    }
    
    .cookie-banner-text h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .cookie-banner-text p {
        font-size: 12px;
    }
    
    .cookie-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}