/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #00d4aa;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #1e1b4b;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.cookie-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-policy-link {
    color: #00d4aa;
    text-decoration: none;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #1e1b4b;
    color: white;
}

.cookie-btn-primary:hover {
    background: #312e81;
}

.cookie-btn-secondary {
    background: #00d4aa;
    color: white;
}

.cookie-btn-secondary:hover {
    background: #00b894;
}

.cookie-btn-tertiary {
    background: #e2e8f0;
    color: #64748b;
}

.cookie-btn-tertiary:hover {
    background: #cbd5e1;
}

.cookie-details {
    display: none;
    padding: 0 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #e2e8f0;
}

.cookie-details.show {
    display: block;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #1e1b4b;
    margin-bottom: 0.5rem;
}

.cookie-label input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #00d4aa;
}

.cookie-label input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.cookie-category p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 0 1.5rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-details {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        padding: 0.875rem 1rem;
    }
    
    .cookie-details {
        padding: 0 1rem 1rem 1rem;
    }
}