/* ======== تصميم جسم الصفحة ======== */
.product-page-body { background: var(--bg-color); }

/* ======== القسم العلوي ======== */
.product-details-hero {
    padding: 40px 0;
}
.product-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* إعطاء مساحة أكبر للنص */
    gap: 40px;
    align-items: flex-start;
}

/* ======== معرض الصور ======== */
.product-images { position: sticky; top: 100px; }
.main-image { border-radius: 15px; overflow: hidden; margin-bottom: 15px; }
.main-image img { width: 100%; display: block; }
.thumbnail-images { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumbnail-btn { padding: 0; border: 2px solid var(--border-color); border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.3s; background: none; }
.thumbnail-btn img { width: 100%; display: block; }
.thumbnail-btn.active, .thumbnail-btn:hover { border-color: var(--primary-color); transform: scale(1.05); }

/* ======== معلومات المنتج ======== */
.product-info h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 15px; line-height: 1.3; }
.product-price { margin-bottom: 20px; }
.product-price span { font-size: 1.1rem; color: var(--text-color-muted); }
.product-price strong { font-size: 2.2rem; color: var(--primary-color); font-weight: 900; margin-right: 10px; }
.product-tags { margin-bottom: 25px; }
.tag { background-color: var(--secondary-color); color: var(--text-color); padding: 6px 12px; border-radius: 5px; font-size: 0.9rem; margin-left: 8px; }
.product-description, .product-features { margin-bottom: 25px; }
.product-description h2, .product-features h2 { font-size: 1.4rem; margin-bottom: 10px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.product-description p { line-height: 1.8; color: var(--text-color-muted); }
.product-features ul { list-style: none; padding: 0; }
.product-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.product-features .fa-check-circle { color: var(--primary-color); }
.btn-buy { width: 100%; padding: 18px; font-size: 1.2rem; font-weight: 700; }

/* ======== قسم المنتجات ذات الصلة ======== */
.related-products { padding: 60px 0; border-top: 1px solid #222; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; }


/* ======== التجاوب مع الجوال (نسخة أقوى ومُصححة) ======== */
@media (max-width: 992px) {
    main .product-container {
        /* تحويل التخطيط إلى عمود واحد بشكل صريح */
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .product-images {
        position: static !important; /* إلغاء التثبيت */
        top: auto !important;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .related-products .accounts-grid {
        /* التأكد من أن المنتجات ذات الصلة تظهر في عمودين */
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .product-details-hero {
        padding: 20px 0;
    }

    .product-info h1 {
        font-size: 1.8rem;
    }

    .product-price strong {
        font-size: 1.8rem;
    }

    /* جعل المنتجات ذات الصلة تظهر في عمود واحد */
    .related-products .accounts-grid {
        grid-template-columns: 1fr;
    }




}
