/* ====
   HALAL PAGE WRAPPER
   ==== */

.halal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--page-bg, #f0f2f0);
    color: var(--dark-gray);
    font-family: 'Inter', sans-serif;
    /* Блокируем горизонтальное переполнение (напр. от скролла чипов) */
    overflow-x: hidden;
}

.halal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Utility */
.arabic {
    font-family: var(--font-arabic);
    direction: rtl;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}