/* تحسين عرض تفاصيل المنتج على شاشات الجوال */
@media (max-width: 768px) {
    /* Ensure product image and details are stacked vertically on mobile */
    .row > .col-md-6 {
        width: 100% !important;
        flex: 0 0 auto !important;
        max-width: 100% !important;
    }

    /* Ensure related products display in 2 columns */
    .related-products .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    .related-products .col-md-4,
    .related-products .col-sm-6,
    .related-products .col-6 {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .breadcrumb {
        padding: 10px !important;
        font-size: 0.9rem;
        margin-bottom: 15px !important;
    }

    .product-detail-img {
        margin-bottom: 20px;
    }

    .product-detail-info {
        padding: 15px !important;
    }
}
