/* Günlük kalori / TDEE — Tailwind ile yapılamayan özel stiller */

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

.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;
}

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

.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; }

/* Kadın seçildiğinde hesaplama kartı ve iç yüzeyler — pembe ton */
#tdee-calc-root.tdee-female-surface {
    background-color: #fdf2f8;
    border-color: #fbcfe8;
}
[data-theme="dark"] #tdee-calc-root.tdee-female-surface {
    background-color: rgba(157, 23, 77, 0.2);
    border-color: rgba(244, 114, 182, 0.35);
}

#tdee-calc-root.tdee-female-surface .tdee-inner-panel {
    background-color: #fce7f3;
}
[data-theme="dark"] #tdee-calc-root.tdee-female-surface .tdee-inner-panel {
    background-color: rgba(131, 24, 67, 0.35);
}

#tdee-calc-root.tdee-female-surface .tdee-input-surface {
    background-color: #fdf2f8;
    border-color: #f9a8d4;
}
[data-theme="dark"] #tdee-calc-root.tdee-female-surface .tdee-input-surface {
    background-color: rgba(157, 23, 77, 0.25);
    border-color: rgba(244, 114, 182, 0.4);
}

#tdee-calc-root.tdee-female-surface .tdee-macro-head {
    background-color: #fce7f3 !important;
}
[data-theme="dark"] #tdee-calc-root.tdee-female-surface .tdee-macro-head {
    background-color: rgba(131, 24, 67, 0.35) !important;
}
