﻿/* شريط التوب بار */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    z-index: 1000; /* لضمان بقاءه فوق كل العناصر */
}

    .top-bar .contact-info-top {
        display: flex;
        gap: 30px;
        color: white;
        direction: ltr;
    }

        .top-bar .contact-info-top i {
            color: #64b324;
        }

    .top-bar .social-icons {
        display: flex;
        gap: 10px;
        direction:ltr;
    }

    .top-bar a {
        color: white;
        text-decoration: none;
    }

        .top-bar a:hover {
            color: #ddd;
        }

/* شريط التنقل */
.navbar {
    position: fixed;
    top: 36px; /* يبعد بنفس ارتفاع الـ Top Bar */
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 125px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

    .nav-links li {
        display: inline-block;
    }

    .nav-links a {
        text-decoration: none;
        color: black !important;
        font-size: 14px;
        padding: 10px 15px;
        transition: background 0.3s ease-in-out;
        border-radius: 5px;
        font-weight: 500;
    }

        .nav-links a.active,
        .nav-links a:hover {
            background-color: #64B324;
            color: white !important;
        }

/* إخفاء الـ Top Bar على الموبايل */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }


    .navbar {
        position: fixed;
        top: 0; /* يبعد بنفس ارتفاع الـ Top Bar */
        left: 0;
        right: 0;
        background-color: white;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 999; /* أقل بقليل من الـ Top Bar */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 100vw; /* يمنع التمدد الزائد */
        max-width: 100%; /* يضمن عدم تخطي حجم الشاشة */
        box-sizing: border-box
    }

    .logo img {
        width: 100px;
    }
}

/* زر القائمة (الهامبرغر) */
.menu-toggle {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: #249b40;
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 1001;
    padding-right: 14px;
}

/* القائمة المنسدلة للموبايل */
.mobile-menu {
    display: none;
}

    .mobile-menu.open {
        left: 0;
    }

        @media (max-width: 768px) {
            .menu-toggle {
        display: block;
    }
    .page[dir="rtl"] .menu-toggle {
        display: block;
        font-size: 25px;
        cursor: pointer;
        color: #249b40;
        position: absolute;
        top: 15px;
        left: 0px !important;
        right:unset;
        z-index: 1001;
        padding-left: 14px !important;
    }

    .nav-links {
        display: none;
    }

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -112%;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }
}

/* رأس القائمة */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* استبدال 100vw بـ 100% لمنع التمدد */
    padding: 10px 15px;
    box-sizing: border-box; /* يمنع زيادة الحجم بسبب padding */
    overflow: hidden; /* يمنع أي تجاوز للعرض */
}


    .menu-header .logoMobile img {
        width: 100px;
        max-width: 100%;
        height: auto;
        display: block;
    }
/* زر الإغلاق */
.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    margin-left: auto;
}
.page[dir="rtl"] .close-menu{
    margin-left:unset;
}
/* روابط القائمة في الموبايل */
.nav-links-mobile {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin-top: 40px;
}


    .nav-links-mobile li {
        margin-bottom: 5px;
    }

    .nav-links-mobile a {
        text-decoration: none;
        color: black !important;
        font-size: 18px;
        font-weight: 500;
        display: block;
        padding: 10px 20px;
        transition: background 0.3s ease-in-out;
        border-radius: 5px;
    }

        .nav-links-mobile a:hover,
        .nav-links-mobile a.active {
            background-color: #64B324;
            color: white !important;
        }

/* البانر */
.slider-container {
    position: relative;
    max-width: 100%;
    height:100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
/*.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}*/

.slider-img {
    position:absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slider-img .bnr-web {
        margin-top: 110px;
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    .slider-img.active {
        height:100vh;
        opacity: 1;
        z-index: 1;
    }
/*.bnr-mob {
    display: none;
}*/
/* نص السلايدر */
.page[dir="rtl"] .contentslider {
    right : 5%;
    text-align:right;
}


.contentslider {
    position: absolute;
    /*top: 50%;*/
    top: 30vh;
    left: 5%;
    /*    transform: translateY(-50%);*/
    color: white;
    text-align: left;
    max-width: 40%;
    padding: 20px; /* Added padding for better spacing */
}

    .contentslider h1 {
        font-size: 36px;
        font-weight: bold;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    .contentslider p {
        font-size: 18px;
        margin: 10px 0;
    }

    .contentslider button {
        background-color: #64B324;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
    }

        .contentslider button:hover {
            background-color: #558C1F;
        }


/*////////////////////////////////////////////*/
@media (min-width: 1200px) {

    .contentslider {
        max-width: 40%;
    }
}

/* الأجهزة اللوحية (تابلت) */
@media (max-width: 1199px) and (min-width: 768px) {
    .contentslider {
        position: absolute;
        /*        top: 13%; */
        top: 15vh;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        max-width: 90%;
        margin: 20px auto;
        padding: 10px;
    }

/*    .slider-img .bnr-web {
        display: none;
    }*/

    .slider-container {
        position: relative;
        max-width: 100%;
        height: 410px;
        overflow: hidden;
    }
    .slider-img .bnr-web {
        display: block;
        width: 100%;
        height: 410px;
    }
    .slider-img.active {
        height: 410px;
        opacity: 1;
        z-index: 1;
    }
    .contentslider h1 {
        font-size: 17px;
    }

    .contentslider p {
        font-size: 10px;
    }

    .contentslider button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* الهواتف المحمولة */
@media (max-width: 767px) {
    .page[dir="rtl"] .contentslider {
        right: 0% !important;
        transform: none !important;
        text-align: center;
    }
    .contentslider {
        position: absolute;
        top: 30vh;
        /*        top: 11%;*/
        left: 50%;
        transform: translateX(-50%);
/*        transform: none;*/
        text-align: center;
        min-width: 90%;
        margin: 20px auto;
        padding: 10px;
    }

        .contentslider h1 {
            font-size: 17px;
        }

        .contentslider p {
            font-size: 10px;
        }

        .contentslider button {
            padding: 8px 15px;
            font-size: 14px;
        }

/*    .slider-img .bnr-web {
        display: none;
    }*/

    .slider-img .bnr-web {
        display: block;
        width: 100%;
        height:80vh;
        margin-top:65px;
    }
    slider-wrapper{
        height:80vh;
    }
    .slider-container{
        height:80vh;
    }

    .slider-img.active {
        height: 80vh;
        opacity: 1;
        z-index: 1;
    }
}





/*//////////////////////////////////////////////*/

/* شريط المميزات */
/*.features-bar {
    width: 1320px;
    height: 117px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    flex-direction: row !important;
    z-index: 55;
}*/
.features-bar {
    max-width: 1320px;
    width: 90%;
    height: auto;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 21%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 47px 20px;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 55;
}
    .features-bar .feature-card {
        display: flex;
        align-items: center;
        gap: 10px;
        /*        font-size: 18px;*/
        font-size: 16px;
        font-weight: bold;
        color: #333;
        transition: all 0.3s ease-in-out;
    }

        .features-bar .feature-card i {
            color: #64B324;
            font-size: 22px;
        }
        .features-bar .feature-card p {
            margin-bottom : 0px;
        }

        .features-bar .feature-card:hover {
            transform: scale(1.1);
        }

/* ✅ **تنسيق الكروت في الموبايل والتابلت** */
@media (max-width: 1199px) {
    .features-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* صفين بكل صف كاردين */
        gap: 15px;
        width: 90%;
        padding: 20px;
        position: relative;
        bottom: auto;
        background-color: none;
        box-shadow: none;
        top:0px;
    }

    .feature-card {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }

        .feature-card i {
            font-size: 28px;
            margin-bottom: 10px;
            color: #64B324;
        }
    .features-bar .feature-card p {
        margin-bottom: 1rem;
    }
}

/* ✅ **لشاشات الهواتف الصغيرة جدًا (عرض أقل من 600px)** */
@media (max-width: 600px) {
    .features-bar {
        display:none;
        grid-template-columns: repeat(1, 1fr);  /*يصبح كل كارد في صف منفصل */
    }
        .features-bar .feature-card p {
            margin-bottom: 1rem;
        }
}



.section-container {
    text-align: center;
/*    padding: 60px 110px;*/
    padding: 20px 110px;
}

/* العنوان */
.section-title {
    margin-top: 100px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* حاوية الكروت */
.cards-container {
    /*    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;*/
    display: grid;
    justify-content: center;
    gap: 20px;
}

/* الكارد */
.card {
   /* width: 400px;
    height: 508px;*/
   margin:auto;
    width: 315px;
    height: 415px;
    background: #fff;
    border-radius: 15px; /* تحديث الزوايا لتكون أكثر عصرية */
    /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);*/ /* ظل خفيف */
    border:none;
    text-align: center;
    transition: all 0.3s ease; /* التأثيرات ستكون سلسة */
}

    .card:hover {
        transform: scale(1.05); /* تكبير الكارد بشكل بسيط */
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* زيادة الظل بشكل أكبر */
        background-color: #f7f7f7; /* تغيير الخلفية إلى لون فاتح */
    }

    /* صورة الكارد */
    .card img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }

    /* عنوان الكارد */
    .card h3 {
        font-size: 22px;
        margin: 15px 0;
        color: #333 !important;
    }

/*///////////////////////////////////*/

@media (max-width: 1199px) and (min-width: 768px) {
    .cards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
/*        gap: 15px;*/
        gap: 60px;
    }

    .card {
        width: 28%;
        height: 300px; /* تثبيت الطول */
        border-radius: 15px;
    }

    .section-title {
        font-size: 22px;
        margin-top: 65px !important;
    }
}




/* الهواتف المحمولة */
@media (max-width: 767px) {
    .section-title {
        font-size: 22px;
        margin-top: 60px;
    }

    .cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 70px;
    }

    .card {
        width: 300px;
        height: 400px; /* تثبيت الطول */
        border-radius: 15px;
    }
}











/*////////////////////////////*/

.section-container1 {
    text-align: center;
    padding: 0 20px;
    margin-top: 120px;
    margin-bottom: 100px;
}

/* قسم المنتجات */
.products-section {
    text-align: center;
    padding: 60px 20px;
}


/* الحاوية الرئيسية للكاردات */

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
}
/*.products-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
}*/
.productss-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 1215px;
    padding: 32px 10px;
    scrollbar-width: none; /* Hide scrollbar */
}

    .products-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome */
    }

@media (max-width: 1199px) and (min-width: 768px) {
    .section-container1 {
        text-align: center;
        padding: 0 20px;
        margin-top: 125px;
        margin-bottom: 100px;
    }
    .productss-container {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 51vh;
        padding: 10px;
        scrollbar-width: none; /* Hide scrollbar */
    }
    .left-scroll {
        left: 40px !important;
    }

    .right-scroll {
        right: 40px !important;
    }

}

    .product-card-home {
        min-width: 275px;
        height: 330px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 15px;
/*        display: flex;*/
        flex-direction: column;
        align-items: center;
    }

        .product-card-home img {
            width: 100%;
            height: 165px;
            object-fit: contain;
            border-radius: 10px;
        }
        .product-card-home:hover {
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
        }
.page[dir="rtl"] .arrow-btn {
    transform: translateY(-50%) rotate(180deg) !important;
}
.arrow-btn {
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px 15px;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 22%;
}

    .left-scroll {
        left: 50px;
    }

    .right-scroll {
        right: 50px;
    }


    .arrow-btn:hover {
        background: #555;
    }

@media (max-width: 768px) {
    .section-container1 {
        text-align: center;
        padding: 0 20px;
        margin-top: 125px;
        margin-bottom: 100px;
    }
    .left-scroll {
        left: 0px;
    }

    .right-scroll {
        right: 0px;
    }
}

    /*///////////////////////////////////////*/
    /*.products-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}*/

    /* الكارد */
    /*.product-card-home {
    width: 275px;
    height: 330px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}*/

    /* صورة المنتج */
    /*.product-card-home img {
        width: 100%;
        height: 165px;
        object-fit: cover;
        border-radius: 10px;
    }*/
    /*/////////////////////////////////////*/
    /* عنوان المنتج */
    .product-title1 {
        font-size: 14px;
        color: #333;
        margin: 15px 0;
        font-weight: 500;
    }

    .readMore-btn {
        background: #64B324; /* لون بنفسجي مناسب */
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 60px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 5px;
    }

    /* زر Enquiry */
    .enquiry-btn {
        background: #64B324; /* لون بنفسجي مناسب */
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 60px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 20px;
        margin-bottom:10px;
    }

        .enquiry-btn:hover {
            background: #4b8c1e;
            transform: scale(1.05);
        }


.detail-btn {
    background-color: white; /* لون بنفسجي مناسب */
    color: #64B324;
    border: 1px solid #64B324;
    padding: 10px 20px;
    border-radius: 60px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 10px;
}

        .detail-btn:hover {
            background: #4b8c1e;
            color : white;
            transform: scale(1.05);
        }

    .bannerSection {
/*        height: 328px;*/
        max-width: 100%;
        overflow: hidden; /* يمنع أي محتوى زائد من التسبب في ظهور السكرول */
    }

        .bannerSection img {
            width: 100%;
/*            height: 100%;*/
            object-fit: cover; /* يجعل الصورة تملأ القسم دون تشويه */
        }




    .button-container {
        display: flex;
        justify-content: flex-end;
        width: 90%;
        margin-top: 20px;
    }

    .viewAll-btn {
        background: #64B324; /* لون بنفسجي مناسب */
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 60px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
        gap:10px;
        margin-top: 5px;
    }

        .viewAll-btn:hover {
            background: #4b8c1e;
            transform: scale(1.05);
        }


    /* تنسيق البوب أب */
    .popup-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 1111111111;
    }

    .popup {
        width: 596px;
/*        height: 620px;*/
        height: 670px;
        background: #fff;
        padding: 12px 41px;
        border-radius: 33px;
        position: relative;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        margin-top: 46px;
    }


    /* الهيدر */
    .popup-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }

        .popup-header h2 {
            font-size: 20px;
            color: #333;
        }

    .close-btn {
        position: absolute;
        font-size: 44px;
        cursor: pointer;
        color: #888;
        right: 3%;
        top: 2%;
    }

        .close-btn:hover {
            color: red;
        }

    /* تنسيق الفورم */
    .popup-form {
        margin-top: 10px;
    }

    /* تنسيق الصفوف */
    .form-row {
        display: flex;
        gap: 15px;
    }

    .form-group {
        flex: 1;
        margin-bottom: 25px;
    }

        .form-group label {
            display: block;
            font-size: 14px;
            margin-bottom: 5px;
            color: #333;
            text-align: left;
            font-weight: 600;
        }
.page[dir="rtl"] .form-group label {
    text-align: right;
}

        .form-group input,
        .form-group textarea {
            width: 100%;
            background-color: #F8F8F8;
            padding: 10px;
            border: none;
            outline: none;
            border-radius: 16px;
        }

        /* تكبير الـ Textarea */
        .form-group textarea {
            height: 100px;
            resize: none;
        }

    /* زر الإرسال */
    .send-btn {
        width: 100%;
        padding: 12px;
        background: #64B324;
        color: #fff;
        border: none;
        font-size: 18px;
        cursor: pointer;
        border-radius: 25px;
        transition: 0.3s;
    }

        .send-btn:hover {
            background: #4b861a;
        }

/* الشاشات الكبيرة (أجهزة الكمبيوتر) */
@media (min-width: 1200px) {
    .popup {
        width: 596px;
/*        height: 514px;*/
        height: 670px;
    }
}

/* الأجهزة اللوحية (تابلت) */
@media (max-width: 1199px) and (min-width: 768px) {
    .popup {
        width: 80%;
        height: auto;
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .button-container {
        display: flex;
        justify-content: flex-end;
        width: 90%;
        margin-top: 30px;
    }
}

/* الهواتف المحمولة */
@media (max-width: 767px) {
    .popup {
        width: 90%;
        height: auto;
        padding: 15px;
        margin-top:10px;
    }
    .form-group label{
        font-size:12px !important;
        margin-bottom:0px !important;
    }
    .error-message {
        font-size: 12px !important;
        height : 15px !important;
    }
    /* .popup-container {
        align-items: start;
    } */
    .popup-header h2 {
        font-size: 15px;
    }

    .close-btn {
        font-size: 30px;
        top: 1%;
        right: 5%;
    }

    .popup-form {
        margin-top: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 5px;
    }

    .send-btn {
        font-size: 16px;
        padding: 10px;
    }
    .button-container {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
    }
}






    /* page --------------------------- */
    /* ------contact-us page ---------- */
    .contact-container {
        display: flex;
        width: 90%;
        margin: 125px auto;
        background: white;
        border-radius: 10px;
        overflow: hidden;
    }

    /* الجزء الأيسر */
    .contact-info {
        width: 50%;
        padding: 40px;
        color: rgb(0, 0, 0);
        display: flex;
        flex-direction: column;
    }

        .contact-info h2 {
            font-size: 44px;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 20px;
            margin-bottom: 28px;
            font-weight: 500;
        }
.page[dir="rtl"] .contact-detail {
   direction:ltr;
   text-align:right;
}
    .contact-detail {
        font-size: 18px;
        margin: 10px 0;
        font-weight: 500;
        direction:ltr;
    }
.page[dir="rtl"] .contact-detail i{
    margin-left : 10px;
    float:right;
    margin-top: 4px;
}
.contact-detail i {
    margin-right: 10px;
}

    /* الجزء الأيمن */
.error-message {
    color: red;
    font-size: 14px;
    display: block;
    text-align:start;
/*    margin-top: 5px;*/
height : 20px;
}

    input.error, textarea.error {
        border: 1px solid red;
    }
/*    //////////////////////////*/
.contact-form {
    width: 50%;
    padding: 40px;
}

    .form-row {
        display: flex;
        gap: 20px;
    }

    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }

    label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    input, textarea {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    textarea {
        height: 100px;
        resize: none;
    }

    /* زر الإرسال */
    .send-btn {
        width: 100%;
        padding: 12px;
        background: #64B324;
        color: white;
        border: none;
        border-radius: 20px;
        font-size: 18px;
        cursor: pointer;
        transition: 0.3s;
    }

        .send-btn:hover {
            background: #4b861a;
        }

    /* جعل التصميم متجاوب */
    @media (max-width: 768px) {
        .contact-container {
            margin: 60px auto;
            flex-direction: column;
        }

        .contact-info, .contact-form {
            width: 100%;
        }

        .form-row {
            flex-direction: column;
            gap : 0px;
        }

/*        /////////////////////////////////////// popup mobile*/

        .popup-product-card {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            padding: 5px;
            border-radius: 8px;
            width: 100%;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }
        .popup-product-image {
            width: 90px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
        }
        .popup-product-details h3 {
            font-size: 13px !important;
            margin: 0;
            color: #333;
        }
        .popup-product-details p {
            font-size: 12px !important;
            color: #777;
            margin: 5px 0;
        }
        .popup-size-select label {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            font-size: 12px !important;
        }
        .popup-size-select select {
            width: auto !important;
            padding: 3px;
            font-size: 12px !important;
            border-radius: 5px;
            border: 1px solid #ddd;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            background-color: #F8F8F8;
            padding: 7px;
            border: none;
            outline: none;
            border-radius: 16px;
        }
        .form-group textarea {
            height: 50px;
            resize: none;
        }

    }

    .map {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 100px;
    }
        .map img {
            width: 80%;
        }

    /* page -------------------- */


    .products-section {
        text-align: center;
        padding: 60px 110px;
    }

    /* العنوان */

    /* فئات المنتجات */
.categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

    .category-btn {
        font-size: 18px;
        padding: 10px 20px;
        margin: 5px;
        background-color: #ffffff;
        color: #64B324;
        border: 1.2px solid #64B324;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 500;
    }

        .category-btn:hover {
            background-color: #4b8c1e;
            color: white;
        }
        .size-btn {
        font-size: 12px;
        padding: 5px 8px;
        margin: 5px;
        background-color: #ffffff;
        color: #64B324;
        border: 1.2px solid #64B324;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 500;
    }

        .size-btn:hover {
            background-color: #4b8c1e;
            color: white;
        }
            .size-btn.active {
                background-color: #64B324; /* اللون الأحمر */
                color: white;
            }
@media (max-width: 768px) {
    .category-btn {
        font-size: 10px;
        padding: 5px 10px;
        margin: 5px;
        background-color: #ffffff;
        color: #64B324;
        border: 1.2px solid #64B324;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 500;
        white-space: nowrap;
    }



    .products-section {
        padding: 60px 55px;
    }
}



    /* حاوية المنتجات */
    .products-container {
        display: flex;
        flex-wrap: wrap;
/*        flex-wrap: nowrap;*/
        justify-content: center;
        gap: 30px;
    }

    /* حاوية الفئة */
    .category-container {
        width: 100%;
        margin-bottom: 50px;
        display: none; /* Hide by default */
    }

        .category-container.active {
            display: block; /* Show when active */
        }

    .category-title {
        font-size: 28px;
        font-weight: bold;
        color: #333;
        margin-bottom: 20px;
    }

    .category-btn.active {
        background-color: #64B324; /* اللون الأحمر */
        color: white;
    }

    /* حاوية المنتجات داخل الفئة */
    .products {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* بطاقة المنتج */
    .product-card {
        width: 300px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
    }

        .product-card img {
            width: 100%;
            height: 190px;
            object-fit: contain;
            border-radius: 10px;
        }

        .product-card:hover {
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
        }
        /* الاسم والوصف */
        .product-title {
            font-size: 17px;
            font-weight: 500;
            color: #333;
            margin-bottom: 15px;
        }

    .product-description {
        font-size: 14px;
        color: #555;
        margin-bottom: 0px;
    }

    /* زر الاستفسار */
    .enquiry-btn {
        background-color: #64B324;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s;
    }

        .enquiry-btn:hover {
            background-color: #4b8c1e;
        }


/*        ---------------------------------------------------------------------resposive*/

@media (max-width: 768px) {
    .products-section {
        padding: 40px 30px;
    }

    .categories {
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .products-container {
        gap: 15px;
    }

    .product-card {
        width: 260px;
        padding: 15px;
    }

        .product-card img {
            height: 160px;
        }

    .product-title {
        font-size: 15px;
    }

    .product-description {
        font-size: 13px;
    }

    .enquiry-btn {
        padding: 8px 16px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .products-section {
        padding: 30px 15px;
    }

    .categories {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        font-size: 12px;
        padding: 6px 12px;
        margin: 3px 0;
    }

    .products-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .product-card {
        width: 90%;
        padding: 10px;
    }

        .product-card img {
            height: 140px;
        }

    .product-title {
        font-size: 14px;
    }

    .product-description {
        font-size: 12px;
    }

    .enquiry-btn {
        padding: 6px 12px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .products-section {
/*        padding: 50px 60px;*/
        padding: 0px 60px;
        margin-top:165px;
    }

    .categories {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .category-btn {
        font-size: 16px;
        padding: 10px 15px;
    }

    .products-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .products {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 25px;
    }

    .product-card {
        width: 100%;
        max-width: 320px;
        padding: 15px;
    }

        .product-card img {
            height: 160px;
        }

    .product-title {
        font-size: 18px;
    }

    .product-description {
        font-size: 14px;
    }

    .enquiry-btn {
        padding: 8px 15px;
    }
}



/*        ---------------------------------------------------------------------resposive*/

    /* 
------------- page 
------- about us page ------------------------------- */



    .sectionH1About::after {
        content: "";
        background-image: url(/Images/gear.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 109px;
        height: 88px;
        position: absolute;
        right: 548px;
    }

    .section-containerAbout {
        text-align: left;
        padding: 0px 40px;
        margin-top: 165px;
    }

    .about-section {
        display: flex;
        justify-content: center;
        gap: 40px;
        padding: 0 85px;
        margin-bottom: 150px;
    }

    /* الصورة */
.about-image {
    flex:1;
    width: 100%;
    height: 450px; /* ارتفاع ثابت */
    border-radius: 25px; /* تدوير الحواف */
    overflow: hidden; /* منع تجاوز الصورة */
    position: relative;
}
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* يحافظ على تناسب الصورة */
        object-position: center; /* يضمن بقاء الصورة في المنتصف */
    }

    /* المحتوى (العنوان، الفقرة، الزر) */
    .about-content {
  flex:2;
} 

    .about-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .about-content p {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        
    }

    .btn-download-catalog {
        background-color: #64B324;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        margin-top: 37px;
    }

        .btn-download-catalog:hover {
            background: #4b8c1e;
            transform: scale(1.05);
        }


    .section-titleAbout {
        font-size: 32px;
        font-weight: bold;
        color: #333;
        margin-bottom: 0;
    }

/*@media (max-width: 1199px) and (min-width: 768px) {

    .products {
        flex-wrap: nowrap;
    }
}
*/


    /* جعل التصميم متجاوب مع الشاشات الصغيرة */
/*    @media (max-width: 768px) {
        .about-section {
            flex-direction: column;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            height: auto;
        }
    }*/

@media (max-width: 768px) {

    .section-containerAbout {
        margin-top: 45px;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        padding:40px;
    }

    .about-image {
        height: auto;
    }

        .about-image img {
            width: 100%;
            height: auto;
        }
}

/*/////////////////////////////////////////////////////////////////////////////reponsive*/
@media (max-width: 1199px) and (min-width: 768px) {
/*    .about-section {
        display: flex;
        justify-content: center;
        gap: 40px;
        padding: 0 14px;
        margin-bottom: 150px;
    }
    .about-image {
        flex: 2;
        text-align: center;
    }*/
       .about-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 0px 40px;
        margin-bottom:40px;
    }

    .about-image {
        flex: 1;
        text-align: center;
    }

        .about-image img {
            max-width: 90%;
            height: auto;
        }

    .about-content {
        flex: 1;
        max-width: 600px;
    }

        .about-content h1 {
            font-size: 28px;
            text-align: left;
        }

        .about-content p {
            font-size: 13px;
            text-align: left;
            line-height: 1.6;
        }

    .btn-download-catalog {
        background-color: #64B324;
        color: white;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 25px;
        cursor: pointer;
        border: none;
        transition: 0.3s;
    }

        .btn-download-catalog:hover {
            background-color: #4b8c1e;
        }
}*/

/*/////////////////////////////////////////////////////////////////////////////reponsive*/




    /* .imgAbout {
    width: 1490px;
    height: 815px;
} */

    .imgAbout {
        width: 1340px;
        position: relative;
    }
    .sectionH1About {
        align-items: center;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }



    .cards-containerAbout {
        position: absolute;
    }


    .cardAbout {
        background-image: url(/Images/kraft.jpg);
        opacity: 0.8;
        width: 780px;
        /* height: 166px; */
        display: flex;
        flex-direction: column;
        /* background-color: rgb(255 255 255 / 20%); */
        border-radius: 114px;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: relative;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
        transform: perspective(800px) rotateX(5deg) rotateY(-3deg);
        transition: all 0.3s ease-in-out;
    }


        .cardAbout::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 8px;
            transform: skewX(-5deg);
        }

        .cardAbout:hover {
            transform: rotateX(8deg) rotateY(-8deg);
            box-shadow: 15px 20px 30px rgba(0, 0, 0, 0.25), -5px -5px 20px rgba(0, 0, 0, 0.08);
        }

    .left {
        margin-left: 400px;
        margin-top: 30px;
    }

    .right {
        margin-right: 400px;
/*        margin-top: 30px;*/
        margin-top: 22px;
    }

    .card-contnetAbout {
        padding: 30px 34px;
    }

        .card-contnetAbout p {
            padding-top: 10px;
            font-weight: 500;
            color:black;
        }

    .headCardAbout {
        display: flex;
    }

        .headCardAbout h1 {
            font-size: 20px;
            color:black;
        }

        .headCardAbout i {
            font-size: 29px;
            padding-right: 10px;
            color:black;
        }

    .sectiontwo {
        display: flex;
        justify-content: center;
        margin-bottom: 125px;
    }

/* الأجهزة الكبيرة (كمبيوتر) */
@media (min-width: 1200px) {
    .cardAbout {
        width: 780px;
    }

    .left {
        margin-left: 400px;
    }

    .right {
        margin-right: 400px;
    }
}

/* الأجهزة اللوحية (تابلت) */
@media (max-width: 1199px) and (min-width: 768px) {
    .cardAbout {
        width: 85%;
        margin: 20px auto;
    }

    .left, .right {
        margin: 12px auto;
    }
    .imgAbout{
        width:100%;
    }
    .cards-containerAbout{
        position:absolute;
        width:100%;
    }
    .card-contnetAbout p {
        padding-top: 0px;
        font-weight: 500;
        color:black;
    }
    .sectiontwo {
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
        height:544px;
    }
    .card-contnetAbout {
        padding: 16px 34px;
    }
}

/* الهواتف المحمولة */
@media (max-width: 767px) {
    .imgAbout {
        width: 100%;
        position: relative;
        height: auto;
        object-fit: cover;
    }


    .cardAbout {
        width: 95%;
        margin: 15px auto;
        border-radius: 50px;
    }

    .left, .right {
        margin: 15px auto;
    }

    .headCardAbout h1 {
        font-size: 16px;
        color:black;
    }

    .headCardAbout i {
        font-size: 20px;
        color:black;
    }

    .card-contnetAbout {
        padding: 8px 35px;
    }

        .card-contnetAbout p {
            font-size: 10px;
            color:black;
        }

    .cards-containerAbout {
/*        margin-top: 40px;*/
        margin-top: 0px;
    }

    .sectionH1About {
        font-size: 22px;
    }

    .sectiontwo {
        height: 500px;
        margin-bottom: 40px;
    }
}


    .statistics-container {
        display: flex;
        flex-wrap:wrap;
        justify-content: center;
        gap: 30px;
        padding: 30px;
    }

    .stat {
        padding: 20px;
        border-radius: 12px;
        width:30%;
        text-align: center;
        transition: transform 0.3s ease-in-out;
    }

        .stat:hover {
            transform: translateY(-10px);
        }

    .stat-title {
        font-size: 20px;
        color: #333;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-circle {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        position: relative;
        background-color: #ffffff;
        border: 10px solid transparent;
        background-clip: content-box;
    }

    .progress-circle {
        position: absolute;
        width: 100%;
        height: 100%;
        background: conic-gradient(#64B324 calc(var(--progress) * 1%), #e0e0e0 calc(var(--progress) * 1%) 100%);
        border-radius: 50%;
        animation: progressAnimation 1s ease-out forwards;
    }

    .inner-circle {
        position: absolute;
        width: 110px;
        height: 110px;
        background-color: #ffffff;
        border-radius: 50%;
        z-index: 2;
    }

    .circle-text {
        font-size: 30px;
        font-weight: bold;
        color: #333;
        position: absolute;
        z-index: 100;
    }

    @keyframes progressAnimation {
        0% {
            transform: scale(0);
        }

        100% {
            transform: scale(1);
        }
    }


/* ✅ تصميم متجاوب لأجهزة التابلت */
@media (max-width: 1024px) {
    .statistics-container {
        gap: 20px;
    }

    .stat {
        width: 29%; /* يكون هناك عنصران في كل صف */
    }

    .stat-circle {
        width: 130px;
        height: 130px;
    }

    .inner-circle {
        width: 90px;
        height: 90px;
    }

    .circle-text {
        font-size: 24px;
    }

    .stat-title {
        font-size: 13px;
        color: #333;
        font-weight: 800;
        margin-bottom: 10px;
    }

}

/* ✅ تصميم متجاوب لأجهزة الموبايل */
@media (max-width: 768px) {
    .statistics-container {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 80%; /* يكون كل عنصر في سطر منفصل */
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .inner-circle {
        width: 85px;
        height: 85px;
    }

    .circle-text {
        font-size: 22px;
    }

    .stat-title {
        font-size: 18px;
    }
}

   

    /* --------------product  */
/*.product-container {
    display: flex;
    width: 90%;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
    gap: 20px;
}*/

.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
}

.thumbnail-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.thumbnail-container {
    display: flex;
    overflow-x: hidden;
    gap: 10px;
    padding: 5px;
    width: 65%;
    margin:auto;
    justify-content: start;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s, border 0.2s;
}

    .thumbnail:hover {
        transform: scale(1.1);
    }

    .thumbnail.active {
        border: 2px solid #64B324;
    }
.arrow-btnn {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: #64B324;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .arrow-btnn:hover {
        background: rgba(0, 0, 0, 0.2);
    }
/*.arrow-btnn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #64B324;
    cursor: pointer;
    transition: color 0.3s;
}

    .arrow-btnn:hover {
        color: #4b8c1e;
    }*/

.left-arrow {
    position: absolute;
    left: 0;
}

.right-arrow {
    position: absolute;
    right: 0;
}


/*    ////////////////////////////////////////////////////////////////////////////////*/
    .product-container {
        display: flex;
        width: 90%;
        height: 20%;
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin: 200px auto 50px auto;
        gap: 20px;
    }

    .product-image {
        width: 90%;
        height: 100%;
        object-fit: contain;
        border-radius: 10px;
    }

    .product-info {
        width: 40%;
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }

        .product-info h1 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }

    .product-code, .category {
        font-size: 14px;
        color: #777;
        margin-bottom: 10px;
    }

    .stars {
        font-size: 20px;
        color: #ff9800;
        margin-bottom: 15px;
    }

    .size-div {
        display: flex;
        align-items: center;
    }
    .size-select {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    select {
        padding: 8px;
        font-size: 16px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .enquiry-btnProduct {
        padding: 14px 195px;
        background: #64B324;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s;
    }

        .enquiry-btnProduct:hover {
            background: #4b8c1e;
            transform: scale(1.05);
        }

    .share {
        position: relative;
        display: inline-block;
    }

    .share-btn {
        padding: 17px 20px;
        background: none;
        color: #64B324;
        border: 1px solid #64B324;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s;
    }

        .share-btn:hover {
            background: #4b8c1e;
            transform: scale(1.05);
            color:white !important;
        }

    .share-dropdown {
        display: none; /* مخفي بشكل افتراضي */
        position: absolute;
        background: white;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        margin-top: 5px;
        z-index: 10;
        display: flex; /* ترتيب الأيقونات بجانب بعض */
        flex-direction: row;
        gap: 10px;
        transition: opacity 0.3s ease, visibility 0s 0.3s; /* انتقال أكثر سلاسة */
        opacity: 0; /* بداية بإخفاء الـ dropdown */
        visibility: hidden;
    }

        .share-dropdown a {
            padding: 10px;
            text-decoration: none;
            color: #333 !important;
            font-size: 14px;
        }

            .share-dropdown a:hover {
                background: #f1f1f1 !important;
                color: white !important;
            }

    /* عند التمرير فوق الزر أو الـ dropdown نفسه، يتم إظهار الـ dropdown */
    .share:hover .share-dropdown {
        opacity: 1; /* إظهار الـ dropdown */
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0s 0s; /* إظهار سلاسة مع إلغاء التأخير */
    }

    .share-dropdown:hover {
        opacity: 1; /* إبقاء الـ dropdown مرئيًا عندما تمر الفأرة عليه */
        visibility: visible;
    }


    .tabs-tabs {
        margin-bottom: 100px;
    }

    .tabs {
        width: 90%;
        margin: auto;
        display: flex;
        gap: 2px;
    }

        .tabs button {
            flex: 1;
            padding: 12px;
            border: none;
            cursor: pointer;
            background: #eee;
            border-radius: 5px 5px 0 0;
            font-size: 16px;
            transition: background 0.3s;
        }

            .tabs button.active {
                background: #64B324;
                color: white;
                font-weight: bold;
            }

    .tab-content {
        display: none;
        width: 90%;
        margin: auto;
        line-height: 1.7;
        padding: 20px 65px;
        background: white;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-top: -5px;
        font-weight: 400;
    }

    .related-products {
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        margin: auto
    }

        .related-products h2 {
            text-align: left;
            margin-bottom: 20px;
        }

    .related-list {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .related-item {
        width: 23%;
        text-align: center;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

        .related-item img {
/*            width: 100%;*/
            width: 70%;
            height: auto;
            border-radius: 5px;
        }

        .related-item h3 {
            font-size: 14px;
            margin-top: 10px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .related-item p {
            font-size: 16px;
            color: green;
            margin: 10px 0;
        }

    .related-btn {
        padding: 10px 20px;
        background: #64B324;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .related-btn:hover {
            background: #4b8c1e;
            transform: scale(1.05);
        }




    #reviews p {
        font-size: 16px;
        color: #333;
    }

    .review {
        margin-top: 15px;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .review-header {
        display: flex;
        align-items: center;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

    .review strong {
        font-size: 18px;
        color: #64B324;
    }

    .review em {
        font-size: 14px;
        color: #666;
    }

    .review p {
        font-size: 14px;
        color: #333;
        margin-top: 10px;
    }


/*  ---------------  responsive form Mobile*/

@media (max-width: 768px) {
    .image-section{
        width:100%;
    }
   
    .product-container {
        flex-direction: column;
        width: 95%;
        margin: 50px auto;
        padding: 15px;
        height: auto;
    }

    .product-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .product-info {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

        .product-info h1 {
            font-size: 18px;
        }

    .product-code, .category {
        font-size: 14px;
    }

    .stars {
        font-size: 18px;
    }

    .size-select {
        flex-direction: column;
        align-items: center;
    }

    .enquiry-btnProduct {
        padding: 12px 50px;
        width: 100%;
    }

    .share-btn {
        width: 100%;
    }
    .share-dropdown {
        flex-direction: column;
        gap: 0px;
        width: 100%;
    }

    .tabs {
        flex-direction: column;
    }

        .tabs button {
            font-size: 14px;
            padding: 10px;
        }

    .tab-content {
        padding: 15px;
    }

    .related-products {
        width: 95%;
    }

    .related-list {
        flex-direction: column;
        gap: 15px;
    }

    .related-item {
        width: 100%;
    }

    .review-avatar {
        width: 30px;
        height: 30px;
    }

    .review strong {
        font-size: 16px;
    }

    .review p {
        font-size: 14px;
    }
}

/*  ---------------  responsive form Ipad Or tablet*/

@media (max-width: 1199px) and (min-width: 768px) {

    .product-container {
        flex-direction: row;
        width: 95%;
        margin: 100px auto;
        padding: 20px;
        height: auto;
    }

    .product-image {
        width: 50%;
        height: auto;
        border-radius: 10px;
    }

    .thumbnail-container {
        min-width: 300px;
        max-width: 400px;
    }
    .product-info {
        width: 50%;
        padding: 20px;
    }

        .product-info h1 {
            font-size: 22px;
        }

    .product-code, .category {
        font-size: 14px;
    }

    .stars {
        font-size: 20px;
    }

    .size-select {
        flex-direction: row;
    }

    .enquiry-btnProduct {
        width: auto;
        padding: 12px 80px;
    }

    .share-btn {
        width: auto;
    }

    .tabs {
        flex-direction: row;
    }

        .tabs button {
            font-size: 16px;
            padding: 12px;
        }

    .tab-content {
        padding: 20px;
    }

    .related-products {
        width: 95%;
    }

    .related-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .related-item {
        width: 45%;
    }

    .review-avatar {
        width: 35px;
        height: 35px;
    }

    .review strong {
        font-size: 18px;
    }

    .review p {
        font-size: 16px;
    }
}



/*  ------------------  footer  ----------------------------*/


    footer {
        background: black;
        color: #fff;
        padding: 40px 0;
        text-align: center;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 1200px;
        margin: auto;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin: 20px;
    }

        .footer-section h2 {
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 2px solid #218838;
            display: inline-block;
            padding-bottom: 5px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

            .footer-section ul li {
                margin: 8px 0;
            }

                .footer-section ul li a {
                    color: #64B324 !important;
                    text-decoration: none;
                    transition: 0.3s;
                }

                    .footer-section ul li a:hover {
                        text-decoration: underline;
                    }

        .footer-section p, .footer-section form {
            margin: 10px 0;
        }

            .footer-section form input {
                padding: 10px;
                width: 100%;
                border: none;
                border-radius: 5px;
            }

            .footer-section form button {
                padding: 10px 100px;
                /*background: #64B324;*/
                background: #64B324;
                color: white;
                border: none;
                cursor: pointer;
                border-radius: 5px;
                font-weight: 500;
                margin-top: 10px;
            }

                .footer-section form button:hover {
                    padding: 10px 100px;
/*                    background: #249b40;*/
                    background: #4B8C1E;
                    color: white;
                    border: none;
                    cursor: pointer;
                    border-radius: 5px;
                    font-weight: 500;
                    margin-top: 10px;
                }

    .footer-bottom {
        margin-top: 20px;
        border-top: 1px solid #218838;
        padding-top: 10px;
        font-size: 14px;
    }

    .logoFooter {
        margin-top: 10px;
        max-width: 150px;
    }

    .footer-about-p {
        font-size: 13px;
    }

/*//////////////////////////////////////////////////////////////////////////////*/
.popup-product-card {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.popup-product-image {
    width: 90px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}
.page[dir="rtl"] .popup-product-details {
    text-align:right;
    padding-right:20px;
}

.popup-product-details {
    flex-grow: 1;
    text-align: left;
}

    .popup-product-details h3 {
        font-size: 1.2rem;
        margin: 0;
        color: #333;
    }

    .popup-product-details p {
        font-size: 0.9rem;
        color: #777;
        margin: 5px 0;
    }

.popup-size-select {
    /*    margin-top: 10px;*/
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    /*    margin-bottom: 15px;*/
}

    .popup-size-select label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #777;
    }


    .popup-size-select select {
        width: 40%;
        padding: 8px;
        color: #777;
        border-radius: 20px !important;
        border: 1px solid #ddd;
    }

/* Responsive Design */
/*@media (max-width: 600px) {
    .popup-product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .popup-product-image {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
}*/
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 5px;
}

    .pagination button {
        background-color: white;
        color: black;
        border: 0.2px solid black;
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 5px;
    }

        .pagination button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
@media (max-width: 768px) {
    .pagination button {
        padding: 8px 8px;
    }
}

.pagination .active-page {
    background-color: #64B324;
    color:white;
    font-weight: bold;
}

    .pagination-dots {
        padding: 8px 12px;
        color: #555;
    }

    .total-products {
        font-size: 14px;
        font-weight: 300;
        color: #333;
    }

    .category-btn.active {
        background-color: #4b8c1e;
        color: white;
    }

    /*.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

    .pagination button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 15px;
        margin: 0 5px;
        cursor: pointer;
        border-radius: 5px;
    }

        .pagination button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

    .pagination .active-page {
        background-color: #0056b3;
        font-weight: bold;
    }

.category-btn.active {
    background-color: #4b8c1e;
    color: white;
}
*/

/*   back button  */

.back-button-container {
    padding: 10px 20px;
    text-align: left;
    margin-top: 110px;
    position: fixed;
    z-index: 10000;
}
@media (max-width: 768px) {
    .back-button-container {
        margin-top: 66px;
    }
    .btn-back {
        color: #3e3a3a !important;
        background-color: #4444440d !important;
    }
    }

.page[dir="rtl"] .btn-back {
    transform: rotate(180deg);
}
.btn-back {
    background-color: #444;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

        .btn-back:hover {
            background-color: #222;
        }

/*// customization*/
@media (max-width: 768px) {
    .cup-parent {
        flex-direction: column;
    }

    .cup-thumbnails {
        flex-direction: row !important;
        margin-top: 10px;
        width: 105%;
    }
    .cup-thumb{
        width:70px !important;
        height:90px !important;
    }
}

.page[dir="rtl"] .hot-btn {
    left:100px;
    right:unset;
}

.hot-btn {
    position: absolute;
    top: 10px;
    right: 100px;
    background-color: #FFAA00;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}