/* ── Summary bar ── */
.yoga-summary-bar {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 24px;
}
.yoga-stat-card {
        flex: 1;
        min-width: 90px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        padding: 14px 16px;
        text-align: center;
}
.yoga-stat-num {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f5c518;
        line-height: 1;
}
.yoga-stat-label {
        font-size: 0.75rem;
        color: #dee1eb;
        margin-top: 4px;
}

/* ── Filter tabs ── */
.yoga-filter-bar {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
}
.yoga-filter-btn {
        background: rgba(255,255,255,0.05);
        color: #a0a8c0;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 5px 16px;
        font-size: 0.82rem;
        cursor: pointer;
        transition: all 0.15s;
}
.yoga-filter-btn.active,
.yoga-filter-btn:hover {
        background: rgba(245,197,24,0.15);
        color: #f5c518;
        border-color: rgba(245,197,24,0.4);
}

/* ── Result cards ── */
.yoga-result-card {
        background: rgba(255,255,255,0.03);
        border-radius: 0px;
        padding: 16px 18px;
        margin-bottom: 10px;
        border-left: 4px solid #2e2e52;
        cursor: pointer;
        transition: background 0.15s, border-color 0.15s;
}
.yoga-result-card.present  { border-left-color: #f5c518; }
.yoga-result-card.absent   { border-left-color: #333; opacity: 0.5; }
.yoga-result-card.special  { border-left-color: #e74c3c; }
.yoga-result-card:hover    { background: rgba(255,255,255,0.06); }
.yoga-result-card:hover.absent { opacity: 0.7; }

.yoga-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
}
.yoga-card-name   { color: #e8e8f0; font-weight: 600; font-size: 0.97rem; }
.yoga-card-cat    { font-size: 0.73rem; color: #777; margin-top: 2px; }
.yoga-card-reason { font-size: 0.82rem; color: #888; margin-top: 6px; line-height: 1.5; }

.strength-pill {
        display: inline-block;
        padding: 3px 11px;
        border-radius: 12px;
        font-size: 0.73rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        white-space: nowrap;
}
.pill-strong   { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.pill-moderate { background: rgba(245,197,24,0.12); color: #f5c518; border: 1px solid rgba(245,197,24,0.3); }
.pill-weak     { background: rgba(251,146,60,0.12); color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }
.pill-absent   { background: rgba(148,163,184,0.08);color: #d6e0ee; border: 1px solid rgba(148,163,184,0.12); }
.pill-dosha    { background: rgba(231,76,60,0.12);  color: #e74c3c; border: 1px solid rgba(231,76,60,0.25); }

/* Planet chips */
.planet-chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.planet-chip {
        background: rgba(245,197,24,0.08);
        color: #f5c518;
        border: 1px solid rgba(245,197,24,0.2);
        border-radius: 5px;
        padding: 2px 9px;
        font-size: 0.75rem;
}
.house-chip {
        background: rgba(99,102,241,0.08);
        color: #a5b4fc;
        border: 1px solid rgba(99,102,241,0.2);
        border-radius: 5px;
        padding: 2px 9px;
        font-size: 0.75rem;
}

/* ── Expanded detail panel ── */
.yoga-detail-panel {
        display: none;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255,255,255,0.06);
}
.yoga-detail-section { margin-bottom: 12px; }
.yoga-detail-section h4 {
        color: #f5c518;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}
.yoga-detail-section p,
.yoga-detail-section li {
        color: #a0a8c0;
        font-size: 0.87rem;
        line-height: 1.65;
        margin-bottom: 4px;
}
.yoga-detail-section strong { color: #c8d0e0; }

/* Special card for dedicated-page doshas */
.yoga-deep-link-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(245,197,24,0.05);
        border: 1px solid rgba(245,197,24,0.15);
        border-radius: 8px;
        padding: 12px 16px;
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 8px;
}
.yoga-deep-link-box span { color: #a0a8c0; font-size: 0.85rem; }
.yoga-deep-link-box a {
        color: #f5c518;
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
}
.yoga-deep-link-box a:hover { color: #fff; text-decoration: underline; }

/* ── Strength bar ── */
.strength-bar-row { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.strength-bar-label { color: #a0a8c0; font-size: 0.78rem; min-width: 68px; }
.strength-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.strength-bar-fill  { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.fill-strong   { background: #4ade80; width: 95%; }
.fill-moderate { background: #f5c518; width: 60%; }
.fill-weak     { background: #fb923c; width: 25%; }

/* ── Also-check strip ── */
.also-check-strip {
        margin-top: 28px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
}
.also-check-title {
        font-size: 0.78rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin-bottom: 12px;
}
.also-check-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
}
.also-check-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        padding: 14px 16px;
        text-decoration: none;
        transition: background 0.15s, border-color 0.15s;
}
.also-check-card:hover {
        background: rgba(255,255,255,0.06);
        border-color: rgba(245,197,24,0.3);
        text-decoration: none;
}
.also-check-icon { font-size: 1.1rem; margin-bottom: 6px; }
.also-check-name { color: #e8e8f0; font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.also-check-sub  { color: #e7e1e1; font-size: 0.75rem; }

/* ── Section title ── */
.yoga-section-title {
        font-size: 0.72rem;
        font-weight: 600;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 14px 0 8px;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 10px;
}
.yoga-section-title:first-child { border-top: none; padding-top: 0; }
