/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
}

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

.cookie-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: var(--text-dark);
}

.cookie-content > p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
}

.cookie-option {
    display: flex;
    flex-direction: column;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 25px;
    margin-top: 5px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-buttons .btn-secondary {
    background-color: #e0e0e0;
    color: var(--text-dark);
}

.cookie-buttons .btn-secondary:hover {
    background-color: #d0d0d0;
}

.cookie-footer {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-footer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-wrap: wrap;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cookie-content {
        padding: 20px 15px;
    }
    
    .cookie-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-options {
        padding: 15px;
    }
}
