/*your custom css goes here*/
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
* {
    font-family: "Almarai", serif;
}

/* akram work */
.product-card {
    width: 100%;
    height: auto;
    aspect-ratio: 3/5;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .product-card:hover {
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.2);
  }

  .product-card .product-card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card .product-card-container .top {
    position: relative;
    overflow: hidden;
  }

/* تخصيص إعدادات الصورة في البطاقة */
.product-card .product-card-container .top img , .image-hover {
    width: 100%;
    height: auto;
    /*يتمضبطالارتفاعبناءًعلىالعرض*/
    aspect-ratio: 3/3.55;/*الحفاظعلىنسبة4:;
    3*/object-fit: cover;
    /*لتعبئةالحاويةمعالحفاظعلىنسبةالأبعاد*/transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
}

  .product-card .product-card-container .image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .product-card .product-card-container .top:hover .image-default {
    opacity: 0;
  }

  .product-card .product-card-container .top:hover .image-hover {
    opacity: 1;
  }

  .product-card .product-card-container .icon-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .product-card .product-card-container .top:hover .icon-container {
    opacity: 1;
    visibility: visible;
  }

  .product-card .product-card-container .icon-container i {
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .product-card .product-card-container .bottom {
    padding: 10px;
    background: #f4f4f4;
  }

  .product-card .product-card-container .bottom-top {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .product-card .product-card-container .reviews {
    margin-top: 5px;
    display: flex;
    align-items: center;
  }

  .product-card .product-card-container .stars {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .product-card .product-card-container .stars i {
    color: #f7c01b;
    font-size: 12px;
    margin-right: 2px;
  }

  .product-card .product-card-container .reviews > span {
    font-size: 14px;
    color: #555;
    margin-left: 5px;
  }

  .product-card .product-card-container .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .product-card .product-card-container .privous-price {
    color: #d9534f;
    text-decoration: line-through;
  }

  .product-card .product-card-container .product-discount {
    color: #28a745;
    font-weight: bold;
    font-size: 15px;
    padding: 0px 3px;
    border: 0.2px solid #28a745;
    border-radius: 10px;
    background-color: transparent;
  }
/* تخصيص خيارات الألوان بحيث تكون عمودية في الزاوية اليمنى السفلية */
.color-options {
    position: absolute;
    bottom: 10px;
    right: 10px; /* تحديد المكان إلى الجهة اليمنى السفلية */
    display: flex;
    flex-direction: column; /* ترتيب الألوان عموديًا */
    gap: 8px; /* إضافة مساحة بين الألوان */
    z-index: 10;
    padding: 5px;
    background-color: transparent; /* إزالة اللون الخلفي */
    border-radius: 8px;
    border: 2px solid #ddd; /* حدود خفيفة حول الخيارات */
  }

  /* تخصيص شكل دوائر الألوان */
  .color-circle {
    width: 1em;
    border-radius: 50%;
    height: 1em;
    border: 2px solid #fff;
    /*محيطأبيضحولالدائرة*/cursor: pointer;
    transition: transform 0.3s ease-in-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

  .color-circle:hover {
    transform: scale(1.1); /* تكبير اللون عند التمرير */
  }

  .color-circle:active {
    transform: scale(0.95); /* تصغير اللون عند الضغط */
  }


/* ============================================Category======================================= */

 /* حاوية الصورة الدائرية */
 .category-circle {
    width: 15vw; /* حجم يعتمد على عرض الشاشة */
    height: 15vw;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ddd;
    transition: width 0.3s, height 0.3s;
    transition: transform 0.3s ease; /* انتقال سلس */
}

/* تأثير عند تمرير الماوس */
.category-circle:hover, .child-category-circle:hover {
    transform: scale(1.1); /* تكبير الصورة بنسبة 10% */
    box-shadow: 2px rgba(0, 0, 0, 0.2); /* إضافة ظل */
}a
/* تأكد من أن الصورة تملأ الحاوية */
.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* تنسيق اسم القسم */
.category-name {
    color: #333;
}

/* تكبير الصور قليلاً على الشاشات الأكبر */
@media (min-width: 576px) {
    .category-circle {
        width: 12vw;
        height: 12vw;
        max-width: 70px;
        max-height: 70px;
    }
    /* .category-name {
        font-size: 2.8vw;
    } */
}

@media (min-width: 768px) {
    .category-circle {
        width: 10vw;
        height: 10vw;
        max-width: 90px;
        max-height: 90px;
    }
    /* .category-name {
        font-size: 2.5vw;
    } */
}

@media (min-width: 992px) {
    .category-circle {
        width: 8vw;
        height: 8vw;
        max-width: 100px;
        max-height: 100px;
    }
    /* .category-name {
        font-size: 1.8vw;
    } */
}


/* ========================================Card-label-price============================================ */

.card-lbl-pr {
    width: 100%;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all .3s;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.card-lbl-pr:hover {
    transform: scale(0.95);
}

.card-lbl-pr img {
    width: 100%; /* جعل الصورة تغطي كامل عرض البطاقة */
    height: 100%; /* جعل الصورة تغطي كامل ارتفاع البطاقة */
    object-fit: cover; /* ضمان أن الصورة تملأ المساحة بدون تشويه */
}

.card-lbl-pr span {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-lbl-pr span::before {
    content: 'Premium';
    position: absolute;
    width: 150%;
    height: 30px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0,0,0,0.23);
}

.card-lbl-pr span::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
}

/* تنسيق السعر داخل البطاقة */
.card-lbl-pr p {
    position: absolute;
    top: 50%; /* وضع السعر في منتصف البطاقة */
    left: 50%;
    transform: translate(-50%, -50%); /* لضمان أن السعر في المنتصف بالضبط */
    margin: 0;
    padding: 15px;
    font-size: 1.4em;
    font-weight: bold;
    color: #fff; /* جعل السعر باللون الأبيض ليتناسب مع الصورة */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6); /* خلفية مظللة للسعر لتوضيحه فوق الصورة */
    border-radius: 10px;
    opacity: 0; /* إخفاء السعر بشكل افتراضي */
    visibility: hidden; /* إخفاء السعر بشكل افتراضي */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* إضافة تأثير التلاشي */
}

/* إظهار السعر عند التمرير على البطاقة */
.card-lbl-pr:hover p {
    opacity: 1; /* جعل السعر مرئي */
    visibility: visible; /* جعل السعر مرئي */
}



/* =====================================card with info small card=================================== */


.card-inf-center {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/3.55;
    background: #313131;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.2s ease-in-out;
    overflow: hidden;
}

/* تنسيق الصورة داخل البطاقة */
.card-inf-center .img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* لجعل الصورة تملأ البطاقة */
    z-index: 1; /* تأكد من أن الصورة في الأسفل */
}

/* تنسيق النص داخل البطاقة */
.card-inf-center .textBox {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: 0.2s ease-in-out;
}

.card-inf-center .textBox > .text {
    font-weight: bold;
}

.card-inf-center .textBox > .head {
    font-size: 20px;
}

.card-inf-center .textBox > .price {
    font-size: 17px;
}

.card-inf-center .textBox > span {
    font-size: 12px;
    color: lightgrey;
}

/* إظهار النص عند التمرير على البطاقة */
.card-inf-center:hover .textBox {
    opacity: 1;
}

/* تنسيق البطاقة الصغيرة الشفافة التي تحتوي على النص */
.card-inf-center .smallCard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.1); /* خلفية شبه شفافة */
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 3;
    backdrop-filter: blur(10px); /* تأثير الزجاج الضبابي */
    border: 1px solid rgba(255, 255, 255, 0.2); /* إضافة حدود خفيفة لإبراز البطاقة */
}

.card-inf-center:hover .smallCard {
    opacity: 1;
}

.card-inf-center .smallCard .text {
    font-weight: bold;
    color: black;
}

.card-inf-center .smallCard .price {
    font-size: 18px;
    color: black;
}

/* إزالة تأثير التحريك على البطاقة */
.card-inf-center:hover {
    transform: none;
}


/* ===========================================small card================================== */


.fast-card {
    width: 100%;
    height: 254px;
    border-radius: 1em;
    padding: 1.9rem;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease-out;
    box-shadow: 0px 7px 20px rgba(43, 8, 37, 0.2);
    -webkit-transition: 0.4s ease-out;
    -moz-transition: 0.4s ease-out;
    -ms-transition: 0.4s ease-out;
    -o-transition: 0.4s ease-out;
}

.fast-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* background: rgba(238, 116, 116, 0.4); */
    z-index: 2;
    transition: 0.5s;
}

.fast-card .card-info {
    position: absolute;
    bottom: 50%;
    left: 50%;
    z-index: 3;
    color: #f5f5f5;
    opacity: 0;
    transform: translate(50%);
    transition: 0.5s;
    -webkit-transform: translate(50%);
    -moz-transform: translate(50%);
    -ms-transform: translate(50%);
    -o-transform: translate(50%);
}

/*Text*/
.fast-card .card-info .text-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.fast-card .card-info .text-body {
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 5px 0 15px 0;
}

/*Button*/
.fast-card .card-info .card-button {
    padding: 0.5rem;
    outline: none;
    border: none;
    border-radius: 4px;
    background: #ee9ca7;
    color: white;
    font-weight: bold;
    transition: 0.4s ease;
}

/*Image*/
.fast-card .card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;  /* تأكد أن الصورة تكون خلف النص */
}

/*Hover*/
.fast-card:hover {
    transform: translateY(1%);
    -webkit-transform: translateY(1%);
    -moz-transform: translateY(1%);
    -ms-transform: translateY(1%);
    -o-transform: translateY(1%);
}

.fast-card:hover:before {
    opacity: 1;
}

.fast-card:hover .card-info {
    opacity: 1;
    transform: translateY(0);
}

.fast-card .card-info .card-button:hover {
    background: rgba(218, 77, 77, 0.4);
    color: #f5f5f5;
}


/* ===================================================card-category============================= */

        /* تصميم الـ Card */
        .card-category {
            width: 200px;
            margin: auto;
            text-align: center;
            border-top-left-radius: 4rem;
            border: 2px solid #fff;
            position: relative;
        }

        /* تخصيص الجسم */
        .card-category .card__body {
            /* padding: 2rem 1.5rem; */
            /* max-width: 25ch; */
            margin: auto;
            color: #fff;
            border-radius: 10px;
            position: relative;
            /* z-index: 10; */
        }

        /* تنسيق الصورة داخل الـ .card__body */
        .card-category .card__image {
            width: 100%;
            height: 273px;
            border-radius: 10px;
            object-fit: cover;
            position: absolute; /* تأكد من أن الصورة لا تؤثر على النص */
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1; /* وضع الصورة خلف النص */
        }

        /* إضافة مربع شفاف حول النص */
        .card-category .card__text-container {
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.4); /* خلفية شفافة */
            backdrop-filter: blur(10px); /* تأثير الضبابية على الخلفية */
            border-radius: 10px; /* إضافة حواف دائرية للمربع */
            max-width: 90%;
            margin: auto;
            transform: translateY(100%); /* بداية المربع خارج العرض (أسفل) */
            opacity: 0; /* إخفاء المربع */
            transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* إضافة تأثير التحويل والتلاشي */
        }

        /* عندما يمر الماوس على الـ Card يظهر المربع تدريجيًا */
        .card-category:hover .card__text-container {
            transform: translateY(0); /* نقل المربع إلى مكانه الأصلي */
            opacity: 1; /* إظهاره */
        }

        .card-category .card__title {
            font-weight: 800;
            color: #fff;
            font-size: 1.25rem;
            margin-block: 1.5rem 0.75rem;
        }

        .card-category .card__paragraph {
            color: #fff;
            font-size: 0.875rem;
        }

        .card-category .card__ribbon {
            margin-top: 1.5rem;
            display: grid;
            place-items: center;
            height: 50px;
            background-color: #393e7f;
            position: relative;
            width: 110%;
            left: -5%;
            top: 10px;
            border-radius: 0 0 2rem 2rem;
        }

        .card-category .card__ribbon-label {
            display: block;
            width: 84px;
            aspect-ratio: 1/1;
            background-color: #fff;
            position: relative;
            transform: translateY(-50%);
            border-radius: 50%;
            border: 8px solid #393e7f;
            display: grid;
            place-items: center;
            font-weight: 900;
            line-height: 1;
            font-size: 1.5rem;
        }

        /* تخصيص الأيقونة */
        .card-category .card__ribbon-label i {
            font-size: 2rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .card-category .card__ribbon-label:hover i {
            transform: scale(1.2) rotate(20deg); /* تكبير الأيقونة وتدويرها */
            color: #ff9900; /* تغيير اللون */
        }


/* ================================circle-product================================= */

/* From Uiverse.io by ilkhoeri */
/* .circle-product  {
    width: 100%;
    height: 300px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .circle-product .inner {
    --w: 100px;
    --h: 150px;
    --translateZ: calc((var(--w) + var(--h)) + 0px);
    --rotateX: -15deg;
    --perspective: 1000px;
    position: absolute;
    width: var(--w);
    height: var(--h);
    top: 25%;
    left: calc(50% - (var(--w) / 2) - 2.5px);
    z-index: 2;
    transform-style: preserve-3d;
    transform: perspective(var(--perspective));
    animation: rotating 20s linear infinite;
  }
  @keyframes rotating {
    from {
      transform: perspective(var(--perspective)) rotateX(var(--rotateX))
        rotateY(0);
    }
    to {
      transform: perspective(var(--perspective)) rotateX(var(--rotateX))
        rotateY(1turn);
    }
  } */

  /* .circle-product .card {
    position: absolute;
    border: 2px solid rgba(var(--color-card));
    border-radius: 12px;
    overflow: hidden;
    inset: 0;
    transform: rotateY(calc((360deg / var(--quantity)) * var(--index)))
      translateZ(var(--translateZ));
  }

  .circle-product .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0000
      radial-gradient(
        circle,
        rgba(var(--color-card), 0.2) 0%,
        rgba(var(--color-card), 0.6) 80%,
        rgba(var(--color-card), 0.9) 100%
      );
  }


  .book {
    position: relative;
    border-radius: 10px;
    width: 180px;
    height: 250px;
    background-color: whitesmoke;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    transition-duration: 0.5s;
}

.book .cover,
.inner {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.book:hover .cover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotatey(70deg);
    -ms-transform: rotatey(70deg);
    transform: rotatey(-70deg);
}

.book .inner {
    transform-origin: 100%;
}

.book:hover .inner {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotateZ(25deg) rotateX(-30deg) rotateY(-10deg)
        translateX(140px);
    -ms-transform: rotateZ(25deg) rotateX(-30deg) rotateY(-10deg)
        translateX(140px);
    transform: rotateZ(25deg) rotateX(-30deg) rotateY(-10deg) translateX(140px);
    -webkit-box-shadow: 1px 1px 20px #000a;
    box-shadow: 1px 1px 20px #000a;
}

.book:hover {
    transform: rotateZ(-10deg);
} */

/* إضافة صورة داخل الكتاب */
/* .book .cover img,
.inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
} */

/* ===================================general card======================================== */

        /* تصميم الـ Card */
        .general-card {
            width: 100%;
            /*عرضالبطاقة*/
            /*الحوافالمدورة*/overflow: hidden;
            /*إخفاءالأجزاءالتيتخرجعنحدودالبطاقة*/border: 1px solid #ccc;
            /*حدخفيفحولالبطاقة*/box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            /*ظلخفيفحولالبطاقة*/background-color: #fff;
            margin: 20px;
            font-family: Arial, sans-serif;
            }

        /* تأثير الظل عند التمرير */


        /* تصميم صورة البطاقة */
        .general-card .card-image {
            width: 100%; /* ملء عرض البطاقة */
            aspect-ratio: 2.5/3;
            object-fit: cover; /* الحفاظ على تناسب الصورة */
        }

        /* تصميم محتوى البطاقة */
        .general-card .card-content {
            padding: 5px;
        }

        /* تصميم العنوان والنص */
        .general-card .card-content .title,
        .general-card .card-content .price {
            margin: 0;
            white-space: nowrap; /* منع الانتقال إلى سطر جديد */
            overflow: hidden;    /* إخفاء النص الذي يتجاوز */
            text-overflow: ellipsis; /* عرض ثلاث نقاط في نهاية النص */
            color: #555;
        }

        .general-card .card-content .title {
            margin: 0px; /* مسافة صغيرة تحت العنوان */
        }

        .general-card .card-content .price {
            font-weight: bold;
            color: red;
            margin-top: 3px; /* مسافة صغيرة بين العنوان والسعر */
            margin-bottom: 3px;
        }


        /* ===================================================================== */

        .subcategory-image {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }

          .subcategory-image:hover {
            transform: scale(1.2); /* تكبير الصورة عند التمرير */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* إضافة ظل للصورة */
          }

          /* ======================================social Media=============================== */

          .social-media-icons {
            position:absolute;
            top:50%;
            left:50%;
            transform: translate(-50%, -50%);
            margin:0;
            padding:0;
            display:flex;
        }

        .social-media-icons  li {
            list-style: none;
        }

        .social-media-icons  li a {
            position: relative;
            width:60px;
            height:60px;
            display:block;
            text-align:center;
            margin:0 10px;
            border-radius: 50%;
            padding: 6px;
            box-sizing: border-box;
            text-decoration:none;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            background: linear-gradient(0deg, #ddd, #fff);
            transition: .5s;
        }

        .social-media-icons ul li a:hover {
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            text-decoration:none;
        }

        .social-media-icons  li a .fab {
            width: 100%;
            height:100%;
            display:block;
            background: linear-gradient(0deg, #fff, #ddd);
            border-radius: 50%;
            line-height: calc(60px - 12px);
            font-size:24px;
            color: #262626;
            transition: .5s;
        }

        .social-media-icons  li:nth-child(1) a:hover .fab {
            color: #3b5998;
        }

        .social-media-icons  li:nth-child(2) a:hover .fab {
            color: #00aced;
        }

        .social-media-icons  li:nth-child(3) a:hover .fab {
            color: #dd4b39;
        }

        .social-media-icons  li:nth-child(4) a:hover .fab {
            color: #007bb6;
        }

        .social-media-icons  li:nth-child(5) a:hover .fab {
            color: #e4405f;
        }

        /* ============================small-card in show product ============================*/
        .small-card button {
            border: none;
            background: transparent;
          }
          .small-card .controller-container {
            margin-bottom: 5%;
            text-align: center;
          }
          .small-card .controller {
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            display: inline-block;
            margin: 0 20px;
            font-size: 22px;
            padding: 10px 0;
            color: #FFF;
            position: relative;
            -webkit-transition: all 100ms cubic-bezier(0.165, 0.84, 0.44, 1);
            transition: all 100ms cubic-bezier(0.165, 0.84, 0.44, 1);
          }
          .small-card .controller:after {
            content: "";
            height: 3px;
            display: block;
            position: absolute;
            bottom: 0;
            width: 0;
            -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
            transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
            background-color: #FFF;
          }
          .small-card .controller.is_current:after {
            width: 100%;
          }
          .small-card .controller:hover,
          .small-card .controller.is_current {
            -webkit-transform: translate3d(0, -5px, 0);
                    transform: translate3d(0, -5px, 0);
            cursor: pointer;
          }
          .small-card {
            will-change: transform;
            margin: 8px;
            position: relative;
            border-radius: 2px;
            overflow: hidden;
            background-color: #fafafa;
            height: 35%;
            width: 344px;
            -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
            transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
          }
          .small-card:hover {
            cursor: pointer;
          }
          .small-card .card__image {
            position: absolute;
            background-size: cover;
            background-position: center;
            background-repeat: no-repat;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: block;
            opacity: 0;
            -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
            transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
          }
          .small-card .card__image:after {
            content: "";
            display: block;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.1);
            top: 0;
            left: 0;
            right: 0;
            -webkit-transition: all 500ms;
            transition: all 500ms;
            bottom: 0;
          }
          .small-card .card__title {
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            font-size: 24px;
            color: #FFF;
            margin: 0;
            position: absolute;
            left: 0;
            right: 0;
            padding: 0 16px;
            font-weight: 400;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
            transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
          }
          .small-card .card__subtitle {
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            font-size: 14px;
            display: block;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            color: #000;
            left: 88px;
            right: 0;
            top: 45px;
            position: absolute;
            padding: 0 16px;
            opacity: 0;
            -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
            transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
          }
          .small-card .card__text {
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            font-size: 14px;
            display: block;
            left: 0;
            right: 0;
            top: 100px;
            padding: 16px;
            margin: 0;
            line-height: 1.6;
            position: absolute;
            color: #000;
            overflow: hidden;
            -webkit-transition: width 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
            transition: width 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
            -webkit-transition: delay 0.1s;
            transition: delay 0.1s;
          }
          .small-card .card__action-bar {
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
            position: absolute;
            bottom: 0;
            top: auto;
            left: 0;
            right: 0;
            padding: 0 8px;
            border-top: 1px solid #E0E0E0;
            /* boz-sizing: border-box; */
            height: 52px;
            -webkit-transition: left 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
            transition: left 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
          }
          .small-card .card__button {
            outline: none;
            position: relative;
            display: inline-block;
            line-height: 52px;
            padding: 0 16px;
            color: #FF1744;
          }
          .card--big {
            box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
            height: 500px;
            min-height: 500px;
          }
          .card--big .card__image {
            border-radius: 1px 1px 0 0;
            left: 0;
            right: 0;
            top: 0;
            opacity: 1;
            max-height: 300px;
          }
          .card--big .card__title {
            bottom: 200px;
            background-color: rgba(0,0,0,0.6);
            line-height: 50px;
          }
          .card--big .card__text {
            top: 320px;
          }
          .card--big .card__subtitle {
            opacity: 1;
            top: 310px;
            left: 0;
            color: #000;
          }
          .card--big .card__action-bar {
            left: 0;
          }
          .card--medium {
            box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.3), 0 11px 7px 0 rgba(0, 0, 0, 0.19);
            height: 208px;
            min-height: 208px;
          }
          .card--medium .card__image {
            border-radius: 1px 1px 0 0;
            left: -100%;
            right: 0;
            top: 0;
            max-height: 0;
            opacity: 0;
          }
          .card--medium .card__title {
            color: #FF1744;
            top: 16px;
          }
          .card--medium .card__text {
            font-size: 16px;
            top: 50px;
          }
          .card--medium .card__action-bar {
            left: 0;
          }
          .card--small {
            box-shadow: 0 rgba(0, 0, 0, 0), 0 rgba(0, 0, 0, 0);
            height: 136px;
            min-height: 136px;
          }
          .card--small .card__image {
            border-radius: 1px 0 0 1px;
            left: 0;
            top: 0;
            width: 120px;
            opacity: 1;
            max-height: 136px;
          }
          .card--small .card__image:after {
            opacity: 0;
          }
          .card--small .card__title {
            color: #000;
            left: 120px;
            top: 4px;
            font-size: 16px;
          }
          .card--small .card__subtitle {
            opacity: 1;
            left: 120px;
            top: 25px;
            font-size: 12px;
          }
          .card--small .card__text {
            top: 30px;
            opacity: 0;
          }
          .card--small .card__action-bar {
            left: 120px;
          }

          .card--big span.price{
            font-size: 28px;
            line-height: 24px;
          }
          .small-card .was-price{
            color:red;
            line-height: 10px;
            text-decoration: line-through;
          }
          .small-card .save{
            color: #333;
            line-height: 10px;
            font-weight: bold;
          }



    /* ============================small-card in show product ============================*/

    .small-card button {
        border: none;
        background: transparent;
      }
      .small-card .controller-container {
        margin-bottom: 5%;
        text-align: center;
      }
      .small-card .controller {
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        display: inline-block;
        margin: 0 20px;
        font-size: 22px;
        padding: 10px 0;
        color: #FFF;
        position: relative;
        -webkit-transition: all 100ms cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 100ms cubic-bezier(0.165, 0.84, 0.44, 1);
      }
      .small-card .controller:after {
        content: "";
        height: 3px;
        display: block;
        position: absolute;
        bottom: 0;
        width: 0;
        -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
        background-color: #FFF;
      }
      .small-card .controller.is_current:after {
        width: 100%;
      }
      .small-card .controller:hover,
      .small-card .controller.is_current {
        -webkit-transform: translate3d(0, -5px, 0);
                transform: translate3d(0, -5px, 0);
        cursor: pointer;
      }
      .small-card {
        will-change: transform;
        margin: 8px;
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        background-color: #fafafa;
        height: 35%;
        width: 344px;
        -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
      }
      .small-card:hover {
        cursor: pointer;
      }
      .small-card .card__image {
        position: absolute;
        background-size: cover;
        background-position: center;
        background-repeat: no-repat;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: block;
        opacity: 0;
        -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
      }
      .small-card .card__image:after {
        content: "";
        display: block;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.1);
        top: 0;
        left: 0;
        right: 0;
        -webkit-transition: all 500ms;
        transition: all 500ms;
        bottom: 0;
      }
      .small-card .card__title {
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        font-size: 24px;
        color: #FFF;
        margin: 0;
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 16px;
        font-weight: 400;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
      }
      .small-card .card__subtitle {
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        font-size: 14px;
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        color: #000;
        left: 88px;
        right: 0;
        top: 45px;
        position: absolute;
        padding: 0 16px;
        opacity: 0;
        -webkit-transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
      }
      .small-card .card__text {
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        font-size: 14px;
        display: block;
        left: 0;
        right: 0;
        top: 100px;
        padding: 16px;
        margin: 0;
        line-height: 1.6;
        position: absolute;
        color: #000;
        overflow: hidden;
        -webkit-transition: width 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: width 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
        -webkit-transition: delay 0.1s;
        transition: delay 0.1s;
      }
      .small-card .card__action-bar {
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        position: absolute;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        padding: 0 8px;
        border-top: 1px solid #E0E0E0;
        /* boz-sizing: border-box; */
        height: 52px;
        -webkit-transition: left 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: left 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
      }
      .small-card .card__button {
        outline: none;
        position: relative;
        display: inline-block;
        line-height: 52px;
        padding: 0 16px;
        color: #FF1744;
      }
      .card--big {
        box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
        height: 500px;
        min-height: 500px;
      }
      .card--big .card__image {
        border-radius: 1px 1px 0 0;
        left: 0;
        right: 0;
        top: 0;
        opacity: 1;
        max-height: 300px;
      }
      .card--big .card__title {
        bottom: 200px;
        background-color: rgba(0,0,0,0.6);
        line-height: 50px;
      }
      .card--big .card__text {
        top: 320px;
      }
      .card--big .card__subtitle {
        opacity: 1;
        top: 310px;
        left: 0;
        color: #000;
      }
      .card--big .card__action-bar {
        left: 0;
      }
      .card--medium {
        box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.3), 0 11px 7px 0 rgba(0, 0, 0, 0.19);
        height: 208px;
        min-height: 208px;
      }
      .card--medium .card__image {
        border-radius: 1px 1px 0 0;
        left: -100%;
        right: 0;
        top: 0;
        max-height: 0;
        opacity: 0;
      }
      .card--medium .card__title {
        color: #FF1744;
        top: 16px;
      }
      .card--medium .card__text {
        font-size: 16px;
        top: 50px;
      }
      .card--medium .card__action-bar {
        left: 0;
      }
      .card--small {
        box-shadow: 0 rgba(0, 0, 0, 0), 0 rgba(0, 0, 0, 0);
        height: 136px;
        min-height: 136px;
      }
      .card--small .card__image {
        border-radius: 1px 0 0 1px;
        left: 0;
        top: 0;
        width: 120px;
        opacity: 1;
        max-height: 136px;
      }
      .card--small .card__image:after {
        opacity: 0;
      }
      .card--small .card__title {
        color: #000;
        left: 120px;
        top: 4px;
        font-size: 16px;
      }
      .card--small .card__subtitle {
        opacity: 1;
        left: 120px;
        top: 25px;
        font-size: 12px;
      }
      .card--small .card__text {
        top: 30px;
        opacity: 0;
      }
      .card--small .card__action-bar {
        left: 120px;
      }

      .card--big span.price{
        font-size: 28px;
        line-height: 24px;
      }
      .small-card .was-price{
        color:red;
        line-height: 10px;
        text-decoration: line-through;
      }
      .small-card .save{
        color: #333;
        line-height: 10px;
        font-weight: bold;
      }



      /* ==============================================.bought-product-card =============== */


    .bought-product-card-container {
        /* height: 100vh;
        max-width: 100vw !important; */
        padding: 0 !important;
        margin: 0 !important;
        /* background: #606c88; */
        /* fallback for old browsers */
        /* background: -webkit-linear-gradient(to right, #3f4c6b, #606c88); */
        /* Chrome 10-25, Safari 5.1-6 */
        /* background: linear-gradient(to right, #3f4c6b, #606c88); */
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

        display: flex;
        align-items: center;
        justify-content: space-evenly;

        .bought-product-card  {
            height: 500px;
            width: 275px;

            background-color: rgb(255, 255, 255);
            border-radius: 25px;
            overflow: hidden;
            display: flex;
            flex-direction: column;

            .product-name {
                h4 {
                    font-weight: bold;
                }
            }

            .product-image {
                position: relative;
                height: inherit;

                .out-of-order {
                    position: absolute;
                    top: 5%;
                    left: 5%;
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.788);
                    border: 1px solid rgba(97, 97, 97, 0.432);
                    padding-left: 10px;
                    padding-right: 10px;
                    border-radius: 25px;
                    background-color: rgba(97, 97, 97, 0.432);
                }

                .tag-discount {
                    position: absolute;
                    /* width: 50px; */
                    text-align: center;
                    background-color: green;
                    color: #fff;
                    top: 7%;
                    right: 0;
                    transition: all 650ms ease;
                    border-radius: 20px 0 0 20px;

                    &:hover {
                        width: 100%;
                        border-radius: 0;
                    }
                }

                .ribbon {
                    position: absolute;
                    display: inline-block;
                    top: 0.3em;
                    right: 0.8em;
                    max-width: 5em;
                    color: #fff;
                    z-index: 1;

                    span {
                        position: absolute;
                        top: 10px;
                        right: -3px;
                        transform: rotatez(45deg);
                        color: white;
                        font-weight: bold;
                    }
                }

                .ribbon::after {
                    position: absolute;
                    top: -1.5em;
                    right: -6em;
                    content: "";
                    height: 5em;
                    width: 10em;
                    transform: rotatez(45deg);
                    background-color: #DA0037;
                    z-index: -1;
                }

                img {
                    width: 100%;
                    transition: all 650ms ease;

                    &:hover {
                        transform: scale(1.2);
                    }
                }
            }

            .product-detail {
                height: 100%;
                width: 100%;
                position: relative;
                background-color: white;
                padding-left: 10px;
                padding-right: 10px;
                padding-top: 10px;
                z-index: 1;

                .product-price-tag {
                    display: flex;
                    flex-direction: row;
                    align-items: baseline;
                    justify-content: space-between;

                    .product-price {

                        .discounted {
                            text-decoration: line-through 2px solid #666666;
                            padding: 0;
                            margin: 0;
                        }

                        .discounted-price {
                            padding: 0;
                            margin: 0;
                            font-size: 18px;
                            text-align: center;
                            font-weight: bold;
                            transform: translateY(-3px);
                        }
                    }
                }

                .product-size-color {
                    align-items: flex-end;

                    h5 {
                        font-size: 16px;
                        font-weight: bold;
                    }

                    .product-colors {
                        .colors {
                            display: flex;
                            flex-direction: row;
                            justify-content: space-around;


                            .color-round {
                                width: 20px;
                                height: 20px;
                                border-radius: 50%;
                                transition: all 650ms ease;

                                &:hover {
                                    border: solid 1px #727272;
                                    padding: 2px;
                                    background-clip: content-box;
                                    transform: scale(1.3);
                                    cursor: pointer;
                                }
                            }

                            .color-red {
                                background-color: #611223;
                            }

                            .color-blue {
                                background-color: #313B95;
                            }

                            .color-black {
                                background-color: #303030;
                            }

                            .color-orange {
                                background-color: #C85625;
                            }

                            .active {
                                width: 25px;
                                height: 25px;
                                border: 1px solid black;
                            }

                            .disable {
                                cursor: not-allowed !important;

                            }
                        }
                    }

                    .product-size {

                        .text {
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            align-items: center;

                            p {
                                position: relative;
                                font-size: 10px;
                                transform: translateY(5px);
                                cursor: pointer;
                                overflow: hidden;
                                z-index: 1;

                                &::before {
                                    content: "";
                                    position: absolute;
                                    height: 2px;
                                    width: 100%;
                                    background-color: grey;
                                    bottom: 0;
                                    left: -100%;
                                    z-index: -1;
                                    transition: all 650ms ease;
                                }

                                &:hover::before {
                                    left: 0%;
                                }
                            }
                        }

                        .sizes {
                            display: flex;
                            flex-direction: row;
                            justify-content: space-around;

                            .size-square {
                                height: 20px;
                                width: 20px;
                                border: 1px solid grey;
                                border-radius: 3px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                transition: all 650ms ease;

                                span {
                                    font-size: 13px;
                                    color: gray;
                                    transition: all 650ms ease;
                                }

                                &:hover {
                                    border: 1px solid black;
                                    cursor: pointer;
                                    background-color: grey;

                                    span {
                                        color: black;
                                    }
                                }

                            }

                            .disable {
                                cursor: not-allowed !important;
                                text-decoration: line-through;

                                &:hover {
                                    border: 1px solid grey;
                                    background-color: white;
                                }
                            }
                        }
                    }
                }

                .cta {
                    width: 110%;
                    position: relative;
                    bottom: 0;
                    margin-top: 20px;

                    .btn {
                        width: 51% !important;
                        left: -1%;
                        border-radius: 0px;
                        transition: all 650ms ease;
                    }

                    .btn-cart {
                        opacity: 0.6;
                        position: absolute;

                        &:hover {
                            width: 100% !important;

                            ~.btn-buy {
                                left: 100%;
                            }
                        }
                    }

                    .btn-buy {
                        position: absolute;
                        left: 50%;

                        &:hover {
                            width: 100% !important;
                            left: 0%;

                            ~.btn-cart {
                                left: -50%;
                                background-color: red;
                            }
                        }
                    }

                    .btn-wish-list {
                        opacity: 0.75;
                        width: 100% !important;
                    }

                }
            }
        }
    }

    .bought-product-card .row {
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(1rem * -1);
        margin-right: calc(1rem * -.5);
        margin-left: calc(1rem * -.5);
    }

    /* ================================flash-deal======================================= */
    .flash-deal{
        @font-face {
          font-family: 'Typo Round Regular Demo';
          font-style: normal;
          font-weight: normal;
          src: local('Typo Round Regular Demo'), url('http://hataw.ph/shop/resource/font/TypoRoundRegularDemo.ttf') format('OpenType');
        }

        .cls-3 {
                font-family: 'Typo Round Regular Demo', serif;
                font-size: 19px;
              }

        * {
            margin: 0;
            padding: 0;
        }
/*
        body {
            -webkit-font-smoothing: antialiased;
            background-color: #f0f3ef;
            font: 12px/1.5 Microsoft YaHei,tahoma,arial,Hiragino Sans GB,\\5b8b\4f53,sans-serif;
            color: #666;
        } */

        ul {
          list-style-type: none;
        }

        a {
            color: #666;
            text-decoration: none;
        }

        button, input {
            font-family: Microsoft YaHei,tahoma,arial,Hiragino Sans GB,\\5b8b\4f53,sans-serif;
        }
        button {
            cursor: pointer;
        }

        em, i {
            font-style: normal;
        }

        /** body **/

        .sk {
            position: relative;
            top: 100px;
            height: 275px;
            margin-bottom: 30px;
        }

        .sk_inner {
            background: #fff;
            overflow: hidden;
        }
        .grid_c1 {
            margin: 0 auto;
            width: 1190px;
        }

        /** left timer **/

        .left_timer {
            position: relative;
            float: left;
            width: 190px;
            height: 275px;
            background: #763691;
            color: #fff;
          box-shadow: 5px 0px  5px rgba(0,0,0,16%);
            -moz-box-shadow: 5px 0px  5px  rgba(0,0,0,16%);
            -webkit-box-shadow: 5px 0px  5px  rgba(0,0,0,16%);
            -o-box-shadow: 5px 0px  5px  rgba(0,0,0,16%);
          z-index: 999;
        }

        .sk_hd_lk {
            display: block;
            width: 100%;
            height: 100%;
            color: #fff;
        }

        .svg-flash {
            width: 160px;
            position: relative;
            top: 50px;
            left: 15px;
        }

        .sk_cd {
            position: absolute;
            top: 145px;
            left: 22px;
            height: 40px;
        }

        .sk .cd_item {
            position: relative;
            float: left;
            width: 45px;
            height: 45px;
            text-align: center;
            background-color: #2f3430;
            margin-right: 5px;
            border-radius: 5px;
        }

        .sk_desc {
            position: absolute;
            left: 40px;
            width: 90px;
            height: 20px;
            text-align: center;
            top: 215px;
            font-size: 12px;
            background: #F1C40F;
            padding: 5px 6px;
            border-radius: 7px;
            border: 2px solid #DCB209;
            color: #753791;
        }

        .sk .cd_day {
            display: none;
        }

        .sk .cd_item_txt {
            position: relative;
            line-height: 46px;
            font-weight: bold;
            /* font-size: 16px; */
            font-size: 20px;
        }

        /* .sk .cd_item::before {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            width: 100%;
            top: 50%;
            height: 1px;
            background: #763691;
        } */

        /** right slider **/

        .sk_bd {
            float: left;
        }

        .sk_list {
            position: relative;
            float: left;
            width: 999px;
            border-right: solid 1px #f0f0f0;
            height: 275px;
            overflow: hidden;
        }

        .sk_list_inner {
            position: relative;
            width: 999px;
            height: 275px;
        }

        /** left button **/
        .sk_item {
            position: relative;
            float: left;
            width: 200px;
            height: 275px;
        }
        .slider_item {
            height: 100%;
            min-height: 1px;
        }

        .sk_item_lk {
            position: relative;
            display: block;
            width: 190px;
            height: 275px;
            text-align: center;
            margin: auto;
        }

        .sk_item_img {
            position: absolute;
            width: 140px;
            height: 140px;
            left: 50%;
            margin-left: -70px;
            top: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            -webkit-transition: opacity ease .2s;
            -o-transition: opacity ease .2s;
            -moz-transition: opacity ease .2s;
            transition: opacity ease .2s;
        }

        .lazyimg_loaded {
            -webkit-transition: background .2s linear, opacity .2s linear !important;
            -o-transition: background .2s linear, opacity .2s linear !important;
            -moz-transition: background .2s linear, opacity .2s linear !important;
            transition: background .2s linear, opacity .2s linear !important;
            /* transition: background .2s linear; */
            background: transparent;
        }

        .lazyimg {
            position: relative;
            overflow: hidden;
            background: #fff;
            -webkit-transition: background .2s linear;
            -o-transition: background .2s linear;
            -moz-transition: background .2s linear;
            transition: background .2s linear;
        }

        .sk_item_img img {
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: absolute;
            margin: auto;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .lazyimg_loaded .lazyimg_img {
            opacity: 1;
        }

        .sk_item_name {
            position: absolute;
            top: 175px;
            left: 0;
            width: 160px;
            padding: 0 15px;
            line-height: 16px;
            text-align: left;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: pre;
        }

        .mod_price {
            font-size: 14px;
            color: #e33333;
        }

        .mod_price i {
            margin-right: 3px;
            font-family: arial;
            font-weight: 400;
            font-size: 12px;
        }

        .sk_item_price {
            position: absolute;
            left: 15px;
            top: 220px;
            width: 160px;
            height: 20px;
            padding: 1px;
            background: #8E44AD;
            line-height: 20px;
        }

        .sk_item_price_new {
            float: left;
            width: 80px;
            height: 20px;
            text-align: center;
            color: #fff;
            font-size: 14px;
            font-weight: bold;
        }

        .sk_item_price_origin {
            float: left;
            width: 80px;
            height: 20px;
            background: #fff;
            text-align: center;
            color: #b7bcb8;
            font-size: 12px;
            text-decoration: line-through;
        }

        .sk_item::after {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 275px;
            background: #f0f0f0;
        }



        .progress {
            position: relative;
            width: 162px;
            height: 8px;
            -webkit-border-radius: 3px;
            -webkit-background-clip: padding-box;
            -moz-border-radius: 3px;
            -moz-background-clip: padding;
            border-radius: 3px;
            background-clip: padding-box;
            background: #BDC3C7;
        }

        .progress .progress-bar {
            position: absolute;
            width: 25%;
            left: 0;
            top: 0;
            height: 8px;
            -webkit-border-radius: 3px;
            -webkit-background-clip: padding-box;
            -moz-border-radius: 3px;
            -moz-background-clip: padding;
            border-radius: 3px;
            background-clip: padding-box;
            background: #763691;
        }

        .progress-data {
          position: absolute;
          top: 255px;
          left: 20px;
        }


        .arrow {
          height: 15px;
          width: 15px
        }



        /** VARIABLES
        ===================================*/
        /** RESET AND LAYOUT
        ===================================*/
        .bx-wrapper { border: 0px; position: relative; margin: 0 auto; padding: 0; *zoom: 1;
        -ms-touch-action: pan-y; touch-action: pan-y; }
        .bx-wrapper img { max-width: 100%; display: block; }
        .bxslider { margin: 0; padding: 0; }
        ul.bxslider { list-style: none; }
        .bx-viewport { /*fix other elements on the page moving (on Chrome)*/
            -webkit-transform: translatez(0); }
        /** THEME
        ===================================*/
        .bx-wrapper .bx-pager,
        .bx-wrapper .bx-controls-auto { position: absolute; bottom: 19px; width: 100%; }
        /* LOADER */
        .bx-wrapper .bx-loading { min-height: 50px; background: url('images/bx_loader.gif') center center no-repeat #ffffff; height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 2000; }

        /* PAGER */
        .bx-wrapper .bx-pager { text-align: center; font-size: .85em; font-family: Arial; font-weight: bold; color: #000; padding-top: 20px; }
        .bx-wrapper .bx-pager.bx-default-pager a { background: #3E3E3E; text-indent: -9999px; display: block; width: 9px; height: 9px; margin: 0 3px; outline: 0; -moz-border-radius: 50%; -webkit-border-radius: 50%; border-radius: 50%; }
        .bx-wrapper .bx-pager.bx-default-pager a:hover,
        .bx-wrapper .bx-pager.bx-default-pager a.active,
        .bx-wrapper .bx-pager.bx-default-pager a:focus { background: #e23a3a; }
        .bx-wrapper .bx-pager-item,
        .bx-wrapper .bx-controls-auto .bx-controls-auto-item { display: inline-block;
        *zoom: 1;
        *display: inline;
        }
        .bx-wrapper .bx-pager-item { font-size: 0; line-height: 0; }

        /* DIRECTION CONTROLS (NEXT / PREV) */
        .bx-wrapper .bx-controls-direction a {
            visibility: hidden;
            position: absolute;
            top: 50%;
            outline: 0;
            z-index: 9999;
            margin-top: -30px;
            width: 52px;
            height: 52px;
            text-align: center;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#33000000', endColorstr='#33000000');
            background: rgba(255, 255, 255, 0.7);
            font-family: simsun;
            font-size: 21px;
            font-weight: 400;
            line-height: 55px;
            color: #272727;
            border-radius: 100%;
            text-indent: 0px;
            box-shadow: -5px 5px 5px rgba(0,0,0,16%);
            -moz-box-shadow: -5px 5px 5px rgba(0,0,0,16%);
            -webkit-box-shadow: -5px 5px 5px rgba(185, 185, 185, 0.23);
            -o-box-shadow: -5px 5px 5px rgba(0,0,0,16%);
        }

        .bx-wrapper:hover .bx-controls-direction a {
            visibility: visible;
        }
        .bx-wrapper .bx-controls-direction a.disabled { display: none; }
        .bx-wrapper .bx-controls-direction a:hover,
        .bx-wrapper .bx-controls-direction a:focus { filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#66000000', endColorstr='#66000000');background:rgba(224, 224, 224, 0.4)}
        .bx-wrapper .bx-prev { left: 10px; }
        .bx-wrapper .bx-next { right: 10px; }

        /* AUTO CONTROLS (START / STOP) */
        .bx-wrapper .bx-controls-auto { text-align: center; }
        .bx-wrapper .bx-controls-auto .bx-start { display: block; text-indent: -9999px; width: 10px; height: 11px; outline: 0; background: url('images/controls.png') -86px -11px no-repeat; margin: 0 3px; }
        .bx-wrapper .bx-controls-auto .bx-start:hover,
        .bx-wrapper .bx-controls-auto .bx-start.active,
        .bx-wrapper .bx-controls-auto .bx-start:focus { background-position: -86px 0; }
        .bx-wrapper .bx-controls-auto .bx-stop { display: block; text-indent: -9999px; width: 9px; height: 11px; outline: 0; background: url('images/controls.png') -86px -44px no-repeat; margin: 0 3px; }
        .bx-wrapper .bx-controls-auto .bx-stop:hover,
        .bx-wrapper .bx-controls-auto .bx-stop.active,
        .bx-wrapper .bx-controls-auto .bx-stop:focus { background-position: -86px -33px; }
        /* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
        .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager { text-align: left; width: 80%; }
        .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto { right: 0; width: 35px; }
        /* IMAGE CAPTIONS */
        .bx-wrapper .bx-caption { position: absolute; bottom: 0; left: 0; background: #666; background: rgba(80, 80, 80, 0.75); width: 100%; }
        .bx-wrapper .bx-caption span { color: #fff; font-family: Arial; display: block; font-size: .85em; padding: 10px; }

        .countdown {
          position: absolute;
          margin: 0 auto;
          left: 11px;
          top: 145px;
        }
        .countdown .bloc-time {
          float: left;
          margin-right: 5px;
          text-align: center;
        }
        .countdown .bloc-time:last-child {
          margin-right: 0;
        }
        .countdown .figure {
          position: relative;
          float: left;
          height: 40px;
          width: 25px;
          margin-right: 1px;
          background-color: #585858;
          border-radius: 3px;
          -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
          -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
          box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
        }
        .countdown .figure:last-child {
          margin-right: 0;
        }
        .countdown .figure > span {
          position: absolute;
          left: 0;
          right: 0;
          margin: auto;
          font-size: 25px;
          line-height: 40px;
          font-weight: 700;
          color: #fff;
        }
        .countdown .figure .top:after, .countdown .figure .bottom-back:after {
          content: "";
          position: absolute;
          z-index: -1;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        .countdown .figure .top {
          z-index: 3;
          background-color: #424242;
          transform-origin: 50% 100%;
          -webkit-transform-origin: 50% 100%;
          -moz-border-radius-topleft: 3px;
          -webkit-border-top-left-radius: 3px;
          border-top-left-radius: 3px;
          -moz-border-radius-topright: 3px;
          -webkit-border-top-right-radius: 3px;
          border-top-right-radius: 3px;
          -moz-transform: perspective(200px);
          -ms-transform: perspective(200px);
          -webkit-transform: perspective(200px);
          transform: perspective(200px);
        }
        .countdown .figure .bottom {
          z-index: 1;
        }
        .countdown .figure .bottom:before {
          content: "";
          position: absolute;
          display: block;
          top: 0;
          left: 0;
          width: 100%;
          height: 50%;
          background-color: rgba(0, 0, 0, 0.02);
        }
        .countdown .figure .bottom-back {
          z-index: 2;
          top: 0;
          height: 50%;
          overflow: hidden;
          background-color: #424242;
          -moz-border-radius-topleft: 3px;
          -webkit-border-top-left-radius: 3px;
          border-top-left-radius: 3px;
          -moz-border-radius-topright: 3px;
          -webkit-border-top-right-radius: 3px;
          border-top-right-radius: 3px;
        }
        .countdown .figure .bottom-back span {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          margin: auto;
        }
        .countdown .figure .top, .countdown .figure .top-back {
          height: 50%;
          overflow: hidden;
          -moz-backface-visibility: hidden;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
        }
        .countdown .figure .top-back {
          z-index: 4;
          bottom: 0;
          background-color: #5f5f5f;
          -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
          -moz-transform: perspective(200px) rotateX(180deg);
          -ms-transform: perspective(200px) rotateX(180deg);
          -webkit-transform: perspective(200px) rotateX(180deg);
          transform: perspective(200px) rotateX(180deg);
          -moz-border-radius-bottomleft: 3px;
          -webkit-border-bottom-left-radius: 3px;
          border-bottom-left-radius: 3px;
          -moz-border-radius-bottomright: 3px;
          -webkit-border-bottom-right-radius: 3px;
          border-bottom-right-radius: 3px;
        }
        .countdown .figure .top-back span {
          position: absolute;
          top: -100%;
          left: 0;
          right: 0;
          margin: auto;
        }
      }


      /* =============================category-slider================================ */
      .category-slider {
        .blog-slider {
          width: 100%;
          position: relative;
          max-width: 900px;
          margin: auto;
          background: #fff;
          box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
          padding: 25px;
          border-radius: 25px;
          height: 400px;
          transition: all 0.3s;
        }
        @media screen and (max-width: 992px) {
          .blog-slider {
            max-width: 680px;
            height: 400px;
          }
        }
        @media screen and (max-width: 768px) {
          .blog-slider {
            min-height: 500px;
            height: auto;
            margin: 180px auto;
          }
        }
        @media screen and (max-height: 500px) and (min-width: 992px) {
          .blog-slider {
            height: 350px;
          }
        }
        .blog-slider__item {
          display: flex;
          align-items: center;
        }
        @media screen and (max-width: 768px) {
          .blog-slider__item {
            flex-direction: column;
          }
        }
        .blog-slider__item.swiper-slide-active .blog-slider__img img {
          opacity: 1;
          transition-delay: 0.3s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > * {
          opacity: 1;
          transform: none;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
          transition-delay: 0.3s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
          transition-delay: 0.4s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
          transition-delay: 0.5s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
          transition-delay: 0.6s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
          transition-delay: 0.7s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
          transition-delay: 0.8s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
          transition-delay: 0.9s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
          transition-delay: 1s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
          transition-delay: 1.1s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
          transition-delay: 1.2s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
          transition-delay: 1.3s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
          transition-delay: 1.4s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
          transition-delay: 1.5s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
          transition-delay: 1.6s;
        }
        .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
          transition-delay: 1.7s;
        }
        .blog-slider__img {
          width: 300px;
          flex-shrink: 0;
          height: 300px;
          /*background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
          *//*box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
          */border-radius: 20px;
          transform: translateX(-80px);
          overflow: hidden;
          -webkit-transform: translateX(-80px);
          -moz-transform: translateX(-80px);
          -ms-transform: translateX(-80px);
          -o-transform: translateX(-80px);
}
        .blog-slider__img:after {
          content: "";
          position: absolute;
          top: 0;
          right: 0;
          width: 100%;
          height: 100%;
          /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%); */
          border-radius: 20px;
          opacity: 0.8;
        }
        .blog-slider__img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          opacity: 0;
          border-radius: 20px;
          transition: all 0.3s;
        }
        @media screen and (max-width: 768px) {
          .blog-slider__img {
            transform: translateY(-50%);
            width: 90%;
          }
        }
        @media screen and (max-width: 576px) {
          .blog-slider__img {
            width: 95%;
          }
        }
        @media screen and (max-height: 500px) and (min-width: 992px) {
          .blog-slider__img {
            height: 270px;
          }
        }
        .blog-slider__content {
          padding-right: 25px;
        }
        @media screen and (max-width: 768px) {
          .blog-slider__content {
            margin-top: -80px;
            text-align: center;
            padding: 0 30px;
          }
        }
        @media screen and (max-width: 576px) {
          .blog-slider__content {
            padding: 0;
          }
        }
        .blog-slider__content > * {
          opacity: 0;
          transform: translateY(25px);
          transition: all 0.4s;
        }
        .blog-slider__code {
          color: red;
          margin-bottom: 15px;
          display: block;
          font-weight: 500;
        }
        .blog-slider__title {
          font-size: 24px;
          font-weight: 700;
          color: #0d0925;
          margin-bottom: 20px;
        }
        .blog-slider__text {
          color: #4e4a67;
          margin-bottom: 30px;
          line-height: 1.5em;
        }
        .blog-slider__button {
          display: inline-flex;
          background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
          padding: 15px 35px;
          border-radius: 50px;
          color: #fff;
          box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
          text-decoration: none;
          font-weight: 500;
          justify-content: center;
          text-align: center;
          letter-spacing: 1px;
        }
        @media screen and (max-width: 576px) {
          .blog-slider__button {
            width: 100%;
          }
        }
        .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
          bottom: 10px;
          left: 0;
          width: 100%;
        }
        .blog-slider__pagination {
          position: absolute;
          z-index: 21;
          right: 20px;
          width: 11px !important;
          text-align: center;
          left: auto !important;
          top: 50%;
          bottom: auto !important;
          transform: translateY(-50%);
        }
        @media screen and (max-width: 768px) {
          .blog-slider__pagination {
            transform: translateX(-50%);
            left: 50% !important;
            top: 205px;
            width: 100% !important;
            display: flex;
            justify-content: center;
            align-items: center;
          }
        }
        .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
          margin: 8px 0;
        }
        @media screen and (max-width: 768px) {
          .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
            margin: 0 5px;
          }
        }
        .blog-slider__pagination .swiper-pagination-bullet {
          width: 11px;
          height: 11px;
          display: block;
          border-radius: 10px;
          background: #062744;
          opacity: 0.2;
          transition: all 0.3s;
        }
        .blog-slider__pagination .swiper-pagination-bullet-active {
          opacity: 1;
          background: #fd3838;
          height: 30px;
          box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
        }
        @media screen and (max-width: 768px) {
          .blog-slider__pagination .swiper-pagination-bullet-active {
            height: 11px;
            width: 30px;
          }
        }
      }



      /* ==================================general-product-card==================================== */
/* Product Card Container */
.general-product-card {
  width: 100%;
  /* max-width: 280px; */
  background-color: #fff;
  /* border: 1px solid #ddd;
  border-radius: 10px; */
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* margin: 10px; */
  text-align: center;
  padding: 5px 5px 0px 5px;
  /* Image Section */
  .product-card__top-wrapper {
      position: relative;
      aspect-ratio: 1/1.3;
  }

  .S-product-card__img-container {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 1/1.3;
  }

  .crop-image-container {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 133%;
      overflow: hidden;
      /* border-radius: 10px; */
      aspect-ratio: 1/1.3;

  }

  .crop-image-container__inner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      /* height: 100%; */
      background-size: cover;
      background-position: center;
      aspect-ratio: 1/1.3;

  }

  .crop-image-container__img {
      width: 100%;
      height: auto;
      object-fit: cover;
      /* border-radius: 10px; */
      aspect-ratio: 1/1.3;

  }

  .crop-image-container__mask {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      /* border-radius: 10px; */
      pointer-events: none;
  }

  .product-card__bottom-wrapper {
      padding: 5px 5px 0px 5px;
  }

  /* Price Section */
  .product-card__price-wrapper {
      /* padding: 10px 15px;
      margin: 15px; */
      font-size: 16px;
      color: #333;
  }

  .product-card__sale-price {
      font-size: 12px;
      margin-top: auto;
      margin-bottom: auto;
      font-weight: bold;
      color: #FC4070; /* Sale price color */
  }

  /* Add to Cart Button */
  .product-card__add-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px 10px;
      /* margin-left: 15px; */
      background-color: inherit;
      /* color: #1d1b1b; */
      font-size: 14px;
      font-weight: bold;
      border: solid 0.5px #1d1b1b;
      border-radius: 11px;
      cursor: pointer;
      /* transition: background-color 0.3s ease; */
  }



  .product-card__add-btn i {
      margin-right: 5px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .product-card {
          max-width: 100%;
      }
  }
  .row,.col-auto {
      padding: 0px;
      margin: 0px;
  }
}

.general-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
/* Container for the Product List */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19%, 1fr)); /* الأعمدة مرنة حسب الحجم */
  gap: 2px !important;
  justify-items: center;  /* محاذاة العناصر داخل الأعمدة */
  padding: 0px !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-list {
      grid-template-columns: repeat(auto-fill, minmax(24%, 1fr)); /* حد أدنى يتناسب مع الشاشة */
  }
}

@media (max-width: 768px) {
  .product-list {
      grid-template-columns: repeat(auto-fill, minmax(33%, 1fr)); /* عمودين أو ثلاثة حسب الشاشة */
  }
}

@media (max-width: 480px) {
  .product-list {
      grid-template-columns: repeat(auto-fill, minmax(45%, 1fr)); /* عمود واحد أو عمودين */
  }
}
/* Corner label for New or Discount */
.product-label {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #FC4070; /* pink color */
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  /* border-radius: 5px; */
  z-index: 10;
}

.new-label {
  background-color: #28a745; /* green for New products */
}

.discount-label {
  background-color: #ff5733; /* red for Discount */
}

.list-product-header {
    padding: 2em;
}


/* Button label at the bottom */
.bottom-btn-label {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: auto;
  /* transform: translateX(-50%); */
  background-color: #ff9800; /* orange for button label */
  color: white;
  /* padding: 5px 10px; */
  font-weight: bold;
  /* border-radius: 5px; */
  z-index: 10;
}
/* Color Options Column - Positioned to the left of the image */
.color-options {
  position: absolute;
  bottom: 70px;  /* Distance from the top of the card */
  right: 10px; /* Distance from the left side of the card */
  z-index: 20; /* Ensure it's above the product image */
  display: flex;
  flex-direction: column;
  gap: 6px; /* Space between color circles */
  padding: 5px 3px; /* Padding inside the border */
  border: 1px solid #353535; /* Border around the color options column */
  border-radius: 5px; /* Rounded corners for the border */
  background-color: inherit; /* Light background for visibility */
}

/* Individual Color Option Circle - Smaller Size */
.color-option {
  width: 13px;  /* Reduced size of each color circle */
  height: 13px; /* Reduced size of each color circle */
  border-radius: 50%; /* Make it circular */
  /* border: 1px solid #292929; White border for better visibility */
  cursor: pointer; /* Pointer cursor to indicate interactivity */
  transition: transform 0.2s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

/* Hover Effect for Color Circles */
.color-option:hover {
  transform: scale(0.7); /* Slightly enlarge on hover */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); Darker shadow on hover */
}

/* Style for specific color options */
.color-option.red {
  background-color: #ff0000; /* Red color */
}

.color-option.green {
  background-color: #28a745; /* Green color */
}

.color-option.blue {
  background-color: #1e90ff; /* Blue color */
}

.color-option.yellow {
  background-color: #ffeb3b; /* Yellow color */
}

/* Hide the hover image by default */
.general-product-card .crop-image-container__inner .hover-image {
    display: none;
  }

  /* Show the hover image when the card is hovered */
  .general-product-card .crop-image-container__inner:hover .hover-image {
    display: block;
  }

  /* Hide the default image when hovered */
  .general-product-card .crop-image-container__inner:hover .fsp-element {
    display: none;
  }

  .favorite-icon {
    position: absolute;
    left: 10px;
    top: 10px;
  }

  .compare-icon {
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .favorite-icon,.compare-icon {
    font-size: 1em;
  }





  /* Title Section */
  .product-card__goods-title-container {
    padding-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
    text-align: start;
    color: #333;
    display: block;
    width: 100%;
    overflow: hidden;            /* Hide text that overflows */
    /* white-space: nowrap;         Prevent the text from wrapping */
    text-overflow: ellipsis;     /* Show '...' if text overflows */
}

.product-card__goods-title-container a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__goods-title-container a:hover {
    color: #FC4070; /* Shein's pink color */
}


.S-product-card__imgbottom-belt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.blackfridaybelts-shaped img{
  width: 100%;
  border-top-right-radius: 10px;
}

.blackfridaybelts-bg img {
  width: 100%;
  position: absolute;
  z-index: 1000;
}

.blackfridaybelts-bg__text {
  text-align: center;
}

.blackfridaybelts-bg__text-wrapper {
  position: absolute;
  bottom: 5%;
  right: 10%;
}

.product-card__delivery-words {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.delivery-icon-img {
  width: 20%;
  height: 20%;
}
.delivery-words-title__text {
  font-size: 0.7em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #9462ff;
}
.delivery-words-title {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #f4efff;
}
.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-discount {
  color: #fa6338;
  font-size: 0.7em;
  border: 1px solid;
  padding: 1px 3px;
  height: 20px;
}

.price {
  color: #fa6338;
  font-weight: bold;
}

.swiper-wrapper {
/* display: flex; */
width: 100%;
margin: 0 auto;
overflow: hidden;
/* border: #333 solid 1px; */
transition: transform 0.5s ease;
height: 26px;
}

.swiper-slide {
display: flex;
align-items: center;
min-width: 100%;
height: 100%;
font-size: 0.8em;
box-sizing: border-box;
text-align: start;
}

.swiper-slide img {
    width: 7%;
    /* height: 7%; */
}

.swiper-slide a {
color: #cc6e00;
text-decoration: none;
/* height: 7%; */
}

.swiper-slide p {
/* font-size: 18px; */
color: #333;
margin: 0px;
}

.rating {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
}

.rating li {
font-size: 0.7rem; /* Adjust size of stars */
color: gold; /* Star color */
margin-right: 5px; /* Space between stars */
}

/* If you need to make stars even smaller, reduce the font-size */
.rating li.small {
font-size: 12px;
}


/* لون النجوم الممتلئة (المُقَيّمة) باللون الأصفر */
.rating .fa-star {
color: gold;
}
/* لون النجوم الفارغة */
.rating .fa-star-half-alt,
.rating .far.fa-star {
color: #dcdcdc; /* اللون الرمادي للنجوم الفارغة */
}

.new-product {
padding: 0.1em 0.2em !important;
background-color: #3cbd45;
color: #ffffff;
}

/* =============================================================================================== */


  /* Container for the vertical slider */
  .product-card__goods-title-container {
    width: 100%;            /* Smaller width in em */
    height: 26px;            /* Adjust height to fit one item */
    overflow: hidden;       /* Hide items outside the container */
    position: relative;     /* Required for positioning the child elements */
  }

  /* The actual slider (list of text items) */
  .vertical-slider {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    transition: transform 0.5s ease; /* Smooth transition when switching items */
  }

  /* Each text item in the slider */
  .vertical-slider-item {
    display: flex;
    align-items: center;
    width: 100%;          /* Full width of the container */
    height: 26px;          /* Height for one item */
    font-size: 0.875em;    /* Smaller font size in em */
    text-align: left;     /* Left-align the text */
    box-sizing: border-box;  /* Ensures padding doesn't affect the width */
  }

  /* Image styling */
  .vertical-slider-item img {
    width: 1em;           /* Smaller icon size in em */
    height: 1em;          /* Ensure square aspect */
    margin-right: 0.5em;  /* Space between image and text */
  }

  .product-card__goods-title-container .vertical-slider-item a {
      text-decoration: none;
      color: #ffcc00;
  }

  /* Rating container */
  .product-card__goods-title-container .vertical-slider-item .rating {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }

  /* Style for each star */
  .product-card__goods-title-container .vertical-slider-item .rating li {
    font-size: 2.25em; /* Smaller size for stars */
    color: #d3d3d3; /* Default color for empty stars */
    margin-right: 0.5em; /* Space between stars */
    transition: color 0.3s ease; /* Smooth color transition */
  }

  /* Filled star color */
  .product-card__goods-title-container .vertical-slider-item .rating .fa-star {
    color: #ffcc00; /* Gold color for filled stars */
  }

  /* Empty star color */
  .product-card__goods-title-container .vertical-slider-item .rating .far.fa-star {
    color: #d3d3d3; /* Gray color for empty stars */
  }

  /* Hover effect for rating stars */
  .product-card__goods-title-container .vertical-slider-item .rating li:hover,
  .product-card__goods-title-container .vertical-slider-item .rating li:hover ~ li {
    color: #ffcc00; /* Gold color when hovered */
  }
/* =============================================================================================== */


/* =================================================product-section================================== */


 /* Section Styling */
 .product-section-demo1,.product-section-demo2 {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    position: relative;
  /* Header Styling */
  .header-demo1 {
      text-align: center;
      background-color: inherit;
      color: inherit;
      width: 100%;
      margin-bottom: 20px;
      /* border-radius: 10px; */
      padding: 15px 10px;
  }
    .header-demo1 p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
  }

  /* Responsive styling for smaller screens */
  @media (max-width: 1024px) {
    .header-demo1 {
      padding: 15px 10px;
    }

    .header-demo1 p {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 768px) {
      .header-demo1 {
      padding: 10px 5px;
    }

    .header-demo1 p {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
      .header-demo1 {
      padding: 8px 5px;
    }

    .header-demo1 p {
      font-size: 1.25rem;
    }
  }


  /* Header Styling */
  .header-demo2 {
    display: flex;
    justify-content: space-between; /* Aligns title to the left and link to the right */
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
  }

  .header-demo2 p {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .header-demo2 a {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 5px;
  }

  .header-demo2 a:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* Responsive styling for smaller screens */
  @media (max-width: 1024px) {
    .header-demo2 {
      padding: 15px 10px;
    }

    .header-demo2 p {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 768px) {
    .header-demo2 {
      padding: 10px 5px;
    }

    .header-demo2 p {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .header-demo2 {
      padding: 8px 5px;
    }

    .header-demo2 p {
      font-size: 1.25rem;
    }
  }


  /* Slider Styling */
  .slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  /* Card Styling */
  .card {
    width: 100%;
    /* display: flex;
    justify-content: center;
    align-items: center; */

    /* overflow: hidden; */
    /* border-radius: 10px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: auto;
}

  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1.5;
  }

  .slick-slide {
    margin: 0 0.2em;
  }
/* General Styling for Slider Navigation Buttons */
.slick-prev, .slick-next {
    font-size: 0; /* Prevent text from showing */
    color: white; /* Arrow color */
    background-color: rgba(0, 0, 0, 0.5); /* Dark background with slight transparency */
    border-radius: 5px; /* Slightly rounded corners (square with softened edges) */
    border: none;
    height: 40px; /* Small height */
    width: 40px; /* Small width */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%); /* Center vertically */
    cursor: pointer; /* Change cursor to pointer to indicate interactivity */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  }

  /* Styling for .slick-prev (left arrow) */
  .slick-prev {
    left: 10px; /* Position on the left */
  }

  /* Styling for .slick-next (right arrow) */
  .slick-next {
    right: 10px; /* Position on the right */
  }

  /* Add left arrow (<) for .slick-prev */
  .slick-prev::before {
    content: "←"; /* Left arrow */
    font-size: 20px; /* Set font size of the arrow */
    color: white; /* Set color of the arrow */
    font-weight: bold; /* Bold arrow */
  }

  /* Add right arrow (>) for .slick-next */
  .slick-next::before {
    content: "→"; /* Right arrow */
    font-size: 20px; /* Set font size of the arrow */
    color: white; /* Set color of the arrow */
    font-weight: bold; /* Bold arrow */
  }

  /* Hover Effect for Arrows */
  .slick-prev:hover, .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
  }

  /* Slick Dots Styling (for pagination) */
  .slick-dots {
    bottom: -30px; /* Positioning of the dots */
  }

  /* Optional: Adjust dot styles */
  .slick-dots li button:before {
    color: #333; /* Darker color for dots */
    font-size: 12px; /* Small dots */
  }

  .slick-dots li.slick-active button:before {
    color: #000; /* Active dot in dark color */
  }


  .slider .card .price {
    margin: 7px;
    font-weight: bold;
    color: red;
  }

}


.product-section-demo2 {
    background: linear-gradient(to bottom, #ffa48e 0%, #f7e9df 50%, #f8f5f5 100%);
    /* The gradient starts from the top (0%) with #ff7e5f, then at the center (50%) it transitions to #feb47b,
    and at the bottom (100%) it transitions back to #ff7e5f */
    padding: 20px;
    /* border-radius: 10px; */

}

.page-container {
    margin: 3vh 3vw;
}


/* ==============================label-link=================== */

.link-label {
    display: flex;
    flex-direction: row;
}
.link-label .radio-wrapper {
    position: relative;
    height: 38px;
    width: 84px;
    margin: 3px;
    }

    .link-label .radio-wrapper .input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    }

    .link-label .btn {
    --primary: #ff184c;
    --shadow-primary: #fded00;
    --color: white;
    --font-size: 9px;
    --shadow-primary-hue: 180;
    --shadow-secondary-hue: 60;
    --shadow-secondary: hsl(var(--shadow-secondary-hue), 90%, 60%);
    --clip: polygon(11% 0, 95% 0, 100% 25%, 90% 90%, 95% 90%, 85% 90%, 85% 100%, 7% 100%, 0 80%);
    --border: 5px;
    --shimmy-distance: 5;
    --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
    --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
    --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
    --clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
    --clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
    --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
    --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
    color: var(--color);
    text-transform: uppercase;
    font-size: var(--font-size);
    letter-spacing: 3px;
    position: relative;
    font-weight: 900;
    width: 100%;
    height: 100%;
    line-height: 38px;
    text-align: center;
    transition: background 0.2s, 0.3s;
    }

    .link-label .input:checked + .btn {
    --primary: #8B00FF;
    --shadow-primary: #00e572;
    }

    .link-label .input:hover + .btn {
    --primary: #cc133c;
    --font-size: 11px;
    }

  .link-label .btn:after, .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: var(--clip);
    z-index: -1;
    }

    .link-label .btn:before {
    background: var(--shadow-primary);
    transform: translate(var(--border), 0);
    }

    .link-label .btn:after {
    background: var(--primary);
    }

    .link-label .btn__tag {
    position: absolute;
    padding: 1px 4px;
    letter-spacing: 1px;
    line-height: 1;
    bottom: -5%;
    right: 5%;
    font-weight: normal;
    color: hsl(0, 0%, 0%);
    font-size: var(--label-size);
    }

    .link-label .btn__glitch {
    position: absolute;
    top: calc(var(--border) * -1);
    left: calc(var(--border) * -1);
    right: calc(var(--border) * -1);
    bottom: calc(var(--border) * -1);
    background: var(--shadow-primary);
    text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
    clip-path: var(--clip);
    animation: glitch 2s infinite;
    display: none;
    }

    .link-label .input:hover + .btn .btn__glitch {
    display: block;
    }

    .link-label .input:checked + .btn .btn__glitch {
    display: block;
    animation: glitch 5s infinite;
    }

    .link-label .btn__glitch:before {
    content: '';
    position: absolute;
    top: calc(var(--border) * 1);
    right: calc(var(--border) * 1);
    bottom: calc(var(--border) * 1);
    left: calc(var(--border) * 1);
    clip-path: var(--clip);
    background: var(--primary);
    z-index: -1;
    }

    @keyframes glitch {
    0% {
        clip-path: var(--clip-one);
    }

    2%, 8% {
        clip-path: var(--clip-two);
        transform: translate(calc(var(--shimmy-distance) * -1%), 0);
    }

    6% {
        clip-path: var(--clip-two);
        transform: translate(calc(var(--shimmy-distance) * 1%), 0);
    }

    9% {
        clip-path: var(--clip-two);
        transform: translate(0, 0);
    }

    10% {
        clip-path: var(--clip-three);
        transform: translate(calc(var(--shimmy-distance) * 1%), 0);
    }

    13% {
        clip-path: var(--clip-three);
        transform: translate(0, 0);
    }

    14%, 21% {
        clip-path: var(--clip-four);
        transform: translate(calc(var(--shimmy-distance) * 1%), 0);
    }

    25% {
        clip-path: var(--clip-five);
        transform: translate(calc(var(--shimmy-distance) * 1%), 0);
    }

    30% {
        clip-path: var(--clip-five);
        transform: translate(calc(var(--shimmy-distance) * -1%), 0);
    }

    35%, 45% {
        clip-path: var(--clip-six);
        transform: translate(calc(var(--shimmy-distance) * -1%));
    }

    40% {
        clip-path: var(--clip-six);
        transform: translate(calc(var(--shimmy-distance) * 1%));
    }

    50% {
        clip-path: var(--clip-six);
        transform: translate(0, 0);
    }

    55% {
        clip-path: var(--clip-seven);
        transform: translate(calc(var(--shimmy-distance) * 1%), 0);
    }

    60% {
        clip-path: var(--clip-seven);
        transform: translate(0, 0);
    }

    31%, 61%, 100% {
        clip-path: var(--clip-four);
    }
    }

    .link-label .number {
    background: var(--shadow-primary);
    color: #323232;
    font-size: 5.5px;
    font-weight: 700;
    letter-spacing: 1px;
    position: absolute;
    width: 15px;
    height: 6px;
    top: 0;
    left: 81%;
    line-height: 6.2px;
    }






    /* ======================================footer-top-links================================= */


  .footer-top-link-section {
    /* height: 100vh; */
    width: 100%;
    display: grid;
    place-items: center;
  }

  .footer-top-link-row {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-top-link-column {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
  }

  .footer-top-link-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #2c7bfe 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
  }

  .footer-top-link-h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
  }

  .footer-top-link-p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .footer-top-link-icon-wrapper {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }

  /* .footer-top-link-card:hover {
    background-position: 0 100%;
  } */

  .footer-top-link-card:hover .footer-top-link-icon-wrapper {
    background-color: #ffffff;
    color: #2c7bfe;
  }

  .footer-top-link-card:hover .footer-top-link-h3 {
    color: #ffffff;
  }

  .footer-top-link-card:hover .footer-top-link-p {
    color: #f0f0f0;
  }

  @media screen and (min-width: 768px) {
    .footer-top-link-section {
      padding: 0 2em;
    }
    .footer-top-link-column {
      flex: 0 50%;
      max-width: 50%;
    }
  }

  @media screen and (min-width: 992px) {
    .footer-top-link-section {
      padding: 1em 3em;
    }
    .footer-top-link-column {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }




  /* ====================================serarch================================== */

  #search {
    border-radius: none;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
}





/* ==============================================cart-product=================================== */


.cart-product .size span {
    font-size: 11px;
  }

  .cart-product .color span {
    font-size: 11px;
  }

  .cart-product .product-deta {
    margin-right: 70px;
  }

  .cart-product .gift-card:focus {
    box-shadow: none;
  }

  .cart-product .pay-button {
    color: #fff;
  }

  .cart-product .pay-button:hover {
    color: #fff;
  }

  .cart-product .pay-button:focus {
    color: #fff;
    box-shadow: none;
  }

  .cart-product .text-grey {
    color: #a39f9f;
  }

  .cart-product .qty i {
    font-size: 11px;
  }

  .cart-product-card {
    background:#eee;
  }


  /* ===========================================compare-product====================================== */

  .compare-products {
    /* General Styles */
    .card {
        border-radius: 12px; /* Rounded corners for cards */
        overflow: hidden; /* Ensure smooth corner rounding */
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for hover effects */
    }

    /* Hover effect for cards */
    .card:hover {
        transform: translateY(-5px); /* Slightly lift the card */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add subtle shadow effect */
    }

    /* Styling for buttons */
    .btn-outline-primary {
        border-radius: 30px; /* Rounded button for better aesthetics */
        padding: 0.5rem 1.5rem;
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    }


    /* Hover effect for Add to Cart button */
    .transform-hover:hover {
        background-color: #343a40; /* Darken the background color for Add to Cart button */
        transform: translateY(-2px); /* Slightly raise button */
    }

    /* Card Body */
    .card-body {
        padding: 1.5rem;
        background-color: #f8f9fa; /* Light background for card content */
    }

    /* Styling for product image */
    .card-body img {
        transition: transform 0.3s ease; /* Add transition effect for image scaling */
        width: 90%; /* Set image width to 90% of the card */
        height: auto; /* Ensure the height adjusts based on width */
    }

    .card-body img:hover {
        transform: scale(1.05); /* Scale up image slightly when hovered */
    }

    /* Text Styling */
    .card-title a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    .card-title a:hover {
        color: #007bff; /* Change color of product name on hover */
    }

    /* Modify text for price and other details */
    .card-body h5 {
        font-weight: 700;
        color: #212529;
    }

  }


/* ======================================.description-card =========================== */


    /* Custom styling for tabs */
    .description-tabs .nav-tabs .nav-link {
        border-radius: 0.375rem;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 600;
        color: #6c757d;
        transition: all 0.3s ease-in-out;
    }
    .description-tabs .nav-tabs .nav-link.active {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
    }
    .description-tabs .nav-tabs .nav-link:hover {
        background-color: #e6f1ff;
        color: #0056b3;
    }

    /* Tab content styling */
    .description-tabs .tab-content .tab-pane {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    .description-tabs .tab-content .tab-pane.show {
        display: block;
        opacity: 1;
    }

    /* Border and Shadow for Content */
    .description-tabs .tab-pane {
        border: 1px solid #ddd;
        border-radius: 0.375rem;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Tab Border & Hover Effect */
    .description-tabs .nav-tabs {
        border-bottom: 2px solid #ddd;
    }

    .description-tabs .nav-item {
        margin-right: 10px;
    }




    /* ===========================================add-to-cart btn=============================== */

    .btn:hover {
        text-decoration: none;
    }

    .btn:focus {
        outline: none;
    }

    .btn:hover i {
        transform: translateX(5px); /* حركة الأيقونة عند التمرير */
    }

    .btn:hover {
        background-color: rgba(255, 255, 255, 0.1); /* تأثير التظليل عند التمرير */
    }


    /* تأثير الظل عند التمرير */
    .btn-hover-shadow:hover {
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px); /* رفع الزر قليلاً عند التمرير */
    }

    /* تغيير اللون عند التمرير */
    .btn:hover {
        color: white; /* تغيير النص إلى اللون الأبيض عند التمرير */
    }

    /* تأثير الحركة للأيقونة والنص */
    .btn:hover svg, .btn:hover span {
        transform: translateX(5px); /* حركة للأيقونة والنص عند التمرير */
    }


    /* ======================================notes-list====================================== */



    /* ======================================button-slider====================================== */


    /* ======================================header====================================== */

    .search-input-box input {
        border-radius: 0px !important;
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        -ms-border-radius: 0px !important;
        -o-border-radius: 0px !important;
    }

/* .product-name-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;          
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;            
    max-height: 2.8em;              
    direction: rtl;                 
    text-align: right;             
} */
 