/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-text {
    margin-bottom: 1rem;
}

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

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #2563eb;
    color: white;
}

.cookie-btn-primary:hover {
    background: #1d4ed8;
}

.cookie-btn-secondary {
    background: #6b7280;
    color: white;
}

.cookie-btn-secondary:hover {
    background: #4b5563;
}

.cookie-btn-tertiary {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #6b7280;
}

.cookie-btn-tertiary:hover {
    background: #374151;
    color: white;
    border-color: #9ca3af;
}

.cookie-link {
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.cookie-link:hover {
    color: #dbeafe;
    text-decoration: underline;
}

/* Cookie Customization Panel */
.cookie-customization {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4b5563;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    font-size: 0.8rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.4;
}

.cookie-custom-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-buttons {
        justify-content: flex-start;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-buttons {
        justify-content: stretch;
    }
    
    .cookie-custom-buttons .cookie-btn {
        flex: 1;
    }
}