.cookie-consent-overlay {
    display: none;
}

.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    max-width: 100%;
    width: 100%;
    background: white;
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease-out;
}

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

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

.cookie-consent-content h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.cookie-consent-content p {
    color: #475569;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.cookie-consent-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent-content a:hover {
    text-decoration: underline;
}

.cookie-consent-checkbox {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
}

.cookie-consent-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #334155;
    line-height: 1.4;
}

.cookie-consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

.cookie-consent-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.cookie-btn-accept,
.cookie-btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cookie-btn-accept:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.cookie-btn-accept:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cookie-btn-decline {
    background: #f1f5f9;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.cookie-btn-decline:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

@media (max-width: 640px) {
    .cookie-consent-modal {
        width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .cookie-consent-content {
        padding: 14px 16px;
    }
    
    .cookie-consent-content h3 {
        font-size: 1rem;
    }
    
    .cookie-consent-buttons {
        grid-template-columns: 1fr;
    }
}
