    .showproduct {
        display: flex;
        gap: 50px;
        padding: 40px 5px;
        font-family: Outfit;
    }

    /* الجزء الخاص بالصور */
    .product-display {
        display: flex;
        gap: 15px;
        flex: 1;
    }

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 500px;
    overflow-y: auto;
}
        .product-thumbnails img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            cursor: pointer;
            border: 1px solid #ddd;
        }

.main-img {
    width: 500px; /* حجم ثابت في الديسكتوب */
    height: 500px;
    max-width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .main-img img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* يخلي الصورة تبان كاملة */
    }


    /* الجزء الخاص بالتفاصيل */
    .product-details {
        flex: 1;
    }

    .product-details h1 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .rating {
        color: #ff4d4d;
        /* لون النجوم */
        font-size: 14px;
        margin-bottom: 20px;
    }

    .rating span {
        color: #333;
        margin-left: 5px;
    }

    .price {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .description {
        color: #666;
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 25px;
    }

    hr{
        font-size: 2px;
        color: black;
    }
    /* المقاسات */
    .size-selection p {
        margin-bottom: 10px;
        font-weight: 500;
    }

    .sizes {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .sizes button {

        padding: 10px 20px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        cursor: pointer;
        transition: 0.3s;
    }

    .sizes button.active,
    .sizes button:hover {
        border-color: #ff4d4d;
        background: #fff;
    }

    /* زر الإضافة للسلة */
    .add-to-cart {
        background: #000;
        color: #fff;
        padding: 15px 40px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .add-to-cart:active {
        background: #333;
    }

    hr {
        border: 0;
        border-top: 1px solid #eee;
        margin-bottom: 20px;
    }

    .product-info-footer p {
        font-size: 13px;
        color: #555;
        margin-bottom: 5px;
    }

    /* Responsive للتجاوب مع الموبايل */
    @media (max-width: 768px) {
        .showproduct {
            flex-direction: column;
        }

    


    .product-display {
        flex-direction: column-reverse;
        align-items: center;
    }

    .main-img {
        width: 100%;
        height: 350px;   /* تصغر شوية */
    }

    .product-thumbnails {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .product-thumbnails img {
        width: 70px;
        height: 70px;
    }


    }

    @media (max-width: 555px) {
        .product-display {
            flex-direction: column-reverse;
        }

        .product-thumbnails {
            width: 100%;
            flex-direction: row;
            overflow-x: auto;
        }
    }

    @media (max-width: 350px) {
        .sizes button {
            padding: 3px 10px;
        }

    }






    /* Tabs Styling */
.report {
    margin-top: 80px;
    padding: 0 5%;
}

.tabs-header {
    display: flex;
}

.tab-btn {
    padding: 15px 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.tab-btn.active {
    border-bottom: 2px solid #000; /* تمييز الزر النشط */
}

.tab-content {
    display: none; /* إخفاء المحتوى افتراضياً */
    border: 1px solid #ddd;
    padding: 30px;
    line-height: 1.8;
    color: #555;
    font-size: 14px;
}

.tab-content.active {
    display: block; /* إظهار المحتوى النشط فقط */
}







/* التجاوب للموبايل */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* منتجين فقط في الصف للموبايل */
    }

    .tab-content {
        padding: 15px;
    }

    .product-thumbnails {
        height: auto;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
}
}


