/* Start custom CSS */.product-single-content {
    width: 1200px; /* حالت پیش‌فرض در دسکتاپ */
    margin: 0 auto; /* وسط‌چین در صفحه‌های بزرگ */
}

@media (max-width: 768px) {
    .product-single-content {
        width: 100%;      /* فول عرض در موبایل و تبلت */
        padding: 0 10px;  /* کمی فاصله از لبه‌ها برای خوانایی */
        box-sizing: border-box;
    }
}
.product-info-box{
    display: none
}

.exam-page {
    line-height: 1.95;
    color: #2e2e2e;
    direction: rtl;
    text-align: justify;
    font-size: 1rem;
    margin: auto;
    padding: 35px;
    background: linear-gradient(180deg, #ffffff, #fafdfb);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* عنوان اصلی */
.exam-page h1 {
    color: #fff;
    background: linear-gradient(135deg, #339966, #2a7d56);
    padding: 18px 24px;
    border-radius: 10px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* تیترهای بخش */
.exam-page h2 {
    color: #ff9900;
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 3px solid #ff9900;
    font-size: 1.5rem;
    font-weight: bold;
}

/* تیترهای درجه 3 */
.exam-page h3 {
    color: #339966;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

/* متون */
.exam-page p {
    margin: 18px 0;
    font-size: 1.05rem;
    line-height: 2;
}

/* لیست‌ها */
.exam-page ul {
    padding-right: 25px;
    list-style: none;
}

.exam-page ul li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 12px;
}

.exam-page ul li::before {
    content: "✔";
    position: absolute;
    right: 0;
    color: #339966;
    font-size: 1.1rem;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.exam-page ul li:hover::before {
    transform: scale(1.3);
}

/* باکس امتحان */
.exam-box {
    background: linear-gradient(135deg, #f8fefb, #f4fbf7);
    border: 1px solid #d4eadd;
    border-right: 6px solid #339966;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exam-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* لینک‌ها */
.exam-page a {
    color: #ff9900;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.exam-page a:hover {
    text-decoration: underline;
    color: #cc7a00;
}

/* جدول */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 20px;
    direction: rtl;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.compare-table th {
    background: linear-gradient(45deg, #339966, #2a7a55);
    color: #fff;
    font-weight: bold;
    padding: 14px 10px;
    letter-spacing: 0.5px;
}

.compare-table td {
    padding: 12px 10px;
    font-size: 1.05rem;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.compare-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.compare-table tr:hover td {
    background-color: #fff6e8;
}

.compare-table td:first-child {
    color: #339966;
    font-weight: 600;
}

.compare-table td:last-child {
    color: #ff9900;
    font-weight: 600;
}

/* باکس الهام‌بخش */
.section-box.inspire-box {
    background: linear-gradient(135deg, #f9fff9, #f3fff5);
    border-left: 6px solid #27baa3;
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 10px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.section-box.inspire-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.section-box.inspire-box .section-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.9;
}

.section-box.inspire-box strong {
    color: #27baa3;
    font-weight: bold;
}/* End custom CSS */