/* Enhanced Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.97);
    color: white;
    z-index: 999;
    padding: 18px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    font-family: "Montserrat", sans-serif;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-message {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-accept, .cookie-decline {
    padding: 10px 24px;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
    outline: none;
}

.cookie-accept {
    background-color: #be7914;
    color: white;
    border: none;
}

.cookie-accept:hover, .cookie-accept:focus {
    background-color: #a66a11;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-decline:hover, .cookie-decline:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Responsive styles */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cookie-message {
        flex: 1;
        padding-right: 20px;
    }
    
    .cookie-buttons {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-message {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-accept, .cookie-decline {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 14px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-accept, .cookie-decline {
        width: 100%;
    }
}