/* Calculator-specific custom styles (Tailwind ile yapılamayan özel elemanlar) */

/* BMI Scale */
.bmi-scale-wrap { padding: 20px 24px; background: #f1f5f9; }
[data-theme="dark"] .bmi-scale-wrap { background: #1e293b; }

.scale-bar {
    height: 12px;
    border-radius: 10px;
    background: linear-gradient(to right, #93c5fd 0%, #86efac 25%, #fde68a 60%, #ef4444 100%);
    position: relative;
    margin-bottom: 10px;
}
.scale-needle {
    position: absolute;
    top: -6px;
    width: 4px;
    height: 24px;
    background: #0f172a;
    border: 2px solid #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: left 1s ease;
}
[data-theme="dark"] .scale-needle { background: #f1f5f9; }
.scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

/* Result animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.result-animate { animation: slideDown 0.4s ease; }

/* Cat badge */
.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    background: rgba(255,255,255,0.22);
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Article styles */
.article-section h3 { margin-top: 28px; margin-bottom: 10px; }
.article-section p  { margin-bottom: 14px; }
.article-section ul { margin: 10px 0 14px 20px; }
.article-section li { margin-bottom: 8px; }
.article-highlight {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #1e40af;
}
[data-theme="dark"] .article-highlight {
    background: rgba(59,130,246,0.1);
    color: #93c5fd;
}

/* FAQ accordion */
details.faq-item summary::-webkit-details-marker { display: none; }
details[open] > summary .faq-plus::after { content: '−'; }
.faq-plus::after { content: '+'; font-size: 22px; color: #2563eb; font-weight: 400; }
