/* @font-face {
    font-family: "Vazir";
    src: url(../fonts/Vazir.eot);

    src: url("../fonts/Vazir.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Vazir.woff2")format("woff2"),
        url("../fonts/Vazir.woff") format("woff"),
        url("../fonts/Vazir.ttf") format("truetype");
} */

/* #######################################   Slider  ################################################ */

:root {
  --swiper-theme-color: var(--primary-color);
  --primary-light: #90a4ae;
  --primary-dark: #455a64;
  --on-primary: #fff;
  --background: #f5f7f8;
  --surface: #ffffff;
  --accent: #ff9800; /* optional accent */
  --accent-light: #ffc947;
  --accent-dark: #c66900;
  --success: #4caf50;
  --warning: #ffb300;
  --error: #e53935;
  --text-primary: #212121;
  --text-secondary: #757575;
  --divider: #e0e0e0;
}


/* WebKit Browsers (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
  width: 0.5rem;
}
*::-webkit-scrollbar-track {
  background: #fff;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 100vw;
  border: 1px solid var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Firefox-only using @-moz-document */
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #fff;
  }
}


.main_swiper_full {
    width: 100%;
    height: calc(100vh - 7.875rem);
}

.main_swiper_full .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_swiper_full .swiper-slide img {
    display: block;
    width: 100% ;
    height: 100% ;
    object-fit: fill;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--primary-color);
}
.main_swiper_btn::after{
    font-size:22px !important;
	font-weight:600;
	opacity:0.8;
}

.swiper-pagination {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .main_swiper_full {
        width: 100%;
        height: 230px !important;
        margin-bottom: 0px;
    }

   .main_swiper_full .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

   .main_swiper_full .swiper-slide img {
        display: block;
        width: 100% ;
        height: 100% ;
        object-fit: fill;
    }
}

/* .carousel-indicators [data-bs-target] {
    background-color: gray;
}

.carousel-indicators>.active {
    background-color: var(--primary-color);
}

.search-container {
    position: relative;
}

.search-icon {
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-box {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 40px;
    left: 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-box input {
    width: 200px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
} */

/* #######################################   DropDown [Rivas System]  ################################################ */

.dropdown-toggle::after {
    display: none !important;
}

.nav-link svg {
    width: 16px;
    height: 16px;
    font-size: 0.875rem;
    vertical-align: middle;
}

@media (min-width: 576px) {
    .nav-link svg {
        width: 8px;
        height: 8px;
    }
}

@media (min-width: 768px) {
    .nav-link svg {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 992px) {
    .nav-link svg {
        width: 16px;
        height: 16px;
    }
}

.mini-dropdown:hover > .mini-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s;
}

.mini-dropdown-submenu:hover > .mini-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mini-dropdown-menu {
    text-align: right;
    /* width: 250px; */
    /* left: -75%; */
}

.mini-dropdown-item {
    color: #6c757d;
    /* رنگ خاکستری محو برای متن */
    font-size: 0.875rem;
    /* کوچک کردن متن */
    padding: 10px 20px;
    transition: ease-in all 0.2s;
    /* افزایش فاصله بین گزینه‌ها */
}

.mini-dropdown-item:hover {
    color: var(--primary-color);
    /* رنگ بنفش برای متن هنگام هاور */
    background-color: initial;
    font-size: 0.95rem;
    /* حفظ رنگ پس‌زمینه پیش‌فرض */
}

.mini-dropdown-submenu {
    position: relative;
}

.mini-dropdown-submenu .mini-dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: -1px;
    display: none;
}

.mini-dropdown-submenu .mini-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-dropdown-submenu .mini-dropdown-toggle svg {
    transform: rotate(90deg);
    transition: fill 0.3s;
}

.mini-dropdown-item:hover svg path {
    fill: var(--primary-color);
}

/* ############################################ Mega Dropdown ########################################################## */

.mega-dropdown {
    position: relative;
    z-index: 1001;
    padding-bottom: 3px;
}

.mega-dropdown .dropdown-menu {
    display: none;
    direction: ltr;
    position: fixed;
    width: 200px;
    min-height: 400px;
    max-height: 400px;
    right: 0;
    margin-right: 50px;
    margin-top: 3px;
    border: 1px solid #ddd;
    border-radius: 0px 0px 15px 0px !important;
    background-color: #f8f9fa;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden !important;
    transform: translateY(-20px);
    z-index: 1000;
}

.mega-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-dropdown-content {
    display: none;
    position: fixed;
    min-width: 1000px;
    min-height: 400px;
    max-height: 400px;
    right: 0;
    margin-top: 3px;
    margin-right: 250px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 0px 0px 0px 15px;
    text-align: start;
    background: #ffffff;
    opacity: 0;
    transform: translateY(-20px);
    z-index: 1000;
}

.mega-dropdown:hover .mega-dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-dropdown-section {
    display: none;
}

.mega-dropdown-section.active {
    display: block;
}

.mega-dropdown .dropdown-item {
    transition: all 0.3s ease-in;
}

.mega-dropdown .dropdown-item:hover {
    background-color: #e9ecef;
    color: var(--primary-color);
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mega-dropdown-content .flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
    align-content: flex-start;
    height: 350px;
    column-gap: 20px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
    width: auto;
}

.mega-dropdown-content .flex-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    white-space: nowrap;
}

.mega-dropdown-content .item-title {
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

.mega-dropdown-content .item-title span {
    font-size: 18px;
}

.mega-dropdown-content .item-title svg {
    margin-right: 5px;
    width: 15px;
    height: 15px;
    color: #000000;
}

.mega-dropdown-content .sub-items a {
    margin-top: 5px;
    margin-left: 20px;
    transition: all 0.5s ease;
    text-decoration: none;
}

.mega-dropdown-content .sub-item a {
    font-size: 15px;
    color: #6c757d;
    margin-left: 15px;
    transition: all 0.5s ease;
}
.mega-dropdown-content .sub-item {
    font-size: 15px;
    color: #6c757d;
    margin-left: 15px;
    transition: all 0.5s ease;
}

.mega-dropdown-content .item-title:hover {
    color: var(--primary-color);
    transform: translateX(-10px);
    cursor: pointer;
}

.mega-dropdown-content .sub-item a:hover {
    color: var(--primary-color);
}
.mega-dropdown-content .sub-item:hover {
    transform: translateX(-10px);
    cursor: pointer;
}

/* ############################################ Options Card ########################################################## */



.Option_Card_Title {
    width: 100%;

    display: flex;
    align-items: center;
}

.Option_Card_Left_Line {
    flex: 1;
    height: 2px;
    margin-right: 50px;
    background-image: linear-gradient(
        -90deg,
        var(--primary-color) 10%,
        #00000000
    );
}

.Option_Card_Right_Line {
    flex: 1;
    height: 2px;
    margin-left: 50px;
    background-image: linear-gradient(
        90deg,
        var(--primary-color) 10%,
        #00000000
    );
}



@media (max-width: 590px) {
    .Option_Card_Center_Line {
        font-size: 15px;
    }

    .Option_Card_Right_Line {
        margin-left: 25px;
    }

    .Option_Card_Left_Line {
        margin-right: 25px;
    }
}



.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 575.98px) {
  .advantages {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages {
    gap: 0.75rem;
  }
}
.advantages .advantage_item-1 {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #9221a5;
  gap: 0;
  padding-top: 0.5rem;
  border-radius: 15%;
  width: 316px; /* تغییر یافته متناسب با نسبت جدید */
  height: 221px; /* تغییر یافته متناسب با نسبت جدید */
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}

.advantages .advantage_item-1:hover {
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.03);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35) !important;
}

@media screen and (max-width: 575.98px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 100px !important;
    height: 70px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 150px !important;
    height: 105px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 208px !important;
    height: 146px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 283px !important;
    height: 198px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

.advantages .advantage_item-1_icon {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 50%;
  color: #ffffff;
  font-size: 5rem;
}
.advantages .advantage_item-1_icon img {
  height: 90%;
}
.advantages .advantage_item-1_icon-1 img {
  scale:1.2;
}

@media screen and (max-width: 575.98px) {
  .advantages .advantage_item-1_icon {
    font-size: 1.8rem;
    height: 60%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-1_icon {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .advantages .advantage_item-1_icon {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .advantages .advantage_item-1_icon {
    font-size: 4.8rem;
  }
}
.advantages .advantage_item-1_icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages .advantage_item-1_text {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 0;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 575.98px) {
  .advantages .advantage_item-1_text {
    padding-bottom: 0;
    font-size: 0.5rem;
    padding-inline: 0;
    height: 40%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-1_text {
    padding-bottom: 0;
    font-size: 0.875rem;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .advantages .advantage_item-1_text {
    padding-bottom: 0;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .advantages .advantage_item-1_text {
    padding-bottom: 0;
    font-size: 1.5rem;
  }
}
/* ===== Advantage Item 1 ===== */
.advantages .advantage_item-1 {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #9221a5;
  gap: 0;
  padding-top: 0.5rem;
  border-radius: 15%;
  width: 208px; /* اندازه max در md */
  height: 146px; 
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}

.advantages .advantage_item-1:hover {
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.03);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35) !important;
}

@media screen and (max-width: 575.98px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 100px !important;
    height: 70px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 150px !important;
    height: 105px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .advantages .advantage_item-1 {
    padding-top: 0 !important;
    width: 208px !important;
    height: 146px !important;
    border-radius: 15% !important;
    gap: 0 !important;
  }
}

/* ===== Advantage Item 2 ===== */
.advantages .advantage_item-2 {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ffffff;
  gap: 0rem;
  padding-top: 0.5rem;
  border-radius: 1rem; /* دسکتاپ اصلی */
  width: 208px; 
  height: 146px; 
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
  padding-block: 0.5rem;
}

.advantages .advantage_item-2:hover {
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.03);
  box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.2) !important;
}

/* تا 400px */
@media screen and (max-width: 399.98px) {
  .advantages .advantage_item-2 {
    width: 100px !important;
    height: 70px !important;
    border-radius: 0.48rem !important; /* 1rem × (100/208) */
    gap: 0 !important;
  }
}

/* از 400px تا 575.98px */
@media screen and (min-width: 400px) and (max-width: 575.98px) {
  .advantages .advantage_item-2 {
    width: 120px !important;
    height: 84px !important;            /* 120 × (146/208) ≈ 84 */
    border-radius: 0.58rem !important;   /* 1rem × (120/208) ≈ 0.58 */
    gap: 0 !important;
  }
}

/* 576px تا 767.98px */
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-2 {
    width: 150px !important;
    height: 105px !important;
    border-radius: 0.72rem !important; /* 1rem × (150/208) */
    gap: 0 !important;
  }
}

/* 768px به بالا (دسکتاپ) */
@media screen and (min-width: 768px) {
  .advantages .advantage_item-2 {
    width: 208px !important;
    height: 146px !important;
    border-radius: 1rem !important; /* دسکتاپ اصلی */
    gap: 0 !important;
  }
}

.advantages .advantage_item-2_icon {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 50%;
  color: #424653;
  font-size: 5rem;
}
.advantages .advantage_item-2_icon img {
  height: 100%;
}

@media screen and (max-width: 575.98px) {
  .advantages .advantage_item-2_icon {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-2_icon {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .advantages .advantage_item-2_icon {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .advantages .advantage_item-2_icon {
    font-size: 4.8rem;
  }
}
.advantages .advantage_item-2_icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages .advantage_item-2_text {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 0;
  padding-bottom: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #424653;
}
@media screen and (max-width: 575.98px) {
  .advantages .advantage_item-2_text {
    padding-bottom: 0;
    font-size: 0.6rem;
    padding-inline: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .advantages .advantage_item-2_text {
    padding-bottom: 0;
    font-size: 0.875rem;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .advantages .advantage_item-2_text {
    padding-bottom: 0;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .advantages .advantage_item-2_text {
    padding-bottom: 0;
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=main.css.map */
/* ############################################ Banner ########################################################## */

.Banner_Div {
    position: relative;
    width: 100%;
    height: 250px; /* استفاده از واحد نسبی برای ارتفاع */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.Banner_Div img {
    width: 100%;
    object-fit: cover; /* مهم: تطبیق تصویر */
    object-position: center; /* مرکز */
}

.Banner_IMG_Filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* تیره کردن */
    z-index: 1;
}


/* واکنش‌گرایی برای موبایل */
@media (min-width: 1400px) {
    .Banner_Div {
        height: 350px; /* افزایش ارتفاع برای صفحه‌های کوچک‌تر */
    }
}

@media (max-width: 768px) {
    .Banner_Div {
        height: 135px; /* افزایش ارتفاع برای صفحه‌های کوچک‌تر */
    }

    .Banner_Content h1 {
        font-size: 1.5rem; /* اندازه ثابت برای موبایل */
    }

    .Banner_Content h2 {
        font-size: 1rem;
    }

    .btn-banner {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .Banner_Div {
        height: 105px; /* ارتفاع بیشتر برای موبایل‌های کوچکتر */
    }

    .Banner_Content h1 {
        font-size: 1.2rem; /* کاهش اندازه متن */
    }

    .Banner_Content h2 {
        font-size: 0.9rem;
    }

    .btn-banner {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}


/* ############################################ Product Card ########################################################## */

.product-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-image {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
}

.product-details {
    display: flex;
    width: 50%;
    padding-right: 100px;
    padding-left: 150px;
    flex-direction: column;
    justify-content: center;
    /* background-color: red; */
}

.product-image img {
    max-width: 450px;
    max-height: 450px;
    transition: all ease-in 0.5s;
}

.product-image img:hover {
    scale: 1.05;
}

.product-title {
    color: var(--primary-color);
    font-size: 22px;
    text-align: start;
    margin-bottom: 20px;
}

.product-description {
    line-height: 35px;
    color: rgb(59, 59, 59);
    text-align: justify;
    text-align-last: start;
}

@media (max-width: 769px) {
    .product-container {
        display: block;
        justify-content: center;
        width: 100%;
    }

    .product-image {
        width: 100%;
    }

    .product-image img {
        max-width: 300px;
        max-height: 300px;
    }

    .product-details {
        width: 100%;
        margin-top: 25px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .product-title {
        text-align: center;
        font-size: 20px;
    }

    .product-description {
        line-height: 25px;
    }
}

@media (min-width: 768px) {
    .product-image img {
        max-width: 300px;
        max-height: 300px;
    }

    .product-details {
        padding-right: 0px;
        padding-left: 50px;
    }

    .product-title {
        color: var(--primary-color);
        font-size: 20px;
        margin-bottom: 20px;
    }

    .product-description {
        line-height: 22px;
    }
}

@media (min-width: 1024px) {
    .product-image img {
        max-width: 350px;
        max-height: 350px;
    }

    .product-details {
        padding-right: 50px;
        padding-left: 100px;
        flex-direction: column;
        justify-content: center;
    }

    .product-description {
        line-height: 25px;
    }
}

@media (min-width: 1100px) {
    .product-image img {
        max-width: 350px;
        max-height: 350px;
    }

    .product-details {
        padding-right: 50px;
        padding-left: 100px;
        flex-direction: column;
        justify-content: center;
    }

    .product-description {
        line-height: 45px;
    }
}

/* #######################################   Counseling  ################################################ */

.Counseling-flipped-image {
    transform: scaleX(-1);
}

.Counseling-section-container {
    padding: 20px;
    width: 95%;
    margin: 0 auto;
}

.Counseling-custom-button {
    width: 200px;
    height: 75px;
    margin-top: 50px;
    font-size: 18px;
    color: white;
    background: linear-gradient(
        180deg,
        var(--primary-color) 0%,
        var(--primary-second-color) 157.98%
    );
    display: flex;
    justify-content: center;
    align-items: center;
}

.Counseling-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.Counseling-buttons-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.Counseling-image {
    width: auto;
    max-width: 150px;
    height: auto;
}

/*
@media (max-width: 1200px) {
    .Counseling-custom-button {
        width: 150px;
        height: 50px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .Counseling-buttons-container {
        flex-direction: column;
    }

    .Counseling-image {
        width: 500px;
        height: 300px !important;
    }
}

@media (max-width: 770px) {
    .text-center>h3 {
        font-size: 18px;
    }

    .Counseling-image {
        width: 400px;
        height: 300px !important;
    }
}

@media (max-width: 550px) {
    .text-center>h3 {
        font-size: 15px;
    }

    .Counseling-image {
        width: 80px !important;
        height: 250px !important;
    }
} */

@media (max-width: 770px) {
    .Counseling-image {
        width: 95px;
        height: 300px !important;
    }
}

/* #######################################   Services Slider  ################################################ */

.service-card-responsive {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.service-card {
    --bs-gutter-x: 0rem;
    position: relative;
    width: 300px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 5px;
    overflow: hidden;
}

.service-banner {
    position: relative;
    width: 100% !important;
    height: 130px;
    background: linear-gradient(
        175deg,
        var(--primary-color) 0%,
        var(--primary-second-color) 100%
    );
    border-radius: 0% 100% 27% 73% / 38% 0% 100% 62%;
}

.service-banner-content {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
}

.service-banner-content h1 {
    margin-top: 20px;
    font-size: 1.2rem;
}

.service-banner-content p {
    margin-top: 20px;
    font-size: 1rem;
}

.service-body {
    padding: 20px;
}

.service-body p {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px 0;
}

.service-rating svg {
    margin-left: 2px;
}

.service-price-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-price {
    text-align: center;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin: 10px 0;
}

.service-discounted-price {
    text-align: center;
    font-size: 1.5rem;
}

.service-order-btn {
    padding: 10px 20px;
}

.service-order-btn-div {
    display: flex;
    justify-content: center;
}

.service-Menu-Choser-Responsive {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
}

.service-Menu-Choser {
    width: 65%;
    margin-top: 25px;
}

.service-btn-whiteBG {
    background-color: white;
    font-size: 1em;
    border: 1px black solid !important;
}

.service-btn-coloredBG {
    background-color: var(--primary-color) !important;
    color: white !important;
}

@media (max-width: 768px) {
    .service-btn-whiteBG {
        font-size: 0.8em;
    }
}

/* #######################################   Customers Slider  ################################################ */

/* سبک اسلایدر */
.customers_slider {
    width: 100%;
    padding: 0 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.customers_slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customers_slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    /* تنظیم حداکثر عرض تصاویر */
    border-radius: 10px;
    object-fit: cover;
}

/* سبک دکمه‌های ناوبری */
.customers_slider .swiper-button-next,
.customers_slider .swiper-button-prev {
    color: #9c27b0;
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 55%;
    z-index: 10;
}

.customers_slider .swiper-button-next::after,
.customers_slider .swiper-button-prev::after {
    font-size: 20px;
    color: var(--primary-color);
	font-weight:600;
	opacity:0.8;
}

.customers_slider .swiper-button-next {
    left: 10px;
    /* قرار گرفتن فلش بعدی در سمت چپ */
}

.customers_slider .swiper-button-prev {
    right: 10px;
    /* قرار گرفتن فلش قبلی در سمت راست */
}

/* تنظیمات ویژه برای گوشی‌ها */
@media (max-width: 768px) {
    .customers_slider .swiper-slide {
        width: 25%;
        /* تنظیم عرض اسلایدها برای نمایش 4 تصویر در گوشی */
    }

    .customers_slider .swiper-slide img {
        max-width: 80%;
        /* کاهش حداکثر عرض تصاویر */
        margin: auto;
        /* تنظیم خودکار فاصله‌ها */
    }
}

/* #######################################  About Company  ################################################ */

.AboutCompany-container {
    padding-top: 50px;
    margin-bottom: 50px;
}

.AboutCompany-main-div {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* 550px - 50px */
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    background-color: transparent;
    /* اضافه کردن پس‌زمینه سفید */
    cursor: pointer;
    /* نمایش نشانگر کلیک */
}

.AboutCompany-shadow-div {
    position: absolute;
    top: -20px;
    /* 20px بالاتر */
    left: 125px;
    /* 20px چپ تر */
    width: 100%;
    max-width: 500px;
    height: 80%;
    background: linear-gradient(119.13deg, var(--primary-color) 11.18%, var(--primary-second-color) 83.5%);
    z-index: 1;
    border-radius: 20px;
}

.AboutCompany-content-div {
    position: relative;
    width: 100%;
    height: 80% !important;
    padding-top: 70%;
    /* برای حفظ نسبت تصویر */
    z-index: 2;
}

.AboutCompany-content-div iframe {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0px !important;
    width: 99% !important;
    height: 80% !important;
    /* object-fit: cover !important;  */
    border-radius: 20px;
    display: none;
}


.AboutCompany-content-div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
}

.AboutCompany-content-div svg {
    position: absolute;
    width: 115px;
    height: 115px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.AboutCompany-text-section {
    line-height: 2.5;
    text-align: justify;
    /* افزایش ارتفاع خطوط متن */
}

.AboutCompany-text-container {
    max-width: 470px;
}



.AboutCompanyVideo .embed-responsive {
    position: relative;
    padding-bottom: 56.30%;
    height: 0;
    overflow: hidden;
}

.AboutCompanyVideo .embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-playing {
    display: block !important;
}

.hidden {
    display: none !important;
}

.AboutCompany-main-div iframe {
    width: 100%;
    height: 100%;
    display: none;
}


/* ############################################ Quastion Sort ########################################################## */
{{--

.accordion_edits{
width:80%

}
@media screen and (max-width:768px){
.accordion_edits{
width:100%

}
}
.accordion-item {
    /* width: 50%; */
    margin-top: 25px;
}

.accordion-item {
    /* background-color: aqua; */
    border-radius: 10px !important;
    border: 1px gray solid !important;
}

.accordion-button {
    border-radius: 10px !important;
    /* background-color: red; */
}

.accordion-body {
    text-align: justify;
}

	--}}

/* ############################################ 2 Card Slider ########################################################## */

/* ############################################ 2 Card Slider ########################################################## */

.TwoCard-slider-container {
    width: 100%;
    padding: 0px 5%;
    position: relative;
}

.TwoCard-swiper {
    padding: 0px 5%;
}

.TwoCard-slide {
    /* background-color: #f8f9fa; */
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    background-color: transparent !important;
    align-items: center;
    color: #333;
    height: 600px;
}

/* دکمه‌های ناوبری */
.swiper-button-next,
.swiper-button-prev {
    background-color: transparent; /* پس‌زمینه نامرئی */
    border: none; /* بدون حاشیه */
    width: 40px; /* عرض دکمه */
    height: 40px; /* ارتفاع دکمه */
    color: #000; /* رنگ فلش */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px; /* اندازه فلش */
    text-shadow: none; /* سایه متن را حذف می‌کنیم */
}

.swiper-button-next {
    right: 10px; /* فاصله از راست */
}
.swiper-button-prev {
    left: 10px; /* فاصله از چپ */
}

/* ############################################ Why Us Slider ########################################################## */
{{--
.whyus-container {
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding-top: 100px;
    gap: 30px;
    /* فاصله بین کارت‌ها */
}

.whyus-main {
    position: relative;
    width: 400px;
    height: 400px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: visible;
    /* برای اطمینان از نمایش تصویر که از دیو بیرون می‌آید */
    margin: 0px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
}



.swiper-slide.TwoCard-slide .whyus-main .whyus-image {
    position: absolute;
    top: -100px;
    /* نصف ارتفاع تصویر را به بالا منتقل کنید */
    left: 50%;
    transform: translateX(-50%);
    width: 80% !important;
    height: auto !important;
    border-radius: 15px;
    /* حاشیه گرد شده */
    z-index: 10;
    /* بالا بودن تصویر نسبت به سایر عناصر */
}

.whyus-content {
    width: 100%;
    /* background-color: red; */
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    margin-top: 30%;
    z-index: 1;
}

.whyus-content h2 {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 25px;
}

.whyus-content p {
    display: -webkit-box; /* Required for line clamping */
    text-align: justify;
    font-size: 0.9em;
    line-height: 1.6;
    -webkit-box-orient: vertical; /* Defines the orientation of the box */
    -webkit-line-clamp: 8; /* Number of lines to show before truncating */
    overflow: hidden; /* Hide overflow content */
    text-overflow: ellipsis; /* Add ellipsis (...) at the end */
}

.whyus-prev-icon {
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='00000' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 0 0 .708L10.293 8 4.646 13.646a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708l-6-6a.5.5 0 0 0-.708 0z'/%3e%3c/svg%3e");
}

.whyus-next-icon {
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='00000' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
    .whyus-main {
        width: 300px;
        height: 350px;
    }

    .whyus-content h2 {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .whyus-content p {
        font-size: 0.8em;
    }
}

@media (max-width: 570px) {
    .whyus-main {
        width: 300px;
        height: 280px;
    }

    .whyus-content h2 {
        font-size: 0.8em;
        margin-bottom: 10px;
    }

    .whyus-content p {
        font-size: 0.65em;
    }
}

@media (max-width: 450px) {
    .whyus-main {
        width: 300px;
        height: 270px;
    }

    .whyus-content h2 {
        font-size: 0.7em;
        margin-bottom: 10px;
    }

    .whyus-content p {
        font-size: 0.6em;
    }
}

@media (max-width: 400px) {
    .whyus-main {
        width: 300px;
        height: 300px;
    }

    .whyus-image {
        top: -50px;
    }

    .whyus-content h2 {
        font-size: 0.65em;
        margin-bottom: 10px;
    }

    .whyus-content p {
        font-size: 0.55em;
    }


}
	--}}


.why_us_swiper {
  width: 100%;
  height: 100%;
}

.why_us_slide {
  min-width: 250px;
  height: 445px;
  min-height: 445px;
  max-height: 445px;
  user-select: none;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  background-color:#f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why_us_card {
  height: 445px;
  max-height: 445px;
  min-height: 445px;
  background-color: #ffffff;
  border-color: var(--primary-color) !important;
}

.why_us_pic {
  width: 250px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
@media screen and (max-width: 400px) {
  .why_us_pic {
    width: 220px !important;
    height: 176px !important;
  }
}
.why_us_pic img {
  transform: translateY(-22%);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(156, 39, 176, 0.2);
  -webkit-box-shadow: 0px 14px 35px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 14px 35px 5px rgba(0, 0, 0, 0.08);
  object-fit:cover;
}

.why_us_content_title {
  font-weight: 600;
  font-size: 1.2rem;
}

.why_us_content_text {
  font-weight: 600;
  font-size: 0.96rem;
}

.swiper_btn_color {
  color: #9c27b0;
}
.swiper_btn_color::after {
  font-size: 1.5rem;
}

.swiper_pagination_color .swiper-pagination-bullet {
  background-color: var(--primary-color);
}

/* ############################################ 2 Card Slider ########################################################## */

.nav_direction {
    display: flex;
    justify-content: end;
    align-items: center;
	flex-direction:row-reverse;
	gap:.5rem;
}
.mySwiper2 {
    width: 100%;
    height: calc(100vh - 8.8125rem) !important;
}
 @media screen and (max-width:768px) {
    .mySwiper2{
        width: 100%;
        height: auto !important;

    }
}


.card_direction {
    z-index: 9;

}
.master-menu-width {
    width: 100% !important;
    max-width: none !important;
}

.checkout-icon-resizer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 45px;
    height: 45px;
    transform: translateY(-19px);
}

.checkout_direction {
    display: flex;
    align-items: center;
    justify-content: start;
}

/*.custom-control-input {
    height: 100%;
  transform: translateY(-10px);
  display: flex !important;
  background-color: red !important;
  width: 10px !important;
  color: red;
  opacity: 1;
  visibility: visible;
}*/
.custom-control-input2 {
	height: 100%;
  transform: translateY(-10px);
  display: flex !important;

}
input[type="checkbox"].custom-control-input2 {
	height: 100%;
  transform: translateY(0);
  display: flex !important;

}

.swiper.TwoCard-swiper {
height: auto !important;
}
@media screen and (max-width:768px){
.Option_Card.container{
  max-width: unset !important;
}
}

@media (max-width: 1400px) {
    .AboutCompany-text-section {
        font-size: 0.9rem;
        /* کاهش سایز فونت برای عرض کمتر از 1200px */
    }

    .AboutCompany-shadow-div {
        width: 88%;
        left: 30px;
    }
}
@media (max-width: 1199px) {
    .AboutCompany-text-section {
        font-size: 0.9rem;
        /* کاهش سایز فونت برای عرض کمتر از 1200px */
    }

    .AboutCompany-shadow-div {
        width: 95%;
        left: -13px;
    }
}
@media (max-width: 770px) {
    .AboutCompany-shadow-div {
        /* top: -10px; */
        left: -3px;
        max-width: 92%;
    }

    /* .AboutCompany-main-div {
        max-width: 90%;
    } */

    .AboutCompany-content-div {
        padding-top: 56.25%;
        /* نسبت تصویر 16:9 */
    }
}

@media (max-width: 440px) {

    .AboutCompany-main-div{
        left: 10px;
        scale: 0.9;
    }
    .AboutCompany-shadow-div {
        top: -5px;
        left: 10px;
        height: 75%;
        scale: 0.85;
    }

    .AboutCompany-content-div {
        scale: 0.90;
        padding-top: 75%;
        /* افزایش نسبت تصویر برای کوچکتر شدن */
    }
}

.main_swiper_full {
    width: 100%;
    height: calc(100vh - 7.875rem);
}

@media screen and (max-width: 575.98px) {
    .main_swiper_full {
        width: 100%;
        height: 230px !important;
        margin-bottom: 0px;
    }
}
@media screen and (min-width:576px) and (max-width: 767.98px) {
    .main_swiper_full {
        width: 100%;
        height: 300px !important;
        margin-bottom: 0px;
    }
}
@media screen and (min-width:768px) and (max-width: 991.98px) {
    .main_swiper_full {
        width: 100%;
        height: 400px !important;
        margin-bottom: 0px;
    }
}





/* ############################################ FAQ ########################################################## */



.faq_swiper  {
  width: 100%;
  height: 400px;
}
.faq_slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq_slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.the_accordion_item {
  border-radius: 20px !important;
  overflow: hidden;
}

.the_accordion_header {
  height: 190px;
  background-color: var(--primary-color);
  border-radius: 0% 100% 27% 73%/38% 0% 100% 62%;
  overflow: hidden;
  transition: height 0.9s ease;
}

.the_accordion_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  transition: all 0.9s ease;
  font-weight: 600;
}
.the_accordion_button:not(.collapsed) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
}
.the_accordion_button:not(.collapsed)::before {
  position: absolute;
  width: 100%;
  height: 23%;
  content: "";
  background-color: #fff;
  bottom: -1px;
  right: 0;
  border-radius: 0% 100% 50% 50%/100% 100% 0% 0%;
}
.the_accordion_button::after {
  display: none;
}

.the_accordion_body {
  height: 200px;
  overflow-y: scroll;
 
  padding-top: 0.25rem !important;
  background-color: #ffffff;
  scrollbar-color: var(--primary-color) #ffffff;
}
@media screen and (max-width: 768px) {
  .the_accordion_body {
    padding-block: 1rem;
    padding-inline: 1.5rem;
  }
}

.faq_button_next::after,
.faq_button_prev::after {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 600;
}

.faq_button_next {
  left: 0 !important;
}

.faq_button_prev {
  right: 0 !important;
}

.the_accordion_button:not(.collapsed),
.the_accordion_collapse.show + .the_accordion_header .the_accordion_button {
  align-items: flex-start !important;
  padding-top: 1.3rem !important;
  background-color: var(--primary-color) !important;
  color: #fff !important;
}/*# sourceMappingURL=main.css.map */

/* #######################################   products-slider-block  ################################################ */



/*========== Responsive typography ==========*/
/*=============== BASE ===============*/
.product_main {
  overflow: hidden;
}

.vajar_color {
  --color-plan: var(--primary-color);
}

/*=============== HOME ===============*/
.product_article {
  position: relative;
  width: 100%;
  height: 100%;
}

.product_panel-1 {
  width: 100%;
  height: 30%;
  background: linear-gradient(256deg, var(--primary-color) 12%, #000 118%);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1199.98px) {
  .product_panel-1 {
    width: 35%;
    height: 100%;
    left: 0;
    top: 0;
  }
}
.product_panel-2 {
  width: 100%;
  height: 70%;
  background-color: #f3f3f3;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 1199.98px) {
  .product_panel-2 {
    width: 65%;
    height: 100%;
    right: 0;
    top: 0;
  }
}

.product_content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}

.product_data {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 1199.98px) {
  .product_titles {
    height: 30%;
  }
}

.product_subtitle {
  font-size: 2rem;
  font-family: 800;
  text-align: center;
  height: 100%;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #ffffff;
}
@media screen and (min-width: 1199.98px) {
  .product_subtitle {
    color: #252525;
    text-align: right;
    align-items: start;
  }
}

.product_img {
  max-width: initial;
  width: 350px;
  transform: translate(-10rem, -5rem);
  opacity: 0;
  transition: transform 1.1s 0.8s, opacity 1.1s 0.8s;
}
@media screen and (min-width: 575.98px) {
  .product_img {
    width: 370px;
  }
}
@media screen and (min-width: 1199.98px) {
  .product_img {
    width: 680px;
  }
}

.product_info {
  text-align: justify;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
}
.product_info-child {
  display: -webkit-box;
  padding-inline: 0.5rem;
  column-gap: 1.5rem;
  text-align: justify;
  font-weight: 500;
  color: #252525;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp:7;
  -webkit-line-clamp: 7;
  overflow: hidden;
  white-space: unset;
}
@media screen and (min-width: 767.98px) and (max-width: 1199.98px) {
  .product_info-child {
    padding-top: 1rem;
    padding-right: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 9;
    -webkit-line-clamp: 9;
    overflow: hidden;
    white-space: unset;
  }
}
@media screen and (min-width: 1199.98px) {
  .product_info-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 7;
    -webkit-line-clamp: 7;
    overflow: hidden;
    white-space: unset;
  }
}
.product_info-button-container {
  position: absolute;
  width: 100%;
  top: 26.1%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1199.98px) {
  .product_info-button-container {
    top: 75%;
    width: 65%;
  }
}
.product_info-button {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  column-gap: 0.5rem;
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 1rem;
  z-index: 90;
  background-color: var(--primary-color);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
}
.product_info-button span {
  font-weight: 600;
  transition: transform 0.3s;
}
.product_info-button i {
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.product_info-button:hover i {
  transform: translateX(-0.5rem);
  color: #fff;
}
.product_info-button:hover span {
  color: #fff;
  transform: scale(1.1);
}

@media screen and (min-width: 1199.98px) {
  .product_data {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) 45% !important;
    grid-template-rows: repeat(5, 1fr) !important;
    grid-column-gap: 0px !important;
    grid-row-gap: 0px !important;
  }
  .product_image {
    grid-area: 1/5/6/6;
  }
  .product_titles {
    padding-right: 2rem;
    grid-area: 3/1/2/5;
  }
  .product_info {
    padding-right: 2rem;
    grid-area: 4/1/3/5;
  }
}
@media screen and (max-width: 767.98px) {
  .product_data {
    display: grid;
    justify-items: center;
    grid-template-columns: 100% repeat(4, 1fr);
    grid-template-rows: 30% repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 1rem;
  }
  .product_titles {
    grid-area: 1/1/6/2;
  }
  .product_image {
    padding-top: 1rem;
    grid-area: 2/1/2/2;
  }
  .product_info {
    grid-area: 4/1/3/2;
  }
}
/* Swiper class */
.product_swiper {
  height: 600px !important;
}
@media screen and (max-width: 1199.98px) {
  .product_swiper {
    height: 780px !important;
  }
}

.product_swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 0 !important;
  right: 5px !important;
  left: auto !important;
  bottom: initial !important;
  display: flex !important;
  row-gap: 0.4rem !important;
  justify-content: center !important;
  align-items: center !important;
  width: 40px;
  height:100%;
  flex-direction: column;
}
.product_swiper .swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background-color: var(--primary-color) !important;
  opacity: 0.6;
  align-content: center;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product_swiper .swiper-pagination-bullet-active {
  opacity: 1;
  border: 2px solid #7e1e8f;
}

/* Swiper animation */
.product_article.swiper-slide-active .product_img {
  transform: translate(0, 0);
  opacity: 1;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
/* For medium devices */
/* For large devices */
/* For taller devices *//*# sourceMappingURL=main.css.map */

@charset "UTF-8";
a {
  text-decoration: none;
  border: none;
}
a:hover {
  border: none;
  color: unset;
}

.best_selling_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: column;
}
.best_selling_container_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 1rem;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_inner {
    border: 1px solid #e0e0e2;
    border-radius: 1rem;
  }
}
.best_selling_container_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_top {
    padding-inline: 1.25rem;
    justify-content: center;
  }
}
.best_selling_container_top_texts {
  display: flex;
  align-items: center;
  justify-content: center;
}
.best_selling_container_top_texts-icon {
  display: flex;
  margin-left: 0.5rem;
}
.best_selling_container_top_texts-icon svg {
  width: 24px;
  height: 24px;
  fill: #f9a825;
}
.best_selling_container_top_texts-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1;
  color: #0c0c0c;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_top_texts-text {
    font-size: 1.3125rem;
  }
}
.best_selling_container_top-link {
  display: inherit;
  color: inherit;
  justify-content: inherit;
  align-items: inherit;
  text-decoration: none;
}
.best_selling_container_top-link-btn {
  position: relative;
  color: #19bfd3;
  font-weight: 700;
  line-height: 2.15;
  font-size: 0.875rem;
  padding-left: 1rem;
  align-items: center;
  display: flex;
  top: 0;
  left: 0;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  align-items: center;
  overflow: hidden;
  transition: top 0.3s ease-in-out;
  text-decoration: none;
  user-select: none;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_top-link-btn {
    position: absolute;
  }
}
.best_selling_container_top-link-btn-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.best_selling_container_swiper_container {
  width: 100%;
  display: flex;
  padding-inline: 0.5rem;
  margin-top: 1.25rem;
  gap: 1rem;
  row-gap: 0;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_swiper_container {
    margin-top: 1.75rem;
    gap: 0;
  }
}
.best_selling_container_swiper_container_next {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  position: absolute;
  left: 8px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border: 1px solid #e0e0e2;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_swiper_container_next {
    display: flex;
  }
}
.best_selling_container_swiper_container_prev {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  position: absolute;
  right: 8px;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border: 1px solid #e0e0e2;
}
@media screen and (min-width: 1024px) {
  .best_selling_container_swiper_container_prev {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .best_selling_container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .best_selling_container {
    padding-inline: 0.5rem;
  }
}
.best_selling_container .product_box {
  display: flex;
  flex-direction: column;
}
.best_selling_container .product_box .productItem_card {
  display: flex;
  text-decoration: none;
  min-width: 200px;
}
@media screen and (min-width: 1024px) {
  .best_selling_container .product_box .productItem_card {
    min-width: unset;
  }
}
.best_selling_container .product_box .productItem_card-inner {
  display: flex;
  min-width: 200px;
}
@media screen and (min-width: 1024px) {
  .best_selling_container .product_box .productItem_card-inner {
    min-width: unset;
  }
}
.best_selling_container .product_box .productItem_card-pic {
  width: 86px;
  height: 86px;
  line-height: 0;
  border-radius: 0.5rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.best_selling_container .product_box .productItem_card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 2.1;
  font-size: 1.3rem;
  color: #19bfd3;
  margin-left: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .best_selling_container .product_box .productItem_card-num {
    font-size: 1.625rem;
  }
}
.best_selling_container .product_box .productItem_card-textBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-grow: 1;
  flex-direction: column;
}
.best_selling_container .product_box .productItem_card-textBox_inner {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #3f4064;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 2.17;
}
@media screen and (min-width: 1024px) {
  .best_selling_container .product_box .productItem_card-textBox_inner {
    font-size: 0.8rem;
  }
}
.best_selling_container .product_box .productItem_card-textBox::before {
  position: absolute;
  content: "";
  background-color: #f0f0f1;
  width: 100%;
  height: 1px;
  display: block;
  left: 0;
  bottom: -10px;
}

.categories_container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .categories_container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .categories_container {
    padding-inline: 0.5rem;
  }
}
.categories_container_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .categories_container_inner {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }
}
.categories_container_inner_topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .categories_container_inner_topbar {
    margin-bottom: 2.25rem;
  }
}
.categories_container_inner_topbar-text {
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1;
}
@media screen and (min-width: 1024px) {
  .categories_container_inner_topbar-text {
    font-size: 1.3125rem;
  }
}
.categories_container_inner_main {
  position: relative;
  width: 100%;
}
.categories_container_inner_main-inner {
  width: 100%;
}
.categories_container_inner_main-swiper {
  width: 100%;
}
.categories_container_inner_main-swiper .category_item_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.categories_container_inner_main-swiper .category_item_box-card {
  padding-inline: 1rem;
  height: 10rem;
}
.categories_container_inner_main-swiper .category_item_box-card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  user-select: none;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .categories_container_inner_main-swiper .category_item_box-card-inner {
    padding: 0;
    margin-inline: 0;
  }
}
.categories_container_inner_main-swiper .category_item_box-card-inner-picBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 0;
}
.categories_container_inner_main-swiper .category_item_box-card-inner-picBox img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.categories_container_inner_main-swiper .category_item_box-card-inner-picBox img[alt]::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  text-align: center;
  content: attr(alt);
  background: #fff url(/svg/image-placeholder.svg) no-repeat 50%;
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.categories_container_inner_main-swiper .category_item_box-card-inner-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  margin-top: 0.5rem;
  text-align: center;
  color: #0c0c0c;
  line-height: 2.17;
  font-weight: 700;
  font-size: 0.6875rem;
}
@media screen and (min-width: 1024px) {
  .categories_container_inner_main-swiper .category_item_box-card-inner-text {
    font-size: 0.75rem;
  }
}
.categories_container_inner_main-swiper-next, .categories_container_inner_main-swiper-prev {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  top: 50%;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #f0f0f1;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .categories_container_inner_main-swiper-next, .categories_container_inner_main-swiper-prev {
    display: flex;
  }
}
.categories_container_inner_main-swiper-next .swiper_btn_inner, .categories_container_inner_main-swiper-prev .swiper_btn_inner {
  display: flex;
}
.categories_container_inner_main-swiper-next .swiper_btn_inner svg, .categories_container_inner_main-swiper-prev .swiper_btn_inner svg {
  width: 28px;
  height: 28px;
  fill: #424750;
}
.categories_container_inner_main-swiper-next {
  left: 0.5rem;
}
.categories_container_inner_main-swiper-prev {
  right: 0.5rem;
}

.banners_container {
  width: 100%;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .banners_container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .banners_container {
    padding-inline: 0.5rem;
  }
}
.banners_container-single_inner {
  display: flex;
  flex-wrap: wrap;
}
.banners_container-single_inner .the_banner {
  width: calc(100% - 16px);
  height: 500px;
  display: block;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .banners_container-single_inner .the_banner {
    height: 300px;
  }
}
.banners_container-single_inner .the_banner-img {
  position: relative;
  max-width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.banners_container-single_inner .the_banner-img[alt]::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  text-align: center;
  content: attr(alt);
  background: #000 url(/svg/image-placeholder.svg) no-repeat 50%;
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.banners_container-dual_inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}
.banners_container-dual_inner .the_banner {
  width: calc(50% - 16px);
  display: block;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 400px;
}
@media screen and (max-width: 767.98px) {
  .banners_container-dual_inner .the_banner {
    width: calc(100% - 4px);
    height: 300px;
  }
}
.banners_container-dual_inner .the_banner-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 575.98px) {
  .banners_container-dual_inner .the_banner-img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
  }
}
.banners_container-dual_inner .the_banner-img[alt]::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  text-align: center;
  content: attr(alt);
  background: #000 url(/svg/image-placeholder.svg) no-repeat 50%;
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.banners_container-triple_inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}
.banners_container-triple_inner .the_banner {
  width: calc(33% - 10px);
  display: block;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 400px;
}
@media screen and (max-width: 767.98px) {
  .banners_container-triple_inner .the_banner {
    height: 300px;
    width: calc(100% - 16px);
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .banners_container-triple_inner .the_banner {
    height: 300px;
    width: calc(50% - 8px);
  }
}
.banners_container-triple_inner .the_banner-img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.banners_container-triple_inner .the_banner-img[alt]::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  text-align: center;
  content: attr(alt);
  background: #000 url(/svg/image-placeholder.svg) no-repeat 50%;
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.banners_container-quadruple_inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}
.banners_container-quadruple_inner .the_banner {
  width: calc(100% - 16px);
  display: block;
  margin-right: 0;
  margin-top: 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 767.98px) {
  .banners_container-quadruple_inner .the_banner {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 1024px) {
  .banners_container-quadruple_inner .the_banner {
    width: calc(25% - 16px);
  }
}
.banners_container-quadruple_inner .the_banner-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 575.98px) {
  .banners_container-quadruple_inner .the_banner-img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
  }
}
.banners_container-quadruple_inner .the_banner-img[alt]::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  text-align: center;
  content: attr(alt);
  background: #000 url(/svg/image-placeholder.svg) no-repeat 50%;
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.counter_product_container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .counter_product_container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .counter_product_container {
    padding-inline: 0.5rem;
  }
}
.counter_product_container_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(225deg, #267cdd, #021835 41.68%, #106c7c);
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner {
    display: block;
    border-radius: 1rem;
  }
}
.counter_product_container_inner_box {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  overflow: hidden;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box {
    border-radius: 1rem;
    padding-block: 1.25rem;
    padding-right: 0;
  }
}
.counter_product_container_inner_box .counter_product_swiper .add_to_cart {
  position: absolute;
  bottom: 0;
  left: 2px;
  background-color: #d32f2f;
  color: #ffffff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0.25rem 0.25rem 0;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}
.counter_product_container_inner_box .counter_product_swiper .add_to_cart_inner {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.counter_product_container_inner_box .counter_product_swiper .add_to_cart_inner img {
  width: 18px;
  height: 18px;
}
.counter_product_container_inner_box .counter_product_swiper .add_to_cart_inner p {
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 600;
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: all 1s ease;
  flex-shrink: 0;
}
.counter_product_container_inner_box .counter_product_swiper .add_to_cart:hover {
  width: 80px;
}
.counter_product_container_inner_box .counter_product_swiper .add_to_cart:hover p {
  display: flex;
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide {
  position: relative;
  margin-left: 2px;
  display: block;
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  cursor: pointer;
  overflow: hidden;
  background-color: #ffffff;
  padding-inline: 0.5rem;
  padding-block: 0.5rem 1.25rem;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide {
    padding-inline: 0.5rem;
    height: 100% !important;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
  gap: 0.75rem;
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
  padding-inline: 1rem;
  margin-inline: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter {
    flex-direction: column;
    padding-block: 0 !important;
    padding-inline: 0;
    align-items: center;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-first {
  order: 2;
  width: 88px;
  height: 88px;
  line-height: 0;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-first {
    order: 1;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-first img {
  object-fit: contain;
  width: 88px;
  height: 88px;
  display: inline-block;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second {
  display: flex;
  align-items: center;
  right: 0;
  order: 3;
  height: 1.5rem;
  gap: 2px;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second {
    order: 2;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 0.25rem;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second-num-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 20px;
  height: 20px;
  color: #23254e;
  font-weight: 700;
  line-height: 2.15;
  font-size: 0.8125rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second-num-inner {
    font-size: 0.9375rem;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second .the_spacer {
  width: 0.25rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-second .the_spacer {
    font-size: 0.9375rem;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-third {
  order: 1;
  width: 70px;
  height: 70px;
  line-height: 0;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-third {
    order: 3;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter-inner .amazing-third img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  display: inline-block;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter .showAll_extra {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.17;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-counter .showAll_extra-icon {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-rounded-right {
  border-radius: 0 0.5rem 0.5rem 0;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-rounded-left {
  border-radius: 0 0.5rem 0.5rem 0;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-image {
  width: 132px;
  height: 132px;
  line-height: 0;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-image picture img {
  display: inline-block;
  width: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-textBox {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 0.5rem;
  flex-direction: column;
  flex-grow: 1;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5rem;
  line-height: 1.25rem !important;
  color: #62666d;
  font-size: 0.6875rem;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-description {
    font-size: 0.75rem;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 0;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-percentage {
  color: #ffffff;
  padding-inline: 0.25rem;
  background-color: #d32f2f;
  border-radius: 1rem;
  width: 2.125rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-percentage span {
  font-weight: 700;
  line-height: 2.17;
  font-size: 0.6875rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-percentage span {
    font-size: 0.75rem;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-withOffer {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: end;
  gap: 0.25rem;
  line-height: 0.625rem;
  color: #3f4064;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-withOffer {
    line-height: 1.5rem !important;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-original {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-left: 1.25rem;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-original span {
  align-self: flex-end;
  margin-right: auto;
  line-height: 1rem !important;
  text-decoration-line: line-through;
  color: #c0c2c5;
  font-weight: 500;
  font-size: 0.6875rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide_price-original span {
    font-size: 0.75rem;
    line-height: 1.25rem !important;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll {
  padding-left: 1.25rem;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll {
    height: 100%;
  }
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem 0 0 0.5rem;
  background-color: #ffffff;
  padding-inline: 2rem;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll-inner .showAll-innerBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll-inner .showAll-innerBox-btn {
  border-radius: 50%;
  padding: 0.5rem;
  border: 2px solid #19bfd3;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll-inner .showAll-innerBox-btn-icon {
  width: 32px;
  height: 32px;
  fill: #19bfd3;
}
.counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll-inner .showAll-innerBox-text {
  margin: 0;
  margin-top: 0.5rem;
  color: #3f4064;
  line-height: 2.15;
  font-weight: 400;
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper .counter_product_swiper_slide-showAll-inner .showAll-innerBox-text {
    font-size: 0.875rem;
  }
}
.counter_product_container_inner_box .counter_product_swiper-next, .counter_product_container_inner_box .counter_product_swiper-prev {
  display: none;
  z-index: 5;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e0e0e2;
  position: absolute;
  height: 40px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .counter_product_container_inner_box .counter_product_swiper-next, .counter_product_container_inner_box .counter_product_swiper-prev {
    display: flex;
  }
}
.counter_product_container_inner_box .counter_product_swiper-next-icon, .counter_product_container_inner_box .counter_product_swiper-prev-icon {
  width: 24px;
  height: 24px;
  fill: #424750;
  opacity: 0.7;
}
.counter_product_container_inner_box .counter_product_swiper-next {
  left: 8px;
}
.counter_product_container_inner_box .counter_product_swiper-prev {
  right: 8px;
}

.quad_categories_container {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .quad_categories_container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .quad_categories_container {
    padding-inline: 0.5rem;
  }
}
.quad_categories_container_inner {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  overflow: hidden;
  background-color: #f0f0f1;
}
@media screen and (min-width: 1024px) {
  .quad_categories_container_inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 1rem;
    border: 1px solid #e0e0e2;
    gap: 1px;
  }
}
.quad_categories_container_inner_itemBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 0.5rem 1.25rem;
}
@media screen and (max-width: 1024px) {
  .quad_categories_container_inner_itemBox {
    border-bottom: 1px solid #e0e0e2;
  }
  .quad_categories_container_inner_itemBox:last-of-type {
    border-bottom: none;
  }
}
.quad_categories_container_inner_itemBox-title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 2.1;
  color: #23254e;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .quad_categories_container_inner_itemBox-title {
    font-size: 1rem;
  }
}
.quad_categories_container_inner_itemBox-subtitle {
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 2.17;
  color: #81858b;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .quad_categories_container_inner_itemBox-subtitle {
    font-size: 0.6875rem;
  }
}
.quad_categories_container_inner_itemBox-items {
  display: grid;
  flex: 1 1 0%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: #f0f0f1;
  gap: 1px;
}
.quad_categories_container_inner_itemBox-items-item {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0.5rem;
}
.quad_categories_container_inner_itemBox-items-item-inner {
  display: flex;
  height: 100%;
  align-items: center;
  border-radius: 0.5rem;
}
.quad_categories_container_inner_itemBox-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 0.25rem 0.75rem;
}
.quad_categories_container_inner_itemBox-button-inner {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #19bfd3;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.17;
}
.quad_categories_container_inner_itemBox-button-inner:hover {
  color: #19bfd3;
}
.quad_categories_container_inner_itemBox-button-inner svg {
  width: 18px;
  height: 18px;
  fill: #19bfd3;
}

.toman {
  fill: #424750;
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 1023.98px) {
  .swiper-slide_counter {
    display: none;
  }
}

.counter_horizental_mobile {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.75rem;
  padding-inline: 1.25rem;
  padding-bottom: 0.75rem;
  padding-top: 1.25rem;
}
.counter_horizental_mobile-counterBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: row;
}
.counter_horizental_mobile-counterBox-first {
  width: 86.4px;
  height: 16px;
  line-height: 0;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .counter_horizental_mobile-counterBox-first {
    order: 1;
  }
}
.counter_horizental_mobile-counterBox-first img {
  display: inline-block;
  width: 100%;
  object-fit: contain;
}
.counter_horizental_mobile-counterBox-second {
  width: 20px;
  height: 20px;
  line-height: 0;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .counter_horizental_mobile-counterBox-second {
    order: 3;
  }
}
.counter_horizental_mobile-counterBox-second img {
  display: inline-block;
  width: 100%;
  object-fit: contain;
}
.counter_horizental_mobile-counterBox-third {
  display: flex;
  align-items: center;
  right: 0;
  order: 3;
  height: 1.5rem;
  gap: 2px;
}
@media screen and (min-width: 1024px) {
  .counter_horizental_mobile-counterBox-third {
    order: 2;
  }
}
.counter_horizental_mobile-counterBox-third-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 0.25rem;
}
.counter_horizental_mobile-counterBox-third-num-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 20px;
  height: 20px;
  color: #23254e;
  font-weight: 700;
  line-height: 2.15;
  font-size: 0.8125rem;
}
@media screen and (min-width: 1024px) {
  .counter_horizental_mobile-counterBox-third-num-inner {
    font-size: 0.9375rem;
  }
}
.counter_horizental_mobile-counterBox-third .the_spacer {
  width: 0.25rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
}
@media screen and (min-width: 1024px) {
  .counter_horizental_mobile-counterBox-third .the_spacer {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .counter_horizental_mobile {
    display: none !important;
  }
}
.counter_horizental_mobile .showAll_extra_extra {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 2.17;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}
.counter_horizental_mobile .showAll_extra_extra-inner {
  margin: 0;
  padding: 0;
  margin-bottom: 0.25rem;
}

.hot_picks_container {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .hot_picks_container {
    padding-inline: 0.5rem;
  }
}
.hot_picks_container_inner {
  background-color: #ffffff;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner {
    padding-inline: 0.75rem;
    border-radius: 1rem;
    border: 1px solid #e0e0e2;
  }
}
.hot_picks_container_inner-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding-block: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-top {
    padding-block: 1rem;
  }
}
.hot_picks_container_inner-top-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1;
  margin-right: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-top-title {
    font-size: 1.3125rem;
  }
}
.hot_picks_container_inner-top-icon {
  display: flex;
}
.hot_picks_container_inner-top-icon svg {
  width: 24px;
  height: 24px;
  fill: #ef4056;
}
.hot_picks_container_inner-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hot_picks_container_inner-bottom > * {
  border-bottom: 1px solid #f0f0f1;
  border-left: 1px solid #f0f0f1;
}
.hot_picks_container_inner-bottom > :nth-child(2n) {
  border-left: none;
}
.hot_picks_container_inner-bottom > :nth-child(odd):nth-last-child(-n+2), .hot_picks_container_inner-bottom > :nth-child(odd):nth-last-child(-n+2) ~ * {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .hot_picks_container_inner-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* Reset 2-column borders */
    /* 3-column left borders */
    /* Reset 2-column bottom borders */
    /* 3-column bottom borders */
  }
  .hot_picks_container_inner-bottom > :nth-child(2n) {
    border-left: 1px solid #f0f0f1;
  }
  .hot_picks_container_inner-bottom > :nth-child(3n) {
    border-left: none;
  }
  .hot_picks_container_inner-bottom > :nth-child(odd):nth-last-child(-n+2), .hot_picks_container_inner-bottom > :nth-child(odd):nth-last-child(-n+2) ~ * {
    border-bottom: 1px solid #f0f0f1;
  }
  .hot_picks_container_inner-bottom > :nth-child(3n+1):nth-last-child(-n+3), .hot_picks_container_inner-bottom > :nth-child(3n+1):nth-last-child(-n+3) ~ * {
    border-bottom: none;
  }
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-bottom {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    /* Reset 3-column borders */
    /* 5-column left borders */
    /* Reset 3-column bottom borders */
    /* 5-column bottom borders */
  }
  .hot_picks_container_inner-bottom > :nth-child(3n) {
    border-left: 1px solid #f0f0f1;
  }
  .hot_picks_container_inner-bottom > :nth-child(5n) {
    border-left: none;
  }
  .hot_picks_container_inner-bottom > :nth-child(3n+1):nth-last-child(-n+3), .hot_picks_container_inner-bottom > :nth-child(3n+1):nth-last-child(-n+3) ~ * {
    border-bottom: 1px solid #f0f0f1;
  }
  .hot_picks_container_inner-bottom > :nth-child(5n+1):nth-last-child(-n+5), .hot_picks_container_inner-bottom > :nth-child(5n+1):nth-last-child(-n+5) ~ * {
    border-bottom: none;
  }
}
@media screen and (min-width: 1280px) {
  .hot_picks_container_inner-bottom {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    /* Reset 5-column borders */
    /* 6-column left borders */
    /* Reset 5-column bottom borders */
    /* 6-column bottom borders */
  }
  .hot_picks_container_inner-bottom > :nth-child(5n) {
    border-left: 1px solid #f0f0f1;
  }
  .hot_picks_container_inner-bottom > :nth-child(6n) {
    border-left: none;
  }
  .hot_picks_container_inner-bottom > :nth-child(5n+1):nth-last-child(-n+5), .hot_picks_container_inner-bottom > :nth-child(5n+1):nth-last-child(-n+5) ~ * {
    border-bottom: 1px solid #f0f0f1;
  }
  .hot_picks_container_inner-bottom > :nth-child(6n+1):nth-last-child(-n+6), .hot_picks_container_inner-bottom > :nth-child(6n+1):nth-last-child(-n+6) ~ * {
    border-bottom: none;
  }
}
.hot_picks_container_inner-bottom-item {
  position: relative;
  display: block;
  height: 100%;
  flex-grow: 1;
  cursor: pointer;
  overflow: hidden;
  padding-inline: 1rem;
  padding-block: 0.75rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.hot_picks_container_inner-bottom-item:hover {
  transform: scale(1.02, 1.02);
  box-shadow: 0px 1px 28px 2px rgba(0, 0, 0, 0.3);
  z-index: 99;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-bottom-item {
    padding-inline: 0.5rem;
  }
}
.hot_picks_container_inner-bottom-item-product {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-direction: column;
  overflow: hidden;
}
.hot_picks_container_inner-bottom-item-product-imgBox {
  max-width: 150px;
  height: 150px;
  line-height: 0;
}
.hot_picks_container_inner-bottom-item-product .offer_tag {
  background-color: #d32f2f;
  width: 34px;
  height: 20px;
}
.hot_picks_container_inner-bottom-item-product .offer_tag span {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 2.17;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-bottom-item-product .offer_tag span {
    font-size: 0.75rem;
  }
}
.hot_picks_container_inner-bottom-item-product .final_price_box {
  color: #3f4064;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.1;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-bottom-item-product .final_price_box {
    font-size: 1rem;
  }
}
.hot_picks_container_inner-bottom-item-product .final_price_box .toman_svg_box {
  display: flex;
}
.hot_picks_container_inner-bottom-item-product .final_price_box .toman_svg_box svg {
  width: 16px;
  height: 16px;
  fill: #424750;
}
.hot_picks_container_inner-bottom-item-product .actual_price_forReal {
  text-decoration: line-through;
  margin-right: auto;
  align-self: flex-end;
  color: #c0c2c5;
  line-height: 2.17;
  font-weight: 400;
  font-size: 0.6875rem;
}
@media screen and (min-width: 1024px) {
  .hot_picks_container_inner-bottom-item-product .actual_price_forReal {
    font-size: 0.75rem;
  }
}

.footer_advantages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 2rem 1.25rem 0;
  position:relative;
}
.footer_advantages::after{
    position:absolute;
	content:"";
	width:100%;
	height:1px;
	top:0;
	right:0;
	background-color:#e0e0e2;
}
.footer_advantages_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}
.footer_advantages_top_picBox {
  width: 195px;
  height: 50px;
  line-height: 0;
  margin-left: 1rem;
}
.footer_advantages_top .back_to_top_btn {
  border: 1px solid #e0e0e2;
  background: none;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  transition: top 0.3s ease-in-out;
  background-color: transparent;
  color: #0c0c0c;
  padding: 0.5rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  height: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2.17;
  user-select: none;
}
.footer_advantages_middle {
  width: 100%;
  margin-block: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  color: #3f4064;
  line-height: 2.17;
  font-weight: 500;
  font-size: 12px;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .footer_advantages_middle {
    font-size: 13px;
    margin-block: 0.75rem 0rem;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
  }
}
.footer_advantages_middle p {
  flex-shrink: 0;
  margin: 0;
}
.footer_advantages_middle div {
  color: #a1a3a8;
  padding-inline: 1.25rem;
}
.footer_advantages_caption {
  font-size: 12px;
  font-weight: 500;
  color: #3f4064;
  line-height: 2.17;
}
@media screen and (min-width: 1024px) {
  .footer_advantages_caption {
    font-size: 13px;
  }
}

.center-content {
  justify-content: center !important;
  display: flex !important;
  flex-wrap: wrap;
}

.force-center-slides .swiper-wrapper {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  align-items: start !important;
}

/* جلوگیری از کشیده شدن اسلایدها */
.force-center-slides .swiper-slide {
  flex: 0 0 auto !important;
  width: auto !important;
}

.text-neutral-400 {
  color: #a1a3a8;
}/*# sourceMappingURL=main.css.map */

.text_orange {
  color: rgb(255, 149, 51) !important;
}

.hero_partial {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: start;
  overflow: hidden;
  background-image: linear-gradient(to bottom right, #282a32 50%, #424653 0);
  padding-bottom: 2.25rem;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .hero_partial {
    padding-bottom: 8.4375rem;
  }
}
.hero_partial-inner-first {
  margin-inline: auto;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding-top: 2.5rem;
  padding-inline: 1.5rem;
  align-items: start;
  justify-content: start;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first {
    display: flex;
    gap: 6.125rem;
    padding-top: 4rem;
    padding-inline: 0;
    width: 1041px;
  }
}
.hero_partial-inner-first-box {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-box {
    width: 486px;
    margin-block: 0;
  }
}
.hero_partial-inner-first-box-title {
  margin: 0;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 3.5rem;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-box-title {
    width: -moz-fit-content;
    width: fit-content;
    text-wrap: balance;
    font-size: 2.75rem;
    line-height: 4.5rem;
  }
}
.hero_partial-inner-first-box-subtitle {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 2rem;
  z-index:20;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-box-subtitle {
    margin-bottom: 0;
  }
}
.hero_partial-inner-first-box-subtitle span {
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-box-subtitle span {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
.hero_partial-inner-first-box-description {
  margin-top: 2rem;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-box-description {
    display: flex;
  }
}
.hero_partial-inner-first-box-description .box-description {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  color: rgb(217, 223, 231);
}
.hero_partial-inner-first-box-description .box-description i {
  font-size: 1.5rem;
}
.hero_partial-inner-first-box-description .box-description p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: 500;
  color: #ffffff;
}
.hero_partial-inner-first-case-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-case-desktop {
    display: block;
	z-index:1;
  }
}
.hero_partial-inner-first-case-desktop-inner {
  position: relative;
  height: 372px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0.5rem;
  background-color: rgb(254, 254, 254);
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-case-desktop-inner {
    width: 342px;
  }
}
.hero_partial-inner-first-case-desktop-inner-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: rgb(37, 43, 50);
}
.hero_partial-inner-first-case-desktop-inner-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  cursor: pointer;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.hero_partial-inner-first-case-desktop-inner-grid-item {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  text-align: center;
  padding: 0.5rem;
  background-color: rgb(249, 250, 251);
  border-radius: 0.5rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 6rem;
  display: flex;
  cursor: pointer;
}
.hero_partial-inner-first-case-desktop-inner-grid-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.hero_partial-inner-first-case-desktop-inner-grid-item a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
}
.hero_partial-inner-first-case-desktop-inner-grid-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: rgb(37, 43, 50);
}
.hero_partial-inner-first-case-desktop-inner-grid-item.show_more {
  background-color: rgb(255, 244, 235);
  gap: 0;
  color: rgb(255, 149, 51);
}
.hero_partial-inner-first-case-desktop-inner-grid-item.show_more:hover {
  background-color: rgba(255, 149, 51, 0.16);
}
.hero_partial-inner-first-case-desktop-inner-grid-item.show_more i {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 400;
}
.hero_partial-inner-first-case-desktop-inner-grid-item.show_more p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: rgb(255, 149, 51);
}
.hero_partial-inner-first-case-desktop-inner-grid-button {
  position: relative;
  margin-top: 0.5rem;
  display: flex;
  min-height: 2rem;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: rgb(255, 149, 51);
  padding-inline: 1.5rem;
  padding-block: 0.75rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: #ffffff;
  outline: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.hero_partial-inner-first-case-desktop-inner-grid-button:hover {
  border-color: rgb(232, 136, 46);
  background-color: rgb(232, 136, 46);
}
.hero_partial-inner-first-case-desktop-inner-grid-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.hero_partial-inner-first .first_car {
  position: absolute;
  top: 130px;
  margin-right: 40px;
  left: -100px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .first_car {
    bottom: -6rem;
    top: unset;
    left: -200px;
  }
}
.hero_partial-inner-first .first_car-desktop {
  display: none;
  width: 440px;
  height: auto;
  margin-left: 0.75rem;
  max-width: 100%;
  color: transparent;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .first_car-desktop {
    display: block;
  }
}
.hero_partial-inner-first .first_car-mobile {
  display: block;
  width: 200px;
  height: auto;
  margin-left: 0.75rem;
  max-width: 100%;
  color: transparent;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .first_car-mobile {
    display: none;
  }
}
.hero_partial-inner-first .second_car-desktop {
  position: absolute;
  top: 0;
  left: -175px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  width: 300px;
  display: none;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .second_car-desktop {
    top: -6.5rem;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .second_car-desktop img {
    width: 100%;
    height: auto;
  }
}
.hero_partial-inner-first .second_car-mobile {
  position: absolute;
  bottom: -5rem;
  right: -10rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  width: 300px;
  display: block;
  rotate: 180deg;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .second_car-mobile {
    top: -2.5rem;
    display: none;
  }
}
.hero_partial-inner-first .second_car-mobile img {
  width: 100%;
  height: auto;
}
.hero_partial-inner-first .confetti {
  position: absolute;
  top: -1.25rem;
  left: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  width: 195px;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .confetti {
    left: unset;
    right: 0;
    width: 300px;
  }
}
.hero_partial-inner-first .confetti-desktop {
  display: none;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .confetti-desktop {
    display: block;
  }
}
.hero_partial-inner-first .confetti-mobile {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first .confetti-mobile {
    display: none;
  }
}

.hero_partial-inner-first-case-mobile {
  display: block;
  margin-inline: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .hero_partial-inner-first-case-mobile {
    display: none;
  }
}
.hero_partial-inner-first-case-mobile-inner {
  position: relative;
  height: 372px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0.5rem;
  background-color: rgb(254, 254, 254);
  padding: 1rem;
}
.hero_partial-inner-first-case-mobile-inner-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: rgb(37, 43, 50);
}
.hero_partial-inner-first-case-mobile-inner-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  cursor: pointer;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.hero_partial-inner-first-case-mobile-inner-grid-item {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  text-align: center;
  padding: 0.5rem;
  background-color: rgb(249, 250, 251);
  border-radius: 0.5rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 6rem;
  display: flex;
  cursor: pointer;
}
.hero_partial-inner-first-case-mobile-inner-grid-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
.hero_partial-inner-first-case-mobile-inner-grid-item a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
}
.hero_partial-inner-first-case-mobile-inner-grid-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: rgb(37, 43, 50);
}
.hero_partial-inner-first-case-mobile-inner-grid-item.show_more {
  background-color: rgb(255, 244, 235);
  gap: 0;
  color: rgb(255, 149, 51);
}
.hero_partial-inner-first-case-mobile-inner-grid-item.show_more:hover {
  background-color: rgba(255, 149, 51, 0.16);
}
.hero_partial-inner-first-case-mobile-inner-grid-item.show_more i {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 400;
}
.hero_partial-inner-first-case-mobile-inner-grid-item.show_more p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: rgb(255, 149, 51);
}
.hero_partial-inner-first-case-mobile-inner-grid-button {
  position: relative;
  margin-top: 0.5rem;
  display: flex;
  min-height: 2rem;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: rgb(255, 149, 51);
  padding-inline: 1.5rem;
  padding-block: 0.75rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: #ffffff;
  outline: none;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.hero_partial-inner-first-case-mobile-inner-grid-button:hover {
  border-color: rgb(232, 136, 46);
  background-color: rgb(232, 136, 46);
}
.hero_partial-inner-first-case-mobile-inner-grid-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}/*# sourceMappingURL=slider.css.map */

.mobile-footer-scroller {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100dvw;
  z-index: 30;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
@media screen and (min-width: 992px) {
  .mobile-footer-scroller {
    display: none;
  }
}
.mobile-footer-scroller * {
  padding: 0;
  margin: 0;
}
.mobile-footer-scroller-inner {
  width: 100%;
  background-color: rgb(254, 254, 254);
}
.mobile-footer-scroller-inner-list {
  
  
  list-style: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  box-shadow: 0 0.25rem 2.5rem rgba(0, 0, 0, 0.2);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.mobile-footer-scroller-inner-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width:25%;
 
}
.mobile-footer-scroller-inner-list-item {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 0.5rem;
  text-wrap: nowrap;
  text-decoration: none;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  color: rgb(93, 108, 126);
}
.mobile-footer-scroller-inner-list-item i {
  font-size: 1.5rem;
}
.mobile-footer-scroller-inner-list-item span {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.mobile-footer-scroller-inner-list-item.active {
  color: rgb(255, 149, 51);
}/*# sourceMappingURL=footer.css.map */


@media screen and (max-width:575.98px){
	.bottom-header .nav-item .nav-link{
	padding-block:0 !important;
	}
	.bottom-header .nav-item.account{
	border:none !important;
	padding:0 !important;
	}
	.bottom-header .nav-item.account span{
	display:none;
	}
	.bottom-header #cart-list-item.nav-item .nav-link span{
	display:none;
	}
	.bottom-header #header-phone-num.nav-item .nav-link span{
	display:none;
	}
	.bottom-header .nav-item.account i{
	font-size:1.7rem !important;
	}
	.bottom-header #cart-list-item.nav-item .nav-link i{
	font-size:1.7rem !important;
	}
	.bottom-header #header-phone-num.nav-item .nav-link i{
	font-size:1.7rem !important;
	}
}

@media screen and (max-width:991.98px){
.bottom-header .nav-item.account{
	border:none !important;
	}
}
.faramarz{
padding-inline:.75rem;
}


        .page-title {
            font-weight: 700;
            font-size: clamp(1.25rem, 1.2rem + 1vw, 1.75rem);
            color: #111827;
            margin-top: 28px;
            margin-bottom: 18px;
            text-align: center;
        }

        .form-wrap {
            margin-inline: auto;
            padding: 0 16px;
        }

        .form-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 22px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, .04);
        }

        .form-control {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            height: 48px;
            padding: .75rem .9rem;
            font-size: .95rem;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-control::placeholder {
            color: #9ca3af;
        }

        .form-control:focus {
            border-color: color-mix(in srgb, var(--primary-color) 60%, #ffffff);
            box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary-color) 20%, transparent);
        }

        .btn-submit {
            width: 100%;
            height: 46px;
            border-radius: 10px;
            border: 0;
            background: var(--primary-color);
            color: #fff;
            font-weight: 600;
            transition: transform .06s ease, filter .2s ease;
        }

        .btn-submit:hover {
            filter: brightness(1.05);
        }

        .btn-submit:active {
            transform: translateY(1px);
        }

        .card-footer-clean {
            padding-top: 6px;
        }

        .gap-16>*+* {
            margin-top: 16px;
        }

        @media (min-width:576px) {
            .form-card {
                padding: 26px;
            }
        }



/* -------- Widget -------- */
.news-widget {
    width: 100%;
    margin-bottom: 1rem;
}

/* --- Fieldset/Legend look --- */
.news-fieldset {
    border:2px solid var(--primary-light);
    border-radius: .5rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    position: relative;
}

.news-fieldset legend {
    padding: .5rem 1rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    float: unset;
    width: unset;
    margin-bottom: 0;
    background: var(--surface);
    border: 1px solid var(--primary-light);
    border-radius: .75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}

.news-fieldset legend i {
    color: var(--primary-color);
    font-size: 18px;
}

.news-list {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.news-item {
    display: flex;
    align-items: center;
    padding: .75rem .25rem;
    border-bottom: 1px solid var(--divider);
    cursor: pointer;
    transition: background-color .2s ease;
}

.news-item:hover {
    background: var(--primary-light);
}

.news-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 1px;
    margin-left: 12px;
    flex-shrink: 0;
}

.news-title {
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    line-height: 1.5;
    transition: color .2s ease;
}

.news-item:hover .news-title {
    color: var(--primary-color);
}

.news-footer {
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--divider);
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .3s ease;
    position: relative;
    outline: 0;
    border:1px solid var(--primary-light);
}

.more-link:hover {
    background: var(--primary-color);
    color: var(--on-primary);
}

.more-link i {
    font-size: 14px;
    will-change: transform, opacity;
}

/* subtle aura when pulsing */
.more-link.animate-attention {
    box-shadow: 0 0 0 0 rgba(96, 125, 139, 0.35);
    animation: btnAura 2.2s ease-out 1;
}

@keyframes btnAura {
    0% { box-shadow: 0 0 0 0 rgba(96, 125, 139, 0.35) }
    70% { box-shadow: 0 0 0 12px rgba(96, 125, 139, 0) }
    100% { box-shadow: 0 0 0 0 rgba(96, 125, 139, 0) }
}

/* PULSE for arrow icon (نبض) */
.more-link.animate-attention i {
    animation: iconPulse 2s ease-out 2;
    transform-origin: center;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1 }
    40% { transform: scale(1.25); opacity: .85 }
    80% { transform: scale(1.05); opacity: .95 }
    100% { transform: scale(1); opacity: 1 }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .more-link, .more-link * { animation: none !important; transition: none !important }
}

/* Responsive tweaks */
@media (max-width:768px) {
    .news-fieldset { padding: 1rem .875rem }
    .news-fieldset legend { font-size: 13px }
    .news-item { padding: .625rem .21rem; }
    .news-title { font-size: 13px }
    .more-link { font-size: 12px }
}

@media (max-width:480px) {
    .news-title { font-size: 12px }
    .news-item::before { width: 5px; height: 5px; margin-left: 10px }
}

/* --------- Popular list (ویجت پربازدیدترین‌ها) --------- */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: .75rem .35rem;
    text-decoration: none;
    border-bottom: 1px solid var(--divider);
    transition: all .2s ease;
}

.popular-item:last-child { border-bottom: none; }

.popular-item:hover { 
	background: var(--primary-color);
	>.popular-avatar{
	border:2px solid #959595;
	}
	>.popular-info{
	color:#fff;
	>span{
	color:#fff;
		}
	}
}


.popular-avatar {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;

    >img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.popular-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
	transition: all .2s ease;
	>span{
	transition: all .2s ease;
	}
}

.popular-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.popular-city {
    font-size: 13px;
    color: var(--text-secondary);
}

.popular-item:hover .popular-name {
    color: var(--primary-color);
}

.popular-footer { border: none; }

/* Responsive for popular */
@media (max-width:768px) {
    .popular-avatar { width: 52px; height: 52px; border-radius: 8px; }
    .popular-name { font-size: 13px; }
    .popular-city { font-size: 12px; }
}

@media (min-width:576px) {
    .popular-list {
        display: grid;
        grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 0 16px;
        margin-top: 8px;
    }
}

@media (max-width:480px) {
    .popular-avatar { width: 48px; height: 48px; }
}

