/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 15px 25px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    animation: slideUp 0.5s forwards;
}

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: var(--primary-light);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie-accept, .btn-cookie-customize {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-customize {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

/* Cookie Preferences Modal */
.cookie-preferences {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.preferences-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    padding: 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.preferences-header h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin: 0;
}

.preferences-options {
    margin-bottom: 25px;
}

.preference-option {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.option-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-color);
}

.preferences-footer {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
