/* Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ba160c;
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 2px solid white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

#cookieBanner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    min-width: 250px;
    font-weight: 500;
    text-align: left
}

.cookie-text a {
    color: #04556a;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    background-color: white;
    color: #ba160c;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.cookie-btn.decline {
    background-color: transparent;
    border: 2px solid #ccc;
    color: #ccc;
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookieBanner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cookie-text {
        min-width: auto;
        font-size: 15px;
    }
    
    .cookie-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}