/* ==================== تبلت ==================== */
@media (max-width: 992px) {
    .talkyland-container {
        padding: 0 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== موبایل ==================== */
@media (max-width: 768px) {
    
    /* هدر */
    .site-header .main-menu {
        display: none; /* منو در موبایل با جاوااسکریپت کنترل می‌شود */
    }

    /* کارت استاد */
    .talkyland-teacher-card .card-image {
        height: 180px;
    }

    /* داشبورد */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }

    /* فرم‌ها و دکمه‌ها */
    .button {
        width: 100%;
        justify-content: center;
    }

    .talkyland-booking-summary,
    .talkyland-booking-confirmation,
    .talkyland-payment-result-page .result-box {
        margin: 30px 15px;
        padding: 30px 20px;
    }
}

/* جلوگیری از اسکرول افقی */
body, html {
    overflow-x: hidden;
}