/* ========================================
   IFTA PAGE WRAPPER
   ======================================== */
.ifta-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--page-bg, #f0f2f0);
    color: #1f2937;
}

/* ============================================================
   POPULAR FATWAS + STATS BAR  (additions v5)
   ============================================================ */

/* Stats bar */
.ifta-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 24px;
    margin: 0 auto 24px;
    max-width: 480px;
    background: var(--emerald-50, #ecfdf5);
    border: 1px solid color-mix(in srgb, var(--emerald, #059669) 30%, transparent);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--emerald-dark, #065f46);
}
.ifta-stats-bar b { font-weight: 700; }
.ifta-stats-dot { color: var(--emerald-light, #6ee7b7); }

/* Popular section */
.ifta-popular-section {
    padding: 32px 24px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.ifta-popular-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px;
}

.popular-fatwas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.popular-fatwa-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100px;
}
.popular-fatwa-card:hover {
    border-color: var(--emerald-light, #6ee7b7);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--emerald, #059669) 12%, transparent);
    transform: translateY(-2px);
}
.popular-fatwa-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--emerald, #059669);
    background: var(--emerald-50, #ecfdf5);
    border-radius: 4px;
    padding: 2px 8px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.popular-fatwa-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.popular-fatwa-arrow {
    font-size: 12px;
    color: #059669;
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================================
   EMPTY STATE  (когда в подтеме нет фетв)
   ============================================================ */
.modal-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px 32px;
    gap: 12px;
}
.modal-empty-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 4px;
}
.modal-empty-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}
.modal-empty-sub {
    font-size: 13px;
    color: #6b7280;
    max-width: 280px;
    line-height: 1.5;
}
.modal-empty-cta {
    margin-top: 8px;
    padding: 10px 22px;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
}
.modal-empty-cta:hover {
    background: var(--emerald-dark, #047857);
    transform: translateY(-1px);
}