/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
    border-top: 3px solid #6366F1;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-icon {
    color: #6366F1;
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.cookie-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.cookie-description a {
    color: #6366F1;
    text-decoration: underline;
    font-weight: 500;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn-primary {
    background: linear-gradient(to right, #6366F1, #8B5CF6);
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cookie-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

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

.cookie-btn-text {
    background: transparent;
    color: #6b7280;
}

.cookie-btn-text:hover {
    color: #374151;
    background: #f9fafb;
}

/* Settings Panel */
.cookie-settings-panel {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-settings-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.cookie-option {
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 12px;
}

.cookie-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

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

.cookie-checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-checkbox-label strong {
    color: #1f2937;
    font-size: 15px;
}

.cookie-checkbox-desc {
    color: #6b7280;
    font-size: 13px;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .cookie-buttons {
        flex-shrink: 0;
    }
    
    .cookie-banner {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-title {
        font-size: 16px;
    }
    
    .cookie-description {
        font-size: 13px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 10px 20px;
    }
    
    .cookie-icon {
        font-size: 24px;
    }
}
