@import "normalize.css";
@import "bootstrap.min.css";
@import "bootstrap-icon/bootstrap-icons.min.css";
@import "default-style.css";
@import "color.css";
@import "mega-menu.css";
/*========================== start header style ==========================*/
.header {
    background-color: #fff;
    padding: 10px 0;
    z-index: 100;
    position: sticky;
    top: 0;
}

.top-header-logo img {
    width: 110px;
    height: auto;
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.top-header-logo a {
    display: inline-flex;
    align-items: center;
}

.top-header-link {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.top-header-link-login {
    border: 1px solid #bbb;
    padding: 10px 30px;
    position: relative;
}

.top-header-link-login::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    background-color: var(--main-color-one);
    width: 12px;
    height: 7px;
    border-radius: 25px;
    box-shadow: 0 0 5px 3px var(--main-color-one-shadow);
    transform: translateY(-50%);
}

.top-header-link-login:hover {
    border: 1px solid #bbb;
}

.top-header-link-register {
    padding: 10px 30px;
}

.top-header-link-register span {
    color: #fff;
}

.search-filed {
    position: relative;
    max-width: 100%;
}

.search-filed .search-input {
    border-radius: 30px;
    background-color: #f4f4f4;
    min-height: 46px;
    padding: 10px 18px;
    padding-left: 52px;
    font-size: 14px;
    line-height: 1.8;
    border-color: #ddd;
}

.search-filed .search-input:focus {
    border: 1px solid #aaa;
    box-shadow: var(--shadow-sm);
}

.search-filed .search-btn {
    position: absolute;
    top: 50%;
    left: 8px;
    width: 38px;
    height: 38px;
    padding: 0;
    line-height: 38px;
    transform: translateY(-50%);
}

.top-menu-mini-menu li:not(:last-child) a {
    margin-left: 10px;
}

.btn-primary-cm {
    padding: 10px;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    border-radius: 10px;
    color: #fff;
    border: 0;
    outline: 0;
    background-color: var(--main-color-one);
    overflow: hidden;
}

.btn-primary-cm:hover {
    color: #fff;
}

.btn-primary-cm.btn-with-icon {
    padding-right: 50px;
}

.btn-primary-cm.btn-with-icon.w-100 {
    padding-right: 0;
}

.btn-primary-cm.btn-with-icon::before {
    content: '';
    width: 44px;
    height: 140%;
    position: absolute;
    right: 0;
    top: -10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 60px 0 0 60px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn-primary-cm.btn-with-icon:hover::before {
    width: 100%;
}

.btn-primary-cm.btn-with-icon img {
    width: 24px;
    position: absolute;
    right: 10px;
}

.btn-primary-cm.btn-with-icon i {
    position: absolute;
    right: 10px;
    font-size: 23px;
    top: 7px;
}

.top-header-call-icon {
    background-color: var(--main-color-one);
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    color: #7a3801;
}

.top-header-call-title p,
.top-header-call-title h6 {
    margin-bottom: 0;
}

.auth-link .auth-btn,
.cart-button a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.auth-link .auth-btn {
    gap: 6px;
}

.cart-button {
    margin-right: 2px;
}
.btn-favorite-items {
    background-color: var(--main-color-one);
    color: #fff;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
}

.btn-favorite-items:hover {
    background-color: var(--main-color-one);
    color: var(--color-site);
}

.btn-favorite-items i {
    font-size: 22px;
}

.btn-favorite-items span {
    position: absolute;
    top: 0;
    right: -15px;
    display: block;
    background-color: var(--main-color-two);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 2px solid #fff;
    font-size: 12px;
    color: #fff;
}

.btn-cart-counter {
    background-color: var(--main-color-one);
    padding: 7px 12px;
    color: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-cart-counter:hover {
    background-color: var(--main-color-one-hover);
}

.btn-cart-counter i, .btn-cart-counter span {
    background-color: #768dff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
}

.btn-cart-counter span {
    font-size: 16px;
}

.auth-dropdown .arrow-auth::before {
    transition: 0.3s all linear;
}

.auth-dropdown.show .arrow-auth::before {
    transition: 0.3s all linear;
}

.auth-dropdown.show .arrow-auth::before {
    transform: rotate(180deg);
}

/*========================== end header style ==========================*/
/*========================== start section main-slider ==========================*/
.main-slider .slider {
    border-radius: 20px;
}

.main-slider .swiper-slide {
    padding: 0;
    border-radius: 20px;
}

.main-slider .swiper-slide img {
    border-radius: 20px;
    object-fit: cover;
    height: 400px;
}

.main-slider .row {
    --bs-gutter-y: 1rem;
}

.main-slider .swiper-rtl .swiper-button-next,
.main-slider .swiper-rtl .swiper-button-prev {
    background-color: var(--main-color-one);
    width: 52px;
    height: 52px;
    border-radius: 25px;
}

/* suggest moment */
.swiper-progress-bar {
    position: absolute;
    top: 17.5%;
    width: 95%;
    display: block;
    z-index: 1;
    height: 2px;
    margin: 7px auto;
}

.swiper-progress-bar .slide_progress-bar {
    position: absolute;
    height: 2px;
    background: rgba(199, 199, 199, 0.3);
    width: auto;
    clear: both;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
}

.swiper-progress-bar .slide_progress-bar:after {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color-one);
    height: 100%;
    width: 0;
    content: "";
}

.swiper-progress-bar.active .slide_progress-bar {
    opacity: 1;
}

.swiper-progress-bar.animate .slide_progress-bar:after {
    transition: width linear;
    transition-delay: unset;
    width: 100%;
    transition-duration: 3s;
}

.sugget-Moment .swiper-button-prev,
.sugget-Moment .swiper-button-next {
    outline: none;
    background: #f7f7f7;
    padding: 20px;
    color: #333;
    border-radius: 50%;
    transition: 0.3s opacity ease-in-out;
}

.sugget-Moment .swiper-pagination-bullet-active {
    background-color: #fff !important;
    width: 15px;
    height: 7px;
    border-radius: 10px;
}

/*========================== end section main-slider ==========================*/
/*========================== start section feature ==========================*/
.feature {
    display: flex;
    margin-top: 22px;
    margin-bottom: 18px;
}

.feature-item {
    height: 100%;
    min-height: 122px;
    padding: 14px 10px;
    background: #e9e7e7;
    box-shadow: var(--shadow-inner);
    transition: 0.3s all linear;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-item .title h6 {
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.7;
}

.feature-item.active {
    background-color: var(--main-color-one);
    color: #fff;
}

.feature-item.active:hover, .feature-item.active:hover h6 {
    color: var(--color-site) !important;
}

.feature-item.active:hover .icon {
    border-color: var(--color-site);
}

.feature-item.active .icon {
    border-color: #fff;
}

.feature-item.active h6 {
    color: #fff !important;
}

.feature-item:hover {
    background-color: var(--main-color-two);
    transform: translateY(-2px);
}

.feature-item .icon {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 5px;
    border: 1px dashed #515151;
    border-radius: 5px;
}

.feature-item .icon i {
    font-size: 25px;
}

/*========================== end section feature ==========================*/
/*========================== start section categories ==========================*/
.with-highlight {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.with-highlight::before {
    content: '';
    width: 100%;
    height: 15px;
    background-color: var(--bs-yellow);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 5px;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
}

.section-title.with-line::after {
    content: "";
    position: absolute;
    top: 60%;
    right: 30%;
    background-color: var(--main-color-three-shadow);
    width: calc(100% - 650px);
    height: 5px;
    transform: translateY(-50%);
}

.section-title-title {
    position: relative;
    padding-right: 50px;
}

.section-title-title .Dottedsquare {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: radial-gradient(#6f6c6c 1px, transparent 2px);
    -webkit-background-size: 20px 20px;
    background-size: 10px 10px;
    border-radius: 0;
    z-index: -1;
}

.free-swiper {
    position: relative;
}

.free-swiper .swiper {
    position: unset;
    padding: 5px 0;
}

.free-swiper .swiper-button-next, .free-swiper .swiper-button-prev {
    background: transparent;
    top: 15%;
    right: auto;
    left: 9%;
    box-shadow: none;
    padding: 0;
}

.free-swiper .swiper-button-prev, .free-swiper .swiper-button-next {
    left: 10.5%;
}

.free-swiper .swiper-button-prev {
    left: 13.5%;
}

.free-swiper .swiper-button-next::after, .free-swiper .swiper-button-prev::after {
    color: var(--color-site);
    padding: 10px 15px;
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-radius: 5px;
    border: 1px solid var(--bs-gray-400);
}

.cat-item-image img {
    width: 92px;
    height: 76px;
    object-fit: contain;
}

.cat-item {
    background: #fff;
    height: 100%;
    min-height: 112px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: var(--shadow-box);
    border: 1px solid transparent;
    transition: 0.25s all ease;
}

.cat-item:hover {
    border-color: var(--bs-gray-400);
    transform: translateY(-2px);
}

.cat-item-desc h5 {
    line-height: 1.7;
    margin-bottom: 4px;
}

.cat-item-desc p {
    margin-bottom: 0;
    line-height: 1.6;
}




/* اسلایدر دسته‌بندی محصولات */
.category-swiper {
    width: 100%;
    overflow: hidden;
    padding: 5px 2px 38px;
}

.category-swiper .swiper-wrapper {
    align-items: stretch;
}

.category-swiper .swiper-slide {
    height: auto;
}

.category-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.category-slide-link:hover {
    color: inherit;
}

.category-swiper .cat-item {
    width: 100%;
    height: 100%;
}

.category-swiper .cat-item-desc {
    min-width: 0;
}

.category-swiper .cat-item-desc h5 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}







/*========================== end section categories ==========================*/
/*========================== start product box ==========================*/
.free-sw {
    overflow-x: hidden;
}

.free-sw .swiper {
    overflow: unset;
    position: unset;
    padding-bottom: 100px;
}

.free-sw .product-box {
    box-shadow: var(--shadow-box);
}

.product-box {
    background-color: #fff;
    box-shadow: var(--shadow-box);
    border-radius: 10px;
    padding: 12px;
    transition: 0.25s all ease;
}

.product-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-box.free-mode {
    width: 300px;
}

.product-header-btn {
    display: flex;
    z-index: 10;
}

.product-header-btn a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #f4f4f4;
    transition: 200ms;
}

.product-header-btn a i {
    font-size: 16px;
}

.product-header-btn a:hover {
    background-color: #ddd;
}

.product-header-btn a:not(:last-child) {
    margin-left: 5px;
}

.product-box .product-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-box .product-timer .timer-label {
    padding: 5px 10px;
    background-color: #fc6d6d3b;
    border-radius: 10px;
}

.product-box .product-timer .timer-label span {
    color: #f21919;
    font-size: 13px;
    font-weight: normal;
}

.product-box .product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 12px;
    position: relative;
    overflow: hidden;
}

.product-box .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
    transition: 0.5s all ease-in-out;
}

.product-box .two-image {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: transform 1.5s, visibility .5s, opacity .5s;
    -webkit-transition: transform 1.5s, visibility .5s, opacity .5s;
    -moz-transition: transform 1.5s, visibility .5s, opacity .5s;
    -ms-transition: transform 1.5s, visibility .5s, opacity .5s;
    -o-transition: transform 1.5s, visibility .5s, opacity .5s;
}

.product-box:hover .one-image {
    opacity: 0;
    visibility: hidden;
}

.product-box:hover .two-image {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    display: block;
    transform: scale(1.04);
}

.product-box .product-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 62px;
    gap: 8px;
}

.product-box .product-title .title {
    min-width: 0;
    flex: 1;
}

.product-box .product-title .title p {
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.8;
}

.product-box .product-title .title span {
    color: var(--text-muted-two) !important;
    font-size: 12px;
}

.product-box .product-title .rating {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.product-box .product-title .rating .icon {
    margin-right: 5px;
}

.product-box .product-title .rating .icon i {
    color: #fbc02a;
    font-size: 14px;
    vertical-align: super;
}

.product-box .product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding: 10px 4px 2px;
    border-top: 2px solid var(--bs-gray-400);
}

.product-box .product-action .price {
    text-align: left;
    margin-right: auto;
    min-width: 0;
}

.product-box .product-action .price p {
    margin-bottom: 0;
}

.new-price {
    font-weight: bold;
    line-height: 1.7;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-weight: normal;
    line-height: 1.7;
}

/*========================== end product box ==========================*/
/*========================== start offer section ==========================*/
.offers {
    padding: 20px 0;
}

.offer {
    height: auto;
    border-radius: 10px;
    background: #fff;
    position: relative;
    box-shadow: 3px 3px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.swiper-pagination-bullet-active {
    background: #007fee;
    width: 15px;
    height: 7px;
    border-radius: 10px;
}

.offer-item {
    max-height: fit-content;
    padding: 0 10px;
    border-radius: 10px;
}

.offer-item .col-md-6 {
    border-left: 1px solid var(--bs-gray-300);
}

.offer-discount {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    min-height: 100px;
    min-width: 140px;
    border-radius: 10px;
}

.offer-discount span {
    border-radius: 0;
    min-height: 30px;
    min-width: 137px;
    font-weight: 400;
    margin: 0;
    z-index: 9;
    background-color: var(--main-color-two);
    color: #fff;
    width: 154px;
    font-size: 16px;
    position: absolute;
    text-align: center;
    padding: 30px 4px 4px;
    right: -46px;
    top: -15px;
    transform: rotate(35deg);
    line-height: 2;
    display: block;
}

.offer-img {
    width: 300px;
    height: 400px;
    text-align: center;
    margin: auto;
}

.offer-img img {
    width: 500px;
}

.offer-content {
    text-align: center;
    padding-bottom: 10px;
}

.offer-title {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #f0efef;
}

.offer-title h4 {
    font-weight: 900;
    font-size: 16px;
}

.offer-title span {
    color: var(--main-color-one);
}

.offer-desc {
    width: 100%;
    text-align: right;
}

.offer-desc h4 {
    height: 65px;
    font-size: 22px;
    line-height: 35px;
    font-weight: bold;
}

.se-title h5 {
    font-size: 16px;
    margin-bottom: 7px;
}

.se-title h6 {
    font-size: 12px;
    margin-bottom: 7px;
    font-weight: normal;
}

.offer-desc-price {
    margin: 10px auto;
}

.offer-desc-price .old {
    font-size: 17px;
    color: #c3c1c1;
    text-decoration: line-through;
}

.offer-desc-price .new {
    font-weight: bold;
    font-size: 20px;
    color: #009500;
}

.offer-timer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 7px 0;
}

.offer-timer-item {
    color: var(--main-color-one);
    width: 60px;
    height: 60px;
    border: 1px solid #f8f8f8;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    padding: 5px;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.offer-timer-item .number {
    font-weight: bold;
    font-size: 16px;
}

.offer-btn {
    margin: 22px 0;
}

.offer-item-link {
    margin: 10px 10px;
    max-height: 400px;
    overflow-y: scroll;
    padding: 10px 0 10px 10px;
}

.se-desc {
    margin-top: 20px;
}

.se-desc h6 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 7px;
}

.se-desc ul {
    margin-bottom: 10px;
    list-style: none;
    padding-right: 10px;
}

.se-desc ul li {
    padding: 2px 0;
    position: relative;
    font-size: 14px;
}

.se-desc ul li::before {
    content: "\f28a";
    font-size: 8px;
    font-family: bootstrap-icons, serif !important;
    color: #000;
    vertical-align: middle;
    margin-left: 2px;
    line-height: 18px;
}

.offer-item-link .swiper-slide {
    width: 100% !important;
}

.offer-item-link .swiper-wrapper {
    flex-direction: column !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

.offer-item-link-item {
    margin-bottom: 10px;
    background: #f4f5f9;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 7px;
}

.offer-item-link-item h6 {
    font-size: 14px;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.offer-item-link .swiper-slide-thumb-active .offer-item-link-item {
    border-right: 4px solid var(--main-color-one);
}

.swiper-slide:not(.swiper-slide-active) .offer-item {
    opacity: 0;
}

.offer-item .countdown-container .countdown-value {
    width: 50px;
    height: 50px;
    font-size: 16px;
    border-radius: 50%;
}

.offer-item .countdown-container .countdown-heading {
    font-size: 16px;
}

/*========================== end offer section ==========================*/
/*========================== start banner section ==========================*/
.banner-item {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.banner-item a {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.banner-item img {
    display: block;
    margin: 0 auto;
    max-height: 100%;
    object-fit: contain;
    transition: 0.8s all ease;
}

.banner-item:hover img {
    display: block;
    transform: scale(1.050);
}

/*========================== end banner section ==========================*/
/*========================== start section product slider ==========================*/
.pro-slider {
    position: relative;
    border-radius: 20px;
    padding: 20px 5px;
    min-height: 420px;
}

.pro-slider::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    height: 270px;
    background: var(--main-color-one);
    border-radius: 30px 30px 5px 5px;
}

.pro-slider .swiper-wrapper {
    padding-top: 60px;
}

.pro-slider .swiper-slide {
    padding: 0 10px;
}

.sw-title-image {
    padding-top: 50px;
}

.product-slider .swiper-slide {
    width: 100%;
}

.product-slider {
    margin-top: 12px;
    margin-bottom: 8px;
}

.site-slider .swiper {
    padding-bottom: 86px;
}

.site-slider .swiper-button-next, .site-slider .swiper-button-prev {
    background-color: #fff;
    padding: 3px 20px;
    border-radius: 5px;
    top: 88%;
    right: 51% !important;
    border: 1px solid var(--bs-gray-500);
}

.site-slider .swiper-button-prev {
    right: 47.5% !important;
}

.site-slider .swiper-button-next::after, .site-slider .swiper-button-prev::after {
    color: var(--color-site);
}
/* دکمه سبد خرید */
.product-add-cart {
    order: 2;
    width: 100%;
    height: 36px;
    margin-top: 8px;
    padding: 0 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff !important;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(65, 60, 175, 0.2);
}

.product-add-cart span,
.product-add-cart i {
    color: #fff !important;
}

.product-add-cart-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
}

.product-add-cart-icon i {
    font-size: 13px;
}

/* اصلاح کامل کارت در گوشی */
@media (max-width: 575.98px) {

    .pro-slider {
        min-height: auto !important;
        padding: 10px 0 8px !important;
        border-radius: 16px;
    }

    .pro-slider::before {
        top: 0 !important;
        height: 180px !important;
        border-radius: 22px 22px 5px 5px;
    }

    .pro-slider .swiper-wrapper {
        padding-top: 28px !important;
        align-items: stretch;
    }

    .pro-slider .swiper-slide {
        height: auto;
        padding: 0 4px !important;
        display: flex;
    }

    .pro-slider .mobile-product-card {
        width: 100%;
        height: 100%;
        padding: 7px !important;
        border-radius: 11px !important;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .pro-slider .product-card-link {
        order: 1;
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    /* تصویر کوچک‌تر */
    .pro-slider .product-image {
        width: 100%;
        height: 100px !important;
        margin: 0 0 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pro-slider .product-image img {
        width: 100%;
        height: 100% !important;
        max-height: 100px;
        object-fit: contain;
    }

    /* مخفی‌کردن تصویر دوم در موبایل */
    .pro-slider .product-image .two-image {
        display: none !important;
    }

    .pro-slider .product-title {
        min-height: 52px;
        margin-bottom: 6px !important;
    }

    .pro-slider .product-title .title > span {
        display: block;
        font-size: 7px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pro-slider .product-title .title p {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;

        margin: 4px 0 0 !important;
        font-size: 10px !important;
        font-weight: 700;
        line-height: 1.6;

        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .pro-slider .product-action {
        min-height: 48px;
        margin-top: auto;
        gap: 3px;
        align-items: flex-end;
    }

    .pro-slider .product-action .discount {
        flex-shrink: 0;
    }

    .pro-slider .product-action .discount > div {
        padding: 5px !important;
        border-radius: 7px !important;
    }

    .pro-slider .product-action .discount span {
        font-size: 8px !important;
    }

    .pro-slider .product-action .price {
        min-width: 0;
    }

    .pro-slider .product-action .new-price {
        margin-bottom: 1px;
        font-size: 9px !important;
        line-height: 1.7;
        white-space: nowrap;
    }

    .pro-slider .product-action .old-price {
        margin-bottom: 0;
        font-size: 7px !important;
        white-space: nowrap;
    }

    /* دکمه مستطیلی با radius کم */
    .pro-slider .product-add-cart {
        order: 2;
        height: 31px;
        margin-top: 6px;
        padding: 0 5px;
        border-radius: 7px;
        gap: 4px;
        font-size: 8px;
        box-shadow: 0 3px 8px rgba(65, 60, 175, 0.18);
    }

    .pro-slider .product-add-cart-icon {
        width: 19px;
        height: 19px;
        border-radius: 5px;
    }

    .pro-slider .product-add-cart-icon i {
        font-size: 11px;
    }

    /* فلش‌ها در گوشی فضای کارت را خراب نکنند */
    .pro-slider .swiper-button-next,
    .pro-slider .swiper-button-prev {
        display: none !important;
    }

    .site-slider .pro-slider {
        padding-bottom: 10px !important;
    }
}
.product-title-ellipsis {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.pro-slider .product-title,
.pro-slider .product-title .title {
    min-width: 0;
    width: 100%;
}

/*========================== end section product slider ==========================*/
/*========================== start product group ==========================*/
.product-group-item {
    padding: 5px;
}

.product-group .col-lg-3:not(:last-child) {
    border-left: 1px solid var(--bs-gray-300) !important;
}

.product-group-item .col-6 {
    padding: 10px;
}

.product-group-item .col-6:nth-child(1), .product-group-item .col-6:nth-child(2) {
    border-bottom: 1px solid var(--bs-gray-300);
}

.product-group-item .col-6:nth-child(odd) {
    border-left: 1px solid var(--bs-gray-300);
}

.product-group-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/*========================== end product group ==========================*/
/*========================== start quick select ==========================*/
.mini-box {
    transition: 0.1s all linear;
    border-bottom: 2px solid transparent;
}

.mini-box:hover {
    border-bottom: 2px solid var(--main-color-one);
}

/*========================== end quick select ==========================*/
/*========================== start blog slider ==========================*/
.blog-item {
    background-color: #fff;
    border-radius: 20px 20px 10px 10px;
    box-shadow: var(--shadow-box);
    position: relative;
    height: 100%;
}

.blog-item:hover .image img {
    filter: grayscale(0);
}

.blog-item:hover .title h4 {
    color: var(--main-color-one);
}

.blog-item .title {
    padding: 12px;
}

.blog-item .image img {
    border-radius: 20px;
    filter: grayscale(0%);
    transition: 0.4s all ease-in-out;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.blog-item .title-item {
    border-radius: 10px;
    padding: 2px 7px;
}

.blog-item .title-item span {
    font-size: 12px;
    font-weight: bold;
}

.blog-item .title-item i {
    font-size: 16px;
}

.blog-item h4 {
    margin-top: 15px;
    line-height: 1.8;
}

.blog-slider.site-slider-sm .parent::before {
    height: 330px;
}

/*========================== end blog slider ==========================*/
/*========================== start footer ==========================*/
.footer {
    background-color: #fff;
    padding: 30px 0 20px;
    box-shadow: var(--shadow-box);
    margin-top: 10px;
}

.title-col-social {
    width: 76%;
    margin-right: auto;
}

.footer-col a:hover {
    color: var(--main-color-one);
}

.footer-col {
    margin-top: 20px;
}

.footer-col .navbar {
    padding: 0;
}

.footer-col .nav-link {
    padding: 5px 0;
    line-height: 1.8;
}

.footer-col .nav-item:first-child .nav-link {
    margin-bottom: 6px;
    color: var(--color-site);
    font-weight: 900;
}

.footer-col .social-link {
    margin-top: 10px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
}

.footer-col .social-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    transition: 0.3s all ease-in-out;
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.footer-col .social-link a.bi-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-col .social-link a.bi-twitter {
    background: #098ecc;
}

.footer-col .social-link a.bi-whatsapp {
    background: #04ac12;
}

.footer-col .social-link a.bi-youtube {
    background: #ce0909;
}

.footer-col .social-link a.bi-linkedin {
    background: #0d80c8;
}

.footer-app {
    background-color: var(--main-color-one);
    padding: 12px 16px;
    border-radius: 15px;
    margin: 22px 0;
}

.footer-app img {
    width: 150px;
    height: 44px;
    object-fit: contain;
}

.footer-description img {
    height: 108px;
    object-fit: contain;
}

.footer-description p {
    line-height: 2;
}

.footer-contact-image {
    width: 172px;
    max-width: 100%;
}

.footer-contact-image img {
    max-width: 100%;
    width: 135px;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

.factor-logo {
    width: 110px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
}

.footer-contact-call .navbar {
    padding-top: 8px;
    padding-bottom: 0;
}

.footer-contact-call .nav-link {
    line-height: 1.8;
}

.footer-form form label {
    flex: 1 1 auto;
}

.footer-form .form-control {
    min-height: 42px;
    border-radius: 10px;
}

.footer-form .btn {
    min-height: 42px;
    border-radius: 10px;
}

.footer-copyright {
    padding-top: 14px;
    border-top: 1px solid var(--bs-gray-300);
}

.footer-copyright p {
    margin-bottom: 0;
    line-height: 1.9;
}

/*========================== end footer ==========================*/
/*========================== start cart drawer ==========================*/
.cart-canvas-parent li:not(:last-child) {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.cart-canvas-delete a {
    background-color: #FF001122;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 15px;
    padding: 0;
}

.cart-canvas-delete a i {
    color: #f54b12;
}

.cart-canvas-delete a:hover {
    background-color: #FF00111F;
}

.cart-canvas-foots {
    border-top: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
}

.product-box-suggest {
    background-color: #fff;
    padding: 10px;
    margin: 65px 30px 30px 30px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.product-box-suggest-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: auto;
}

.product-box-suggest-title {
    margin: 10px auto;
    text-align: center;
}

.product-box-suggest-price {
    margin: 15px 0 0 0;
    text-align: center;
}

.product-box-suggest-price del {
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: var(--bs-danger);
    font-size: 18px;
}

.product-box-suggest-price del::before {
    content: '';
    position: absolute;
    top: 25%;
    right: -40%;
    background-color: #c00;
    width: 100%;
    height: 1px;
    transform: rotate(-8deg) translateX(-50%);
}

.product-box-suggest-price ins {
    text-decoration: none;
    margin-right: 15px;
    font-size: 18px;
    color: var(--main-color-green);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.product-box-suggest-price ins span {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 5px;
}

/*========================== end cart drawer ==========================*/
/*========================== start page product ==========================*/
.product-gallery img {
    max-width: 80%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: auto;
}

.product-gallery.not-found img, .product-gallery-thumb.not-found img {
    filter: grayscale(100%);
}

.product-gallery-thumb {
    padding: 2px;
}

.product-gallery .swiper-pagination {
    bottom: 20px;
}

.product-gallery .swiper-slide {
    border: 1px solid var(--bs-gray-400);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 10px 60px 10px;
}

.product-gallery .swiper-slide .swiper-zoom-container {
    padding: 10px;
}

.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
    background-color: #eee;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
}

.product-gallery .swiper-button-next::after,
.product-gallery .swiper-button-prev::after {
    color: var(--color-site);
}

.product-gallery-thumb {
    padding: 12px;
    border: 1px solid var(--bs-gray-400);
    border-radius: 10px;
}

.product-gallery-thumb img {
    display: block;
    max-width: 80%;
    height: 100px;
    object-fit: cover;
    margin: auto;
    opacity: 0.6;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.product-gallery-thumb img:hover {
    opacity: 1;
}

.product-gallery-thumb .swiper-slide {
    border-radius: 10px;
    transition: 0.1s all ease-in-out;
    padding: 10px;
    border: 1px solid transparent;
}

.product-gallery-thumb .swiper-slide-thumb-active {
    border-color: var(--main-color-one);
    border-width: 1px;
}

.product-gallery-thumb .swiper-slide-thumb-active img {
    opacity: 1;
}

.se-cart {
    background: var(--bs-gray-100);
    background-size: cover;
    border: 1px solid var(--bs-gray-400);
    box-shadow: var(--shadow-sm);
    padding: 10px;
    border-radius: 10px;
}

.scd-item {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.5;
}

.scd-item i {
    font-size: 18px;
}

.scd-item a,
.scd-item .link {
    color: #515115;
}

.se-cart-price-old {
    color: #4a4a4a;
    text-decoration: line-through;
    margin-left: 5px;
}

.se-cart-price-new {
    color: #04ac12;
    font-size: 20px;
    font-weight: bold;
}

.se-cart-item {
    padding: 15px 0;
}

.se-cart-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

/* icon product box */
.icon-product-box {
    z-index: 9;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.icon-product-box-item {
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #eee;
    padding: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary .swiper-button-next,
.summary .swiper-button-prev {
    top: 70% !important;
}

.icon-product-box-item i {
    font-size: 16px;
    display: inherit;
}

.icon-product-box-item span {
    display: block;
    text-align: center;
    font-size: 14px;
}

.pro_gallery {
    position: relative;
}

.special-label {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 9;
}

.special-label img {
    width: 80px;
}

/* end icon product box */
.product-meta-title {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.product-meta-title img {
    max-width: 100px;
}

.rating-star {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #FFE7C1;
    text-align: center;
    border-radius: 50%;
    color: #654700;
    font-size: 16px;
}

.product-meta-feature {
    margin-top: 20px;
}

.product-meta-feature-items ul {
    margin-top: 15px;
    position: relative;
    padding-right: 20px;
}

.product-meta-feature-items ul::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--bs-gray-200);
    border-radius: 10px;
}

.product-meta-feature-items ul::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 25px;
    background-color: var(--bs-gray-600);
    border-radius: 10px;
}

.product-meta-feature-items ul li {
    color: var(--text-muted);
}

.product-meta-feature-items ul li:not(:last-child) {
    margin-bottom: 10px;
}

.product-meta-feature-items ul li span {
    font-weight: bold;
}

.product-meta-feature-items ul li strong {
    margin-right: 7px;
    color: var(--text-muted);
    font-weight: normal;
}

.product-meta-color {
    margin-top: 20px;
}

.product-meta-color h5 {
    margin-bottom: 15px;
}

.product-meta-color-items {
    margin-top: 10px;
}

.product-meta-color-items label {
    background-color: #eee;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
}

.product-meta-color-items label:hover {
    background-color: #e2e2e2 !important;
}

.product-meta-color-items .btn-check:checked + .btn {
    border-color: var(--main-color-two) !important;
}

.product-meta-color-items .btn-check:checked + .btn:hover {
    background-color: transparent !important;
}

.product-meta-color-items label span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 7px;
    position: relative;
}

.product-meta-color-items .btn-check:checked + .btn span::before {
    content: '\F26E';
    color: #fff;
    font-size: 22px;
    font-family: 'bootstrap-icons', serif !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    padding: 10px 50px !important;
}

/* start multi seller */
.title-panel {
    margin-bottom: 30px;
    padding-bottom: 5px;
    position: relative;
}

.title-panel::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    height: 3px;
    background-color: var(--main-color-one);
    width: 70px;
    z-index: 2;
}

.title-panel::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    height: 3px;
    background-color: #eee;
    width: 100%;
    z-index: 1;
}

.responsive-table > table {
    width: 100%;
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch;
}

.responsive-table {
    overflow-x: auto;
    padding: 5px;
}

.main-table {
    margin-bottom: 0;
    padding: 10px;
    border-collapse: collapse;
    border-radius: 10px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #ddd;
    z-index: 100;
}

.main-table th {
    padding: 20px 0;
    font-size: 14px;
    vertical-align: middle;
}

.main-table tr {
    vertical-align: middle;
}

.multi-seller .main-table tr td {
    padding: 16px 12px;
}

.multi-seller .main-table tr td p {
    line-height: 1.8;
}

.multi-seller .main-table .btn {
    white-space: nowrap;
}

.main-table tr td.title {
    max-width: 280px;
    min-width: 280px;
}

.main-table tr td.counter {
    max-width: 180px;
    min-width: 180px;
}

/* end multi seller */
/* start product-descs */
.product-desc {
    position: relative;
}

.product-desc-tab {
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: auto;
    /* Firefox */
    margin-bottom: 10px;
}

.product-desc-content p {
    line-height: 35px;
}

.product-desc-tab::-webkit-scrollbar {
    display: none;
}

.product-desc-tab ul {
    min-width: 450px;
    flex-wrap: nowrap;
}

.product-desc-tab ul li {
    margin-left: 5px;
    margin-bottom: 10px;
}

.product-desc-tab ul li button {
    border: 2px solid transparent;
    height: 100%;
    outline: none;
    background: var(--bs-gray-200);
    padding: 20px 70px;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    display: block;
    position: relative;
}

.product-desc-tab ul li button.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 50%;
    height: 2px;
    background-color: var(--main-color-one);
}

.product-desc-tab ul li button i {
    margin-left: 5px;
}

.product-desc-tab-content {
    padding: 20px 0;
}

.product-desc .content-box {
    padding: 18px;
}

.product-desc-content {
    line-height: 1.9;
}

.product-desc-tab-content table tr th {
    width: 200px;
}

.product-desc-tab-content table tr td {
    padding: 12px 0;
}

.tab-title {
    font-size: 18px;
    color: #505050;
    text-align: center;
    font-weight: 600;
    line-height: 1.7;
}

.product-desc-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.table-product {
    --bs-table-striped-bg: rgb(0 0 0 / 3%);
}

.comment {
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    background-color: #fff !important;
}

.comment .title {
    background-color: #f8f9fb;
    padding: 10px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.comment-replay .title {
    background-color: #fff !important;
}

.comment .avatar img {
    width: 40px;
    height: 40px;
}

.star i.bi-star {
    color: #ccc;
}

.star i.bi-star-fill {
    color: #f7ad0d;
}

.star i.bi-star-half {
    color: #f7ad0d;
}

.positive-nav ul li {
    position: relative;
    padding-right: 10px;
}

.comment .comment-rates .positive {
    padding: 10px 0;
}

.positive-nav ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #0d9a00;
    border-radius: 50%;
}

.negitive-nav ul li {
    position: relative;
    padding-right: 10px;
}

.comment .comment-rates .negitive {
    padding: 10px 0;
}

.negitive-nav ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #d03404;
    border-radius: 50%;
}

.comment-reply {
    padding: 20px 0;
}

.product-desc-tab-content {
    position: relative;
}

/* end product-descs */
/* start content product */
.box-tabs ul li a {
    color: #6f6f6f;
}

.box-tabs ul li i {
    vertical-align: -8px;
    color: #ccc;
    padding: 3px;
}

.box-tabs .nav-tabs .nav-link {
    border: 0 solid transparent;
}

.box-tabs .nav-tabs .nav-link.active {
    border-top: 5px solid #00bfd6;
    border-radius: 0;
}

.box-content h4 {
    color: #6f6f6f;
}

.box-content span {
    color: #6f6f6f;
    font-size: 15px;
}

.box_list svg {
    margin-left: 5px;
}

.box-content .box_list .title {
    color: #4d4d4d;
}

.box-content .box_list i {
    vertical-align: -7px;
    color: #00bfd6;
}

.block {
    display: block;
}

.box_params_list p {
    display: block;
    padding: 14px 18px 12px;
    font-size: 13px;
    line-height: 1.692;
    color: #4d4d4d;
    min-height: 47px;
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
    font-weight: normal;
}

.border_right_custom1 {
    background: transparent;
    border-radius: 0 !important;
    font-weight: bold;
    font-size: 14px !important;
}

.border_right_custom2 {
    background-color: #f1f1f1;
}

.nav-tabs-custom {
    background: #F5F5F5;
}

.box_comment .bc1 {
    padding: 10px 33px 33px 60px;
}

.bc1 .row {
    background: #fcfcfc;
    border-radius: 5px;
}

.box_comment .progress_title,
.box_comment .progress_title2 {
    font-size: 14px !important;
}

.box_list p.title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
}

/* end content product */
/* start comment */
.comment-item {
    position: relative;
}

.comment-item label.label-float {
    position: absolute;
    top: -14px;
    background-color: #fff;
    right: 15px;
    padding: 5px;
}

.comment-item input.form-control, .comment-item select {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: right;
    font-size: 14px;
}

.tags.tagify.commentTags {
    background: #fff;
    padding: 6px 10px;
    --tags-focus-border-color: #333;
}

.btn-comment {
    padding: 15px 150px;
    border-radius: 30px;
}

.tag-pos .tagify__tag > div::before {
    inset: unset;
}

.tag-pos .tagify__tag {
    background-color: #afffb2e1;
    border-radius: 10px;
}

.tag-neg .tagify__tag > div::before {
    inset: unset;
}

.tag-neg .tagify__tag {
    background-color: #ffaeaedf;
    border-radius: 10px;
}

.tag-neg .tagify__tag-text {
    color: #480303;
}

.tag-pos .tagify__tag-text {
    color: #428e30;
}

.comment-replay {
    background-color: var(--main-color-one-shadow) !important;
}

/* end comment */
/* rating */
.rating {
    border: none;
}

.rating:not(:checked) > input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.rating:not(:checked) > label {
    float: right;
    width: 1em;
    padding: 0 .1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 200%;
    line-height: 1.2;
    color: #ddd;
}

.rating:not(:checked) > label:before {
    content: "\f586";
    font-family: 'bootstrap-icons', serif;
    width: 30px;
    height: 30px;
    position: absolute;
    background-color: #fff;
}

.rating > input:checked ~ label {
    color: #f7ad0d;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: #f7ad0d;
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
    color: #f7ad0d;
}

.rating > label:active {
    position: relative;
}

/* end rating */
/* product feature */
.shop-feature ul {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 20px;
}

.shop-feature ul li {
    margin: 0 10px;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
}

.shop-feature ul li img {
    width: 50px;
    margin: 0 0 10px 0;
    display: block;
    color: #fff;
}

.shop-feature ul li span {
    display: block;
    font-size: 16px;
    font-weight: 100;
}

/* end product feature */
/* start procut rating */
.product-rateing .title {
    padding-bottom: 20px;
}

.product-rateing .number {
    text-align: center;
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-rateing .number h2 {
    margin: 30px 0;
    color: #333;
    font-size: 40px;
}

.product-rateing .number .star {
    padding: 5px;
    background: #dddddd5b;
    border-radius: 10px;
}

.product-rateing .number .star .bi-star {
    color: #bbb;
}

.product-rateing .number .star .bi-star-fill {
    color: rgb(246, 130, 5);
}

.product-rateing .prog-rating {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-rateing .prog-rating .right {
    flex: 0 0 calc(10% - 10px);
    max-width: calc(10% - 10px);
}

.product-rateing .prog-rating .center {
    flex: 0 0 calc(80% - 10px);
    max-width: calc(80% - 10px);
}

.product-rateing .prog-rating .left {
    flex: 0 0 calc(10% - 10px);
    max-width: calc(10% - 10px);
}

.product-rateing .prog-rating .center .progress {
    margin-bottom: 3px;
}

/* end procut rating */
/* ---------------  */
.box_comment .bc1 {
    padding: 10px 33px 33px 60px;
}

.bc1 .row {
    background: #fcfcfc;
    border-radius: 5px;
}

.box_comment .progress_title,
.box_comment .progress_title2 {
    font-size: 14px !important;
}

.box_comment .progress {
    height: 4px !important;
    margin-top: 10px;
}

.box_comment .progress-bar {
    background-color: #00bfd6;
}

.box_filter .bf1 i {
    vertical-align: -6px;
    color: #00bfd6;
}

.active_custom {
    color: var(--main-color-one) !important;
    font-weight: bold;
}

.box_users_comment {
    margin-bottom: 36px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.box_users_comment.reply {
    background-color: var(--bs-gray-200);
}

.box_users_comment .box_message_light {
    font-size: 13px;
    line-height: 2.23;
    border-radius: 3px;
    color: var(--main-color-three);
    font-weight: bold;
    padding: 7px 0 7px 12px;
}

.box_message_light svg {
    margin-left: 5px;
}

.box_shopping span {
    font-size: 14px;
}

.box_shopping p svg {
    margin-left: 5px;
    color: #c1c1c1;
}

.box_shopping p a {
    color: var(--main-color-one);
    font-weight: bold;
    padding-bottom: 3px;
}

.box_shopping i {
    color: #c1c1c1;
    margin-left: 7px;
}

.box_shopping a {
    font-size: 14px;
    border-bottom: 1px dashed var(--main-color-one);
}

.box_message_dislike {
    padding: 7px 0 7px 12px;
    font-size: 12px;
    line-height: 2.23;
    color: #ff637d;
}

.box_message_dislike svg {
    margin-left: 5px;
}

.box_comment_header .span1 {
    font-size: 18px;
    font-weight: 800;
}

.box_comment_header .span2 {
    font-size: 13px;
    color: #adadad;
}

.evaluation-positive span {
    font-weight: bold;
    color: var(--main-color-three);
    font-size: 14px !important;
    margin-left: 5px;
}

.evaluation-positive ul li:before {
    color: var(--main-color-two);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    content: "\2022";
    font-size: 19px;
}

.evaluation-negative span {
    font-weight: bold;
    color: #ff637d;
    font-size: 14px !important;
}

.evaluation-negative ul li:before {
    color: #ff637d;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    content: "\2022";
    font-size: 19px;
}

.evaluation-negative,
.evaluation-positive {
    font-size: 14px !important;
}

.box_text_comment {
    font-size: 14px;
    line-height: 36px;
    text-align: justify;
}

.comments_likes {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.bs-qu {
    --bs-gutter-x: -0.3rem;
}

.comments_likes span {
    text-align: center;
    color: #777;
    font-size: 13px;
    line-height: 1.692;
}

.comments_likes .btn-like {
    border-radius: 4px;
    border: 1px solid var(--main-color-one);
    background: #fff;
    padding: 5px 8px;
    color: #8c8c8c;
    font-size: 12px;
    line-height: 1.692;
    margin-left: 20px;
    transition: 0.4s all ease-in-out;
}

.btn-like-dislike:hover {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
    color: #fff;
}

.comments_likes .btn-like i {
    line-height: 1 !important;
}

.comments_likes .btn-like:nth-last-child(1) {
    margin-left: 0;
}

.comments_likes .btn-like:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.email_check a {
    border-bottom: 1px dashed #1ca2bd;
}

.email_check {
    font-size: 14px;
}

.email_check label {
    line-height: 25px;
}

.box_questions .bq1 i {
    font-size: 90px;
    color: var(--main-color-one) !important;
}

.box_questions .bq1 .span1 {
    font-size: 25px !important;
    color: #565757 !important;
}

.box_questions .bq1 .span2 {
    color: #959595;
    font-size: 13px !important;
    margin-bottom: 10px;
    display: inline-block;
}

.box_questions .bq2::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 11px;
    border-color: transparent transparent transparent #dbdbdb;
    left: 100%;
    top: 50px;
}

.box_questions .bq2 {
    position: relative;
    border: 1px solid #dbdbdb;
    background: #fcfcfc;
    padding: 19px 29px 20px;
    color: #4d4d4d;
    min-height: 240px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
}

.bq2 a {
    font-size: 13px !important;
}

.bq2 .date {
    color: #565757;
    font-size: 12px;
    margin-left: auto;
}

.box_questions .bq1 .bi-chat-dots-fill {
    color: var(--main-color-two) !important;
}

.box_list .title {
    color: #565757;
    font-weight: bold;
}

.box_list section {
    margin-top: 20px;
}

.box_list section .container {
    padding: 0 40px;
}

.title-comment-product svg {
    margin-left: 5px;
    color: #007fee;
}

#modalComment .form-group {
    margin-bottom: 40px;
}

.btn-primary-pill {
    background: #04309f;
    font-weight: bolder;
    padding: 10px 0;
}

.bq-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px 30px;
}

.breadcrumb-item.active {
    font-size: 14px;
}

.list-inline-item:not(:last-child) {
    margin-left: 0.5rem;
    margin-bottom: 5px;
}

.list-inline-item {
    margin: 0 20px;
}

.product-gallery {
    padding: 5px;
}

.product-meta-info {
    background-color: #f4f4f4;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 10px;
}

.product-meta-price .old-price {
    display: inline-block;
    font-size: 14px;
    color: #7d7d7d;
    text-decoration: line-through;
}

.product-meta-price .new-price {
    display: block;
    font-size: 30px;
    color: var(--main-color-three);
}

.product-meta-info-item:not(:last-child) {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

/* read more */
.read-more-state {
    display: none;
}

.read-more-target {
    display: none;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
    visibility: visible;
    display: block;
}

.read-more-state ~ .read-more-trigger:before {
    content: 'بیشتر +';
}

.read-more-state:checked ~ .read-more-trigger:before {
    content: 'کمتر -';
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    color: var(--main-color-one);
    margin-top: 5px;
}

/* end read more */
.social-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-link a.bi-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-link a.bi-twitter {
    background: #098ecc;
}

.social-link a.bi-whatsapp {
    background: #04ac12;
}

.social-link a.bi-youtube {
    background: #ce0909;
}

.social-link a.bi-telegram {
    background: #0d80c8;
}

.social-link a.bi-linkedin {
    background: #0766a2;
}

.social-link a:hover {
    color: #fff;
    transform: translateY(-7px);
}

/* end product desc  */
/*========================== end page product ==========================*/
/*========================== start page cart ==========================*/
/* start cart time line */
.payment_navigtions {
    margin-bottom: 30px;
}

.checkout-headers ul li {
    position: relative;
    padding-left: 50px;
}

.checkout-headers ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #ccc;
    width: 50px;
    height: 3px;
}

.checkout-headers ul li:last-child.active::before {
    opacity: 0;
}

.checkout-headers ul li:last-child {
    padding-left: 0;
}

.checkout-headers ul li:last-child::before {
    background-color: transparent;
}

.checkout-headers ul li.active::before {
    background-color: var(--main-color-two);
}

.checkout-headers ul li a {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.checkout-headers ul li a p {
    margin-bottom: 0;
    color: #8c8888;
}

.checkout-headers ul li a span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #ccc;
    color: #fff;
    text-align: center;
    margin-left: 7px;
}

.checkout-headers ul li.active a span {
    background-color: var(--main-color-one);
}

.checkout-headers ul li.active a p {
    font-weight: 900;
    color: var(--color-site);
}

/* end cart time line */
.danger-label {
    padding: 5px 10px;
    background-color: #fc6d6d3b;
    border-radius: 5px;
    color: #f21919;
    font-size: 13px;
    display: inline-block;
    font-weight: normal;
}

.cart-product-item .remove i {
    color: #fb5959;
    font-size: 20px;
}

.cart-product-item {
    margin-bottom: 14px;
}

.cart-product-item .content-box {
    border-radius: 12px;
}

.cart-items > .item {
    padding: 14px 0;
}

.cart-items > .item > .row {
    align-items: center;
}

.cart-items .image img {
    max-height: 130px;
    object-fit: contain;
}

.cart-items .title h6 {
    line-height: 1.8;
    margin-bottom: 0;
}

.cart-item-feature {
    gap: 4px;
}

.cart-item-feature .item {
    line-height: 1.8;
}

.cart-product .action {
    gap: 6px;
    min-width: 170px;
}

.cart-product .product-box-price-price {
    align-items: baseline;
}

.cart-product .product-box-price-price h5 {
    font-weight: 900;
    margin-bottom: 0 !important;
}

.cart-product .product-box-price-price p {
    line-height: 1.4;
    font-size: 13px;
}

.cart-quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--bs-gray-300);
    border-radius: 12px;
    background-color: #fff;
}

.cart-quantity-secondary,
.cart-quantity-increase {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: 0.2s all ease;
}

.cart-item-remove {
    background-color: #fc6d6d3b;
    color: #f21919;
}

.cart-item-remove:hover,
.cart-item-remove:focus {
    background-color: #fb5959;
    color: #fff;
}

.cart-quantity-decrease {
    border: 1px solid var(--bs-gray-300);
    background-color: #f8f9fa;
    color: var(--main-color-one);
}

.cart-quantity-decrease:hover,
.cart-quantity-decrease:focus {
    border-color: var(--main-color-one);
    background-color: var(--main-color-one-shadow);
    color: var(--main-color-one);
}

.cart-quantity-increase {
    background-color: var(--main-color-one);
    color: #fff;
}

.cart-quantity-increase:hover,
.cart-quantity-increase:focus {
    background-color: var(--main-color-three);
    color: #fff;
}

.cart-quantity-value {
    width: 50px;
    height: 38px;
    padding: 0 6px;
    border: 1px solid var(--bs-gray-300);
    border-radius: 9px;
    background-color: #fff;
    color: var(--color-site);
    font-weight: 800;
    text-align: center;
    cursor: default;
}

.cart-item-remove:focus,
.cart-quantity-decrease:focus,
.cart-quantity-increase:focus,
.cart-quantity-value:focus {
    outline: 0;
    box-shadow: 0 0 0 3px var(--main-color-one-shadow);
}

.cart-quantity-secondary i,
.cart-quantity-increase i {
    font-size: 17px;
    line-height: 1;
}

.cart-product-item .remove {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* cart canvases */
.cart-canvases .item {
    background-color: #fff;
    box-shadow: var(--shadow-box);
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--bs-gray-400);
}

.cart-canvases .item .action .remove {
    padding: 0 7px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s all ease-in-out;
}

.cart-canvases .item .action .remove:hover {
    background-color: #fea5a552 !important;
}

.cart-canvases .item .action .remove:hover a i {
    color: #fc6d6d;
}

.cart-canvases .item .price .price-discount {
    text-decoration: line-through;
    color: #cccccc;
    font-weight: normal !important;
}

.cart-canvases .item .price .price-off {
    color: #05bf71;
}

.cart-canvas .offcanvas-body {
    background: #f4f4f4 !important;
}

.cart-canvases .item .factor .title {
    padding-bottom: 10px;
    border-bottom: 3px solid #eee;
    margin-bottom: 10px;
}

.cart-canvases .item .factor .title img {
    width: 25px;
    margin-left: 5px !important;
}

.cart-canvases .item .factor .factor-item {
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    gap: 10px;
}

.cart-canvases .item .factor .factor-item p {
    font-weight: 700;
    text-align: left;
}

.cart-canvases .item .factor .factor-item:nth-of-type(4) {
    padding-top: 10px;
    border-bottom: 0;
}

.cart-canvases .item .factor .factor-item:nth-of-type(4) h5,
.cart-canvases .item .factor .factor-item:nth-of-type(4) p {
    font-size: 20px !important;
    font-weight: 900;
}

.cart-canvases .item .factor .action .btn {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

p.mb-0.text-muted-two.ms-1 {
    line-height: 3;
}

/* end cart canvases */
.cart-empty-image {
    max-width: 400px;
    width: min(100%, 360px);
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.content-box .cart-empty-image + h5 {
    line-height: 1.8;
    margin-bottom: 20px;
}

/*========================== end page cart ==========================*/
/*========================== start page category ==========================*/
/* start paginatae */
.my-paginate ul {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.my-paginate li {
    margin-left: 0;
    margin-bottom: 8px;
}

.my-paginate li.disabled a {
    background: #fff;
}

.my-paginate li.active a {
    background: var(--main-color-one);
    border-color: var(--main-color-one);
    font-weight: bold;
}

.my-paginate li.disabled a i {
    color: #a0a0a096;
}

.my-paginate li a i::before {
    line-height: 1 !important;
}

.my-paginate li a {
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    padding: 7px 16px;
    color: #515151;
    background: #fff;
    min-width: 44px;
    height: 44px;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
}

.my-paginate li a i {
    color: #515151;
    line-height: 1;
}

/* end paginate */
.category .item {
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-box);
}

.category .swiper-slide {
    padding: 10px 0;
}

.category-sort .content-box {
    padding: 14px 0;
}

.category-sort .d-flex.align-items-center.justify-content-between {
    gap: 15px;
}

.category-sort .box_filter ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.category-sort .box_filter .list-inline-item {
    margin-left: 0;
}

.category-sort .box_filter .list-inline-item:first-child {
    color: #515151;
    font-weight: 700;
    margin-left: 4px;
}

.category-sort .box_filter a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 10px;
    color: #515151;
    background-color: #f8f9fa;
    transition: 0.2s all ease;
}

.category-sort .box_filter a:hover,
.category-sort .box_filter a.active_custom {
    color: var(--main-color-one) !important;
    background-color: var(--main-color-one-shadow);
}

.category-sort .box_filter_counter {
    white-space: nowrap;
    color: #515151;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 7px 12px;
}

.filter-item-select {
    background-color: #EBEDF07A;
    padding: 5px 10px;
    border-radius: 15px;
}

.filter-item-select select {
    background-color: transparent;
    border: none;
    position: relative;
}

.item-boxs .item-box {
    padding: 12px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid var(--bs-gray-200);
}

.item-boxs .item-box:not(:last-child) {
    margin-bottom: 10px;
}

.item-boxs .item-box a[data-bs-toggle="collapse"].collapsed i::before {
    transition: 0.3s;
}

.item-boxs .item-box a[data-bs-toggle="collapse"] i::before {
    transition: 0.3s;
}

.item-boxs .item-box a i {
    transition: 0.3s;
    font-size: 16px;
}

.item-boxs .item-box a[data-bs-toggle="collapse"].collapsed i::before {
    transform: rotate(-180deg);
}

.item-boxs .item-box .title {
    padding: 8px 10px;
    background-color: var(--bs-gray-200);
    border-radius: 10px;
    margin-bottom: 12px;
}

.item-boxs .item-box .title h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

.item-boxs .item-box .title .btn {
    padding: 4px 8px;
}

.category .site-category-items:hover {
    box-shadow: var(--shadow-md) !important;
}

.input-range-filter {
    direction: rtl;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #f4f4f4;
}

.item-box .desc {
    padding: 0 8px 8px;
    color: #515151;
    line-height: 1.9;
}

.item-box .desc .form-check {
    min-height: 28px;
}

.item-box .desc .form-check-label {
    color: #515151;
    font-size: 14px;
}

.item-boxs {
    background-color: #fff;
    box-shadow: var(--shadow-box);
    border-radius: 10px;
    padding: 10px;
}

.item-box:last-child {
    padding-bottom: 2px;
}


.filter-range {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
}

.filter-range li {
    width: 50%;
    text-align: center;
    font-size: 13px;
    line-height: 1.692;
    letter-spacing: 3px;
    color: #858585;
    padding: 13px 15px 20px;
    position: relative;
}

.filter-range li span {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -10px;
    font-size: 13px;
    font-weight: 700;
}

.filter-range li input[type=text] {
    width: 100%;
    height: 40px;
    border: 1px solid #dee2e6;
    background-color: #f5f5f5;
    border-radius: 7px;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    margin: 6px 0;
    text-align: center;
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 700;
}

.filter-range li.label {
    width: auto;
    padding: unset;
}

.filter-price {
    text-align: center;
    min-height: 140px;
}

.filter-price .filter-slider {
    padding: 18px 18px 18px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-sizing: border-box;
}

.filter-price .filter-slider .noUi-horizontal {
    height: 4px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.filter-price .filter-slider .noUi-target {
    background-color: #c4c4c4;
    border: 0;
}

.filter-price .filter-slider .noUi-connect,
.filter-price .filter-slider .noUi-origin {
    left: 0;
}

.filter-price .filter-slider .noUi-connect {
    background-color: #000;
}

.filter-price .filter-slider .noUi-handle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    top: -9px;
    left: 0;
    right: -12px;
    background-color: #000;
    border: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    cursor: pointer;
}

.filter-price .filter-slider .noUi-handle::before, .filter-price .filter-slider .noUi-handle::after {
    display: none;
}

/*========================== end page category ==========================*/
/*========================== start page compare ==========================*/
.compare-title {
    padding: 10px 0;
    margin-bottom: 15px;
    display: flex;
}

.compare-title i {
    margin-left: 10px;
}

.compare-title h6 {
    font-weight: bold;
    font-size: 20px;
}

.compare table {
    border: 1px double #d7d7d7;
    border-collapse: separate;
    border-spacing: 0;
}

.compare table tr {
    width: 100%;
}

.compare table tr th, .compare table tr td {
    font-size: 14px;
    vertical-align: middle;
    text-align: center;
    min-width: 220px;
    max-width: 320px;
    border: 1px double #d7d7d7;
    padding: 12px 18px;
    line-height: 1.9;
}

.compare table td i {
    margin-left: 10px;
}

.compare table tr td:nth-child(1) {
    font-weight: bold;
    color: #444;
}

.td-head {
    font-size: 14px;
    text-align: right !important;
    background-color: rgba(238, 239, 241, 0.63) !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.compare-box {
    position: relative;
    padding: 14px 0 4px;
}

.compare-box .compare-delete {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.compare-delete i {
    cursor: pointer;
    font-size: 20px;
    transition: .2s all ease;
}

.compare-delete span i:hover {
    color: #d12714;
}

.compare-add {
    display: flex;
    justify-content: center;
}

.compare-add-product {
    width: 220px;
    border: 1px dashed #cdcaca;
    height: 100%;
    padding: 24px 12px;
    border-radius: 10px;
    line-height: 1.8;
}

.cap-title {
    margin: 10px 0;
}

.cap-icon i {
    font-size: 30px;
    color: #666;
}

.empty-cell {
    position: relative;
    text-align: center;
}

.empty-cell:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    border-radius: 5px;
    background: #ccc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.compare-product-box {
    min-width: 300px;
    box-shadow: none;
}

.compare .table-responsive {
    border-radius: 14px;
    border: 1px solid #eee;
}

.compare .product-box {
    min-width: 210px;
    border-radius: 12px;
}

.compare .product-box .product-image {
    height: 150px;
}

.compare .product-box .product-image img {
    max-height: 140px;
    object-fit: contain;
}

.compare .product-box .product-title {
    min-height: 62px;
}

.compare .product-box .product-action {
    padding-top: 8px;
    gap: 8px;
}

/*========================== end page compare ==========================*/
/*========================== start page checkout ==========================*/
.image-selector ul {
    list-style-type: none;
    flex-wrap: wrap;
    gap: 10px;
}

.image-selector li {
    display: inline-block;
}

.image-selector input[type="radio"][id^="cb"] {
    display: none;
}

.image-selector label {
    border: 2px solid #fff;
    padding: 12px;
    display: block;
    position: relative;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
    min-height: 74px;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
}

.image-selector label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 2px solid var(--bs-gray-400);
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.image-selector label img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

.image-selector :checked + label {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 3px var(--main-color-one-shadow);
}

.image-selector :checked + label:before {
    content: "✓";
    background-color: var(--main-color-one);
    transform: scale(1);
}

.image-selector :checked + label img {
    transform: scale(0.9);
    z-index: -1;
    border-radius: 5px;
}

.send-item {
    min-width: 190px;
    min-height: 62px;
    padding: 10px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
}

.send-item.active {
    color: var(--main-color-one);
}

.detail-order {
    background-color: var(--bs-info-bg-subtle);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--bs-info);
}

.detail-order-item {
    gap: 8px;
    line-height: 1.9;
}

.detail-order-item h6 {
    min-width: 110px;
    margin-bottom: 0;
    font-weight: 800;
}

.detail-order .btn {
    min-width: 86px;
}

.content-box > .cart-product-item {
    margin-top: 28px !important;
    margin-bottom: 34px !important;
}

.content-box > .cart-product-item .cart-items {
    padding: 10px 12px;
    border-color: #eee !important;
}

.content-box > .cart-product-item .cart-items .image {
    text-align: center !important;
}

.content-box > .cart-product-item .cart-items .image img {
    max-height: 92px;
    object-fit: contain;
}

.content-box > .cart-product-item .cart-item-feature {
    margin-top: 12px !important;
}

.content-box > .cart-product-item .cart-item-feature .item:last-child {
    padding-top: 8px;
}

.show-discount-modal {
    border: 1px dashed var(--bs-gray-400);
    border-radius: 10px;
    padding-right: 16px !important;
    padding-left: 16px !important;
    background-color: #fff;
    line-height: 1.9;
}

.show-discount-modal > i {
    vertical-align: middle;
}

.delivary-payment-bank {
    padding-bottom: 8px;
}

.delivary-payment-bank .image-selector ul {
    gap: 12px;
}

.delivary-payment-bank .image-selector label {
    min-width: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivary-payment-bank .image-selector label img,
.delivary-payment-bank .image-selector input:checked + label img {
    display: block;
    opacity: 1;
    visibility: visible;
    filter: none;
    transform: none;
    z-index: 1;
    object-fit: contain;
}

.delivary-payment-bank .image-selector input:checked + label {
    background-color: #fff;
}

.checkout-quantity-control {
    margin-top: 2px;
}

/*========================== end page checkout ==========================*/
/*========================== start page delivery address ==========================*/
.da-parent {
    text-align: center;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    padding: 26px 16px;
}

.da-title {
    margin: 24px 0;
    line-height: 2;
}

.da-image img {
    width: 170px;
    max-width: 48vw;
}

.da-action .btn {
    min-width: 150px;
    min-height: 42px;
    border-radius: 10px;
}

#editModal .modal-content {
    border: 0;
    border-radius: 16px;
}

#editModal .modal-header {
    align-items: flex-start;
    padding: 22px 24px 14px;
    border-bottom-color: #eee;
}

.address-modal-description {
    margin-top: 8px;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}

#editModal .modal-body {
    padding: 22px 24px 24px;
}

#address-form .form-label {
    margin-bottom: 8px;
    color: var(--color-site);
    font-size: 14px;
}

#address-form .form-control,
#address-form .form-select {
    min-height: 48px;
    border-radius: 10px;
    border-color: var(--bs-gray-300);
    font-size: 14px;
    transition: 0.2s all ease;
}

#address-form textarea.form-control {
    min-height: 112px;
    resize: vertical;
    line-height: 2;
}

#address-form .form-control:focus,
#address-form .form-select:focus {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 3px var(--main-color-one-shadow);
}

#address-form [dir="ltr"] {
    text-align: left;
}

#address-form [aria-invalid="true"] {
    border-color: #dc3545;
}

.address-form-error {
    min-height: 22px;
    margin-top: 6px;
    color: #dc3545;
    font-size: 12px;
    line-height: 1.8;
}

.address-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.address-form-actions .btn {
    min-height: 46px;
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 10px;
    font-weight: 800;
}

.saved-address-card {
    border-bottom-color: #eee !important;
}

.saved-address-main p {
    margin-bottom: 0;
    color: var(--color-site);
    font-size: 15px;
    font-weight: 800;
    line-height: 2;
}

.saved-address-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.saved-address-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.saved-address-field {
    display: grid;
    grid-template-columns: 24px minmax(92px, auto) minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #686868;
    line-height: 1.8;
}

.saved-address-field-wide {
    grid-column: 1 / -1;
}

.saved-address-icon {
    color: var(--main-color-one);
    font-size: 17px;
}

.saved-address-label {
    color: #777;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.saved-address-value {
    min-width: 0;
    color: var(--color-site);
    font-size: 14px;
    overflow-wrap: anywhere;
}

.profile-details-card {
    padding: 20px;
    border-radius: 14px;
    background-color: #fff;
}

.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.profile-detail-item {
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fff;
}

.profile-detail-address {
    grid-column: 1 / -1;
}

.profile-detail-label {
    display: block;
    margin-bottom: 8px;
    color: #777;
    font-size: 13px;
    font-weight: 800;
}

.profile-detail-value {
    display: block;
    color: var(--color-site);
    font-size: 14px;
    line-height: 2;
    overflow-wrap: anywhere;
}

.profile-modal-description {
    margin-top: 8px;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}

#profile-edit-form .form-label {
    margin-bottom: 8px;
    color: var(--color-site);
    font-size: 14px;
}

#profile-edit-form .form-control,
#profile-edit-form .form-select {
    min-height: 48px;
    border-radius: 10px;
    border-color: var(--bs-gray-300);
    font-size: 14px;
    transition: 0.2s all ease;
}

#profile-edit-form textarea.form-control {
    min-height: 112px;
    resize: vertical;
    line-height: 2;
}

#profile-edit-form .form-control:focus,
#profile-edit-form .form-select:focus {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 3px var(--main-color-one-shadow);
}

#profile-edit-form [dir="ltr"] {
    text-align: left;
}

#profile-edit-form [aria-invalid="true"] {
    border-color: #dc3545;
}

.profile-form-error {
    min-height: 22px;
    margin-top: 6px;
    color: #dc3545;
    font-size: 12px;
    line-height: 1.8;
}

.profile-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.profile-form-actions .btn {
    min-height: 46px;
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 10px;
    font-weight: 800;
}

/*========================== end page delivery address ==========================*/
/*========================== start pages payment ==========================*/
.payment {
    text-align: center;
    padding: 10px 0;
}

.payment-icon i {
    font-size: 7em;
    color: var(--main-color-green);
}

.payment-title {
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
    line-height: 2;
}

.payment-detail-item h5 {
    font-size: 16px;
    font-weight: bold;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.payment-detail-item:not(:last-child) {
    margin-left: 0;
}

.payment-detail-item {
    flex: 1 1 160px;
    padding: 12px;
    border-radius: 10px;
    background-color: #f8f8f8;
}

.payment-detail-item h6 {
    margin-bottom: 10px;
}

/*========================== end pages payment ==========================*/
/*========================== start about page ==========================*/
.time-work {
    line-height: 35px;
    margin-left: 20px;
    background-color: var(--main-color-one-shadow);
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 10px;
    color: var(--main-color-one);
    box-shadow: var(--shadow-box);
}

.time-work i {
    margin-left: 10px;
}

.about-us-image {
    text-align: center;
}

.about-us-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.about-us-desc {
    line-height: 2;
}

.about-us-text p {
    line-height: 2.2;
}

.about-us-social .navbar-nav {
    gap: 6px;
}

.about-us-social .nav-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f7f7f7;
}

.about-us-link {
    gap: 10px;
    flex-wrap: wrap;
}

.about-us-faq .accordion-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.about-us-faq .accordion-item:not(:last-child) {
    margin-bottom: 10px;
}

.about-us-faq .accordion-button {
    line-height: 1.8;
    padding: 14px 18px;
}

.about-us-faq .accordion-body {
    line-height: 2.1;
}

.footer-namad-item a img {
    height: 100px;
    object-fit: contain;
}

.footer-namad-item a {
    min-width: 120px;
    display: flex;
    justify-content: center;
}

.about-us-title h2 {
    font-size: 65px;
}

.about-us-title h3 {
    font-size: 55px;
}

/*========================== end about page ==========================*/
/*========================== start page blog ==========================*/
.blog-heeader .header-form .input-btn-search {
    background-color: #3a3b9c;
    color: #fff;
    top: 0;
    left: 0;
    height: 100%;
}

.blog-heeader .header-form .input-search {
    padding: 10px 10px;
}

.blog-menu .content-box {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.blog-menu-items .navbar-nav {
    gap: 6px;
}

.blog-menu-items .nav-link {
    border-radius: 10px;
    padding: 9px 12px;
    color: #515151;
}

.blog-menu-items .navbar-nav > .nav-item:first-child > .nav-link,
.blog-menu-items .nav-link:hover {
    color: var(--main-color-one);
    background-color: var(--main-color-one-shadow);
}

.blog-menu-social .nav-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.parent-blog-menu-level-2 {
    position: relative;
}

.parent-blog-menu-level-2:hover .blog-menu-level-2 {
    display: flex;
}

.blog-menu-level-2 a {
    transition: 0.3s;
}

.blog-menu-level-2 a:hover {
    color: var(--main-color-one);
}

.blog-menu-level-2 a i {
    float: left;
}

.blog-menu-level-2 {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    width: 200px;
    box-shadow: var(--shadow-box);
    border-radius: 10px;
    padding: 10px;
    z-index: 19;
}

.parent-blog-menu-level-3 {
    position: relative;
}

.parent-blog-menu-level-3:hover .blog-menu-level-3 {
    display: flex;
}

.blog-menu-level-3 {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    background-color: #fff;
    width: 200px;
    box-shadow: var(--shadow-box);
    border-radius: 10px;
    padding: 10px;
    z-index: 20;
}

.blog-post-card {
    padding: 20px 20px 15px 20px;
    border: 1px solid var(--bs-gray-400);
}

.blog-post-card:hover {
    border: 1px solid var(--main-color-two);
}

.blog-post-card-title {
    height: 30px;
}

.blog-post-card-description {
    height: 80px;
}

.blog-post-card-description p {
    line-height: 40px;
    font-size: 14px;
}

.blog-post-card-thumbnail img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}

.box-ui-title .icon-circle::before {
    transform: translateY(-90%);
}

.mini-blog-item {
    display: flex;
    align-items: flex-start;
    justify-content: start;
}

.mini-blog-item .desc {
    margin-right: 10px;
}

.mini-blog-item .title {
    margin-bottom: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.mini-blog-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.mini-blog-item .image {
    position: relative;
    margin-bottom: 10px;
}

.mini-blog-item:not(:last-child) {
    margin-bottom: 10px;
}

.article-latest {
    padding: 20px 0;
}

.al {
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 10px;
}

.al-header a {
    color: #0580ad;
    --border-color: #05ae65;
}

.al-item {
    margin-bottom: 5px;
    position: relative;
    border-bottom: 6px solid #bcbcbc;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background-color: #fff;
}

.al-img {
    height: 100%;
}

.al-img img {
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.al-item:hover img {
    transform: scale(1.1);
}

.al-img img {
    border-radius: 10px;
}

.al-date {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    font-size: 13px;
    background-color: #ebbd18;
    color: #444;
    font-weight: 700;
}

.al-title {
    transition: 0.2s all linear;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.9;
    padding: 16px;
    font-weight: 800;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
}

.al-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(rgba(255, 255, 255, 0) 35%, rgba(0, 0, 0, 0.88) 100%);
    transition: 0.3s all ease-out;
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
    -ms-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
}

.grid-center {
    height: 270px;
}

.grid-img {
    height: 130px;
}

.blog-grid .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.blog-grid .col-lg-4 .al-title {
    font-size: 18px;
    padding: 20px;
}

.blog-post {
    margin-top: 30px;
}

.blog-post .row {
    --bs-gutter-y: 1.25rem;
}

.blog-post .blog-item {
    height: 100%;
    transition: 0.25s all ease;
}

.blog-post .blog-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-post .blog-item .image img {
    height: 210px;
}

.blog-post .blog-item .title {
    padding: 12px;
}

.blog-post .blog-item .title > .d-flex {
    gap: 8px;
}

.blog-post .blog-item .title-item {
    min-height: 32px;
}

.blog-post .blog-item .title-item:last-child {
    margin-left: 0 !important;
}

.blog-post .blog-item h4 {
    min-height: 52px;
    line-height: 1.8;
    margin-top: 14px;
    margin-bottom: 0;
}

.blog-post .my-paginate {
    margin-top: 18px !important;
}

/*========================== end page blog ==========================*/
/*========================== start page single blog ==========================*/
.blog-single-title {
    background-color: var(--main-color-one);
}

.blog-single-title-thumbnail img {
    height: 300px;
    object-fit: cover;
}

.blog-content-meta-detail {
    border-bottom: 1px solid #ddd;
    padding-bottom: 14px;
}

.blog-content-meta-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.8;
}

.blog-content-meta-detail-item h6 {
    margin: 0;
    font-weight: 800;
}

.blog-single-content {
    margin-top: 24px;
    line-height: 36px;
}

.blog-single-content p {
    line-height: 2.25;
    font-size: 16px;
    text-align: justify;
}

.blog-single-content h1,
.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4,
.blog-single-content h5,
.blog-single-content h6 {
    line-height: 1.9;
    margin-bottom: 18px;
    margin-top: 25px;
}

.blog-card-items li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.blog-card-items ul li:last-child {
    border-bottom: none;
}

.blog-single-content img {
    display: block;
    margin: 18px auto;
    border-radius: 12px;
    max-width: 100%;
}

.blog-card .card-body {
    padding: 0 15px;
}

.blog-card-items ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.blog-card-items ul li a span {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: var(--main-color-two);
    text-align: center;
    color: #fff;
}

.blog-single-content-meta + .blog-single-content {
    padding-top: 4px;
}

.blog-single-comment-items .content-box,
.blog-single-comment .content-box {
    border: 1px solid #eee;
}

.blog-single-comment .btn.main-color-one-bg {
    min-width: 130px;
    min-height: 42px;
    border-radius: 10px;
}

.blog-single-comment .form-check-label {
    line-height: 2;
    margin-right: 8px;
}

.box-ui {
    line-height: 1.9;
}

/*========================== end page single blog ==========================*/
/*========================== start register page ==========================*/
.bg-auth {
    background: url('../image/auth-bg.jpg') no-repeat;
    background-size: cover;
}

.comment-item {
    position: relative;
}

.comment-item label.label-float {
    position: absolute;
    top: 4px;
    background-color: #fff;
    right: 15px;
    padding: 5px;
}

.comment-item input.form-control, .comment-item select {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: right;
    border-radius: 10px;
    font-size: 14px;
}

.auth-form {
    padding: 15px;
    border: 1px solid #ccc;
}

.auth-form-title h2 {
    color: var(--color-site) !important;
}

.btn-login {
    padding: 12px 5px;
    background-color: var(--main-color-one);
    border-color: var(--main-color-one);
    font-size: 15px;
    border-radius: 0;
}

.btn-login:hover {
    background-color: var(--main-color-three);
    border-color: var(--main-color-three);
}

.loginTermsDesc {
    font-size: 14px;
    text-align: center;
    color: #333;
    direction: rtl;
    width: 90%;
    display: block;
    margin: auto;
}

a.underlined {
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
}

a.underlined:after {
    position: absolute;
    border-bottom: 1px solid #929292;
    content: "";
    right: 0;
    left: 0;
    bottom: 0;
}

.inline-btn-text {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}

.bg-auth {
    background: url('../image/auth-bg.jpg') no-repeat;
    background-size: cover;
}

.comment-item {
    position: relative;
}

.comment-item label.label-float {
    position: absolute;
    top: -14px;
    background-color: #fff;
    right: 16px;
    padding: 5px 10px;
}

.comment-item input.form-control, .comment-item select {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: right;
    border-radius: 10px;
    font-size: 14px;
    border-color: var(--bs-gray-400);
}

.comment-item input.form-control:focus, .comment-item select:focus {
    border-color: var(--main-color-one);
}

.auth-logo {
    width: 125px;
    height: auto;
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
}

.auth {
    padding: 28px 0;
}

.auth-items {
    width: 100%;
}

.auth-form {
    padding: 24px;
    border-color: var(--bs-gray-300);
    border-radius: 14px !important;
    box-shadow: var(--shadow-md) !important;
}

.auth-form-title {
    align-items: center;
    gap: 16px;
    margin-bottom: 24px !important;
    padding-bottom: 12px;
}

.auth-form-title h2 {
    margin-bottom: 0;
    font-weight: 900;
}

.auth-logo {
    width: 125px;
    max-width: 100%;
    max-height: 48px;
}

#form-auth,
#mobile-auth-form,
#otp-auth-form {
    padding-top: 12px !important;
    padding-bottom: 8px !important;
}

#form-auth .comment-item,
#mobile-auth-form .comment-item {
    margin-bottom: 24px !important;
}

#form-auth .step-username {
    margin-bottom: 26px !important;
}

#form-auth .comment-item label.label-float,
#mobile-auth-form .comment-item label.label-float {
    right: 18px;
    padding: 3px 9px;
    font-size: 13px;
}

#form-auth .comment-item input.form-control,
#form-auth .comment-item select,
#mobile-auth-form .comment-item input.form-control {
    min-height: 54px;
    padding-top: 16px;
    padding-bottom: 12px;
    border-radius: 12px;
    transition: 0.2s all ease;
}

#form-auth .comment-item input.form-control:focus,
#form-auth .comment-item select:focus,
#mobile-auth-form .comment-item input.form-control:focus {
    box-shadow: 0 0 0 3px var(--main-color-one-shadow);
}

.step-passwd input.form-control {
    padding-left: 112px;
}

.inline-btn-text {
    left: 8px;
}

.inline-btn-text .btn {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 9px;
    font-size: 13px;
    white-space: nowrap;
}

.auth-form .btn.main-color-one-bg {
    min-height: 50px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.auth-description {
    color: #4f4f4f;
    font-size: 15px;
    line-height: 2;
    text-align: right;
}

.auth-description span {
    display: block;
    color: #777;
    font-size: 13px;
}

.auth-field-error {
    min-height: 22px;
    margin-top: 8px;
    color: #dc3545;
    font-size: 13px;
    line-height: 1.8;
}

#mobile-auth-form #mobile {
    direction: ltr;
    text-align: left;
}

.loginTermsDesc {
    max-width: 430px;
    line-height: 2 !important;
    margin-top: 16px !important;
    color: #515151;
}

.loginTermsDesc a {
    display: inline-block;
}

/* otp sms */
#otp-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: nowrap;
    margin: 18px 0 8px;
}

.otp-mobile-display {
    padding: 10px 12px;
    border: 1px solid var(--bs-gray-200);
    border-radius: 12px;
    background: #f8f9fa;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
}

#otp-input input {
    text-align: center;
    padding: 10px 8px 10px 8px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    outline: none;
    height: 58px;
    width: 48px;
    font-weight: 800;
    font-size: 20px;
    transition: 0.2s all ease;
}

#otp-input .otp-digit[aria-invalid="true"],
#mobile-auth-form #mobile[aria-invalid="true"] {
    border-color: #dc3545;
}

#otp-input input:focus {
    border: 1px solid var(--main-color-one);
    box-shadow: 0 0 0 3px var(--main-color-one-shadow);
}

#otp-input input:focus::placeholder {
    color: transparent;
}

#otp-input input::-webkit-outer-spin-button,
#otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#otp-input input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

.otp-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.otp-edit-mobile,
.otp-resend {
    font-size: 13px;
    line-height: 1.8;
}

.otp-edit-mobile {
    color: var(--main-color-one);
    text-decoration: none;
}

.otp-edit-mobile:hover {
    color: var(--main-color-three);
}

.otp-resend {
    padding: 0;
    border: 0;
    background: transparent;
    color: #666;
}

.otp-resend:not(:disabled) {
    color: var(--main-color-one);
    font-weight: 800;
}

/* end otp sms */
/* Countdown-bar General */
.countDownContainer {
    display: flex;
    justify-content: center;
}

div.countdown-bar {
    width: 0;
    height: 20px;
    margin: 40px 0;
    background-color: #aaa;
    border-radius: 5px;
}

/* Loader */
div.countdown-bar div:nth-of-type(1) {
    width: 0;
    height: 100%;
    border-radius: 5px;
}

/* Timer */
div.countdown-bar div:nth-of-type(2) {
    width: 100%;
    height: 100%;
}

div.countdown-bar div:nth-of-type(2) span {
    font-family: var(--font-site), serif !important;
}

div.countdown-bar span {
    display: block;
    text-align: center;
}

div.countdown-bar span a {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: normal;
    background: transparent;
    font-family: var(--font-site), serif;
}

div.countdown-bar div:nth-of-type(2) span {
    margin-top: 10px;
    display: block;
    text-align: center;
    font-weight: normal;
}

/* end otp loader */
.social-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    transition: 0.3s all ease-in-out;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
}

.social-link a.bi-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-link a.bi-twitter {
    background: #098ecc;
}

.social-link a.bi-whatsapp {
    background: #04ac12;
}

.social-link a.bi-youtube {
    background: #ce0909;
}

.social-link a.bi-telegram {
    background: #0d80c8;
}

.social-link a.bi-linkedin {
    background: #0766a2;
}

.social-link a:hover {
    color: #fff;
    transform: translateY(-7px);
}

/*========================== end register page ==========================*/
/*========================== start panel page ==========================*/
.img-profile-panel {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.profile-box-nav .nav-item i {
    background-color: var(--main-color-one);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 50%;
}

.profile-box-nav .nav-item.active i {
    background-color: var(--main-color-two);
}

.profile-box-nav .nav-item.active .nav-link {
    font-weight: bold;
    color: var(--main-color-one);
}

.profile-box-nav .nav-link {
    transition: 0.3s all ease-in-out;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 12px;
}

.profile-box-nav .nav-link:hover {
    color: var(--main-color-one);
    background-color: #fff;
}

.panel-box {
    position: relative;
    overflow: hidden;
}

.panel-box::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -33px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color-one);
}

.panel-mini-card {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background-color: rgba(234, 234, 234, 0.3);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.panel-two-full-info-item .content {
    background-color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    box-shadow: 0 30px 20px rgba(0, 0, 0, 0.02);
    padding: 26px 17px;
    border: 1px solid var(--bs-gray-400);
    min-height: 112px;
}

.icon-card {
    width: 54px;
    height: 54px;
    background-color: var(--main-color-one);
    border-radius: 11px;
    box-shadow: 0 37px 50px rgba(255, 131, 83, 0.25);
    margin-left: 13px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card i {
    color: #fff;
    font-size: 25px;
}

.table-custom table {
    position: relative;
    margin-bottom: 0;
}

.table-custom table td {
    min-width: 200px;
}

.table-custom table::before {
    content: '';
    background-color: var(--main-color-two);
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
}

.slider-parent {
    background-color: #fff;
    margin-top: 7px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px;
}

.slider-parent::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    -ms-transform: scaleX(0.9);
    transform: scaleX(0.9);
    background-color: rgba(33, 35, 65, 0.04);
    width: 100%;
    height: 100%;
    z-index: -2;
    border-radius: 10px;
}

.slider-parent::after {
    content: "";
    position: absolute;
    top: -9px;
    left: 0;
    -ms-transform: scaleX(0.95);
    transform: scaleX(0.95);
    background-color: rgba(33, 35, 65, 0.04);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
}

.content .slider-parent.content-box,
.content .table-custom.slider-parent,
.orders .order-item.bg-white {
    border: 1px solid #eee;
}

.content .slider-parent.content-box .container-fluid {
    padding: 6px;
}

.content .comment-item {
    margin-bottom: 18px;
}

.content .comment-item label.label-float {
    right: 18px;
    padding: 4px 8px;
}

.content .comment-item input.form-control,
.content .comment-item select,
.content .comment-item textarea.form-control {
    min-height: 52px;
    border-radius: 10px;
}

.content .comment-item textarea.form-control {
    line-height: 2;
}

.content .comment-item + .btn,
.content form .btn.main-color-one-bg {
    min-height: 42px;
    border-radius: 10px;
}

.mini-box {
    background: var(--bs-gray-300);
    position: relative;
    padding: 30px 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-gray-400);
    box-shadow: var(--shadow-box);
}

.border-purple {
    border: 1px solid #805ad559;
}

.mini-box-icon {
    position: absolute;
    top: -15%;
    right: 50%;
    transform: translateX(50%);
}

.table-custom table {
    position: relative;
    z-index: 9;
}

.table-custom table td {
    min-width: 200px;
}

.table-custom table::before {
    content: '';
    background-color: var(--main-color-one);
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
}

.roundedTable {
    border-radius: 20px / 20px;
    border-spacing: 0;
    margin-bottom: 0;
}

.roundedTable th {
    padding: 4px;
}

.roundedTable tr td {
    border-right: none;
    border-bottom: none;
    padding: 12px 12px;
}

.roundedTable tr:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.roundedTable tr td:first-child {
    border-left: none;
}

.tab-panel-tbl {
    background-color: var(--bs-gray-200);
}

.tab-panel-tbl .nav-tabs li {
    margin-left: 10px;
}

.tab-panel-tbl .nav-tabs button.active {
    background-color: #fff;
}

.panel-latest-order {
    margin-top: 6px;
}

.panel-latest-order .main-table {
    box-shadow: none;
}

.panel-latest-order .roundedTable {
    border-radius: 14px;
    overflow: hidden;
}

.panel-latest-order .roundedTable tr {
    background-color: #fff;
    transition: 0.2s all ease;
}

.panel-latest-order .roundedTable tr:hover {
    background-color: #fafafa;
}

.panel-latest-order .roundedTable tr td {
    padding: 16px 12px;
    border-color: #eee;
}

.panel-latest-order h5 {
    margin-bottom: 0;
    line-height: 1.8;
    font-weight: 800;
}

.panel-latest-order .avatar-group {
    min-width: 118px;
}

.panel-latest-order .avatar.avatar-md {
    width: 42px;
    height: 42px;
}

.panel-latest-order .roundedTable tr td:nth-child(3) p:first-child,
.panel-latest-order .roundedTable tr td:nth-child(4) p:first-child {
    color: #515151 !important;
}

.panel-latest-order .roundedTable tr td:nth-child(4) p:last-child {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background-color: #f4f4f4;
}

.panel-latest-order .roundedTable .btn {
    min-width: 82px;
    min-height: 36px;
    border-radius: 10px;
    font-weight: 700;
}

#latest-order-pane .pagination.pagination-2 {
    gap: 6px;
    margin-top: 28px !important;
}

.order-list__table-body {
    min-height: 170px;
}

.order-list--empty {
    padding: 50px 0;
    text-align: center;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='25' ry='25' stroke='%23DDE2E9' stroke-width='6' stroke-dasharray='21%2c 21' stroke-dashoffset='38' stroke-linecap='square'/%3e%3c/svg%3e") !important;
    border-radius: 25px;
    margin: 20px 0;
}

.order-list__empty-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 800;
}

.detail-order {
    background-color: var(--bs-gray-200);
    padding: 10px;
    border-radius: 10px;
}

.bill-row__col:first-child {
    margin-left: 50px;
}

.bill-row__col {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bill-row__col label {
    white-space: nowrap;
}

.bill-row__col .cart__item-price {
    font-size: 22px;
    margin-left: 0;
}

.cart__item-price {
    margin-left: 20px;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.cart__item-price span {
    font-size: 12px;
}

.order-details__bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details__bill-title .order-details__bill-icon {
    width: 73px;
    height: 73px;
    margin: 15px auto 0;
}

.pagination.pagination-2 a.pageitem, .pagination.pagination-2 span.pageitem {
    width: auto;
}

.pagination.pagination-2 a, .pagination.pagination-2 span {
    border: none;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.4);
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pagination.pagination-2 a.active, .pagination.pagination-2 span.active {
    background: #f44336;
    color: #fff;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 10px 27px -20px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0 10px 27px -20px rgba(0, 0, 0, 0.33);
    box-shadow: 0 10px 27px -20px rgba(0, 0, 0, 0.33);
}

/* start main table */
.responsive-table > table {
    width: 100%;
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch;
}

.responsive-table {
    overflow-x: auto;
    padding: 5px;
}

.main-table {
    margin-bottom: 0;
    padding: 10px;
    border-collapse: collapse;
    border-radius: 10px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #ddd;
}

.main-table th {
    padding: 20px 0;
    font-size: 14px;
    vertical-align: middle;
}

.main-table tr {
    vertical-align: middle;
}

.main-table tr td.title {
    max-width: 280px;
    min-width: 280px;
}

.main-table tr td.counter {
    max-width: 180px;
    min-width: 180px;
}

/* end main table */
/* avatar */
.avatar {
    position: relative;
    width: 2.375rem;
    height: 2.375rem;
    cursor: pointer;
}

.avatar img {
    width: 100%;
    height: 100%;
    border: 1px solid var(--bs-gray-400) !important;
}

.avatar .avatar-initial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #69809a;
    font-weight: 600;
}

.avatar.avatar-online:after, .avatar.avatar-offline:after, .avatar.avatar-away:after, .avatar.avatar-busy:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 3px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    box-shadow: 0 0 0 2px #fff;
}

.avatar.avatar-online:after {
    background-color: #39da8a;
}

.avatar.avatar-offline:after {
    background-color: #69809a;
}

.avatar.avatar-away:after {
    background-color: #fdac41;
}

.avatar.avatar-busy:after {
    background-color: #ff5b5c;
}

.pull-up {
    transition: all 0.25s ease;
}

.pull-up:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0.25rem 1rem rgba(147, 158, 170, 0.45);
    z-index: 30;
    border-radius: 50%;
}

.avatar-xs {
    width: 1.625rem;
    height: 1.625rem;
}

.avatar-xs .avatar-initial {
    font-size: 0.625rem;
}

.avatar-xs.avatar-online:after, .avatar-xs.avatar-offline:after, .avatar-xs.avatar-away:after, .avatar-xs.avatar-busy:after {
    width: 0.325rem;
    height: 0.325rem;
    right: 1px;
}

.avatar-sm {
    width: 2rem;
    height: 2rem;
}

.avatar-sm .avatar-initial {
    font-size: 0.75rem;
}

.avatar-sm.avatar-online:after, .avatar-sm.avatar-offline:after, .avatar-sm.avatar-away:after, .avatar-sm.avatar-busy:after {
    width: 0.4rem;
    height: 0.4rem;
    right: 2px;
}

.avatar-md {
    width: 3rem;
    height: 3rem;
}

.avatar-md .avatar-initial {
    font-size: 1.125rem;
}

.avatar-md.avatar-online:after, .avatar-md.avatar-offline:after, .avatar-md.avatar-away:after, .avatar-md.avatar-busy:after {
    width: 0.6rem;
    height: 0.6rem;
    right: 4px;
}

.avatar-lg {
    width: 4rem;
    height: 4rem;
}

.avatar-lg .avatar-initial {
    font-size: 1.5rem;
}

.avatar-lg.avatar-online:after, .avatar-lg.avatar-offline:after, .avatar-lg.avatar-away:after, .avatar-lg.avatar-busy:after {
    width: 0.8rem;
    height: 0.8rem;
    right: 5px;
}

.avatar-xl {
    width: 4.5rem;
    height: 4.5rem;
}

.avatar-xl .avatar-initial {
    font-size: 1.875rem;
}

.avatar-xl.avatar-online:after, .avatar-xl.avatar-offline:after, .avatar-xl.avatar-away:after, .avatar-xl.avatar-busy:after {
    width: 0.9rem;
    height: 0.9rem;
    right: 6px;
}

.avatar-group .avatar {
    transition: all 0.25s ease;
}

.avatar-group .avatar img,
.avatar-group .avatar .avatar-initial {
    border: 2px solid #fff;
}

.avatar-group .avatar .avatar-initial {
    background-color: #8799ae;
}

.avatar-group .avatar:hover {
    z-index: 30;
    transition: all 0.25s ease;
}

.avatar-group .avatar {
    margin-left: -0.8rem;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

.avatar-group .avatar-xs {
    margin-left: -0.65rem;
}

.avatar-group .avatar-sm {
    margin-left: -0.75rem;
}

.avatar-group .avatar-md {
    margin-left: -0.9rem;
}

.avatar-group .avatar-lg {
    margin-left: -1.5rem;
}

.avatar-group .avatar-xl {
    margin-left: -1.75rem;
}

.avatar-group .avatar {
    margin-right: -0.8rem;
    margin-left: 0;
}

.avatar-group .avatar-xs {
    margin-right: -0.65rem;
}

.avatar-group .avatar-sm {
    margin-right: -0.75rem;
}

.avatar-group .avatar-md {
    margin-right: -0.9rem;
}

.avatar-group .avatar-lg {
    margin-right: -1.5rem;
}

.avatar-group .avatar-xl {
    margin-right: -1.75rem;
}

/* end avatar */
/* start orders-item */
.ui-boxs {
    padding-bottom: 20px;
    border-radius: 10px;
}

.ui-box {
    margin-bottom: 20px;
}

.ui-box-white .ui-box-item-desc {
    background-color: #fff;
}

.ui-box-white .ui-box-item-title {
    background-color: #f7f7f7;
}

.ui-box-item {
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0 0 10px 0 !important;
}

.ui-box-item-title {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.ui-box-item-title h4 {
    font-size: 18px;
}

.ui-box-item-desc {
    background: #f7f7f7;
    padding: 10px;
}

/* end dashboard */
/*========================== end panel page ==========================*/
/*========================== start ticket page ==========================*/
.comment {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-left: 66px
}

.comment .comment-author-ava {
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 50px;
    border-radius: 50%;
    overflow: hidden
}

.comment .comment-author-ava > img {
    display: block;
    width: 100%
}

.comment .comment-body {
    position: relative;
    padding: 24px;
    border: 1px solid #e1e7ec;
    border-radius: 7px;
    background-color: #fff
}

.ticket-settings {
    line-height: 2;
}

.ticket-settings .ticket-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ticket-settings .badge {
    padding: 7px 10px;
}

.ticket-created-at {
    color: #555;
}

.ticket-title h6 {
    line-height: 2;
}

.panel-latest-order .card.slider-parent {
    border: 1px solid #eee;
}

.panel-latest-order .alert {
    line-height: 2;
    border-radius: 12px;
}

.panel-latest-order textarea.form-control {
    min-height: 180px;
    line-height: 2;
    border-radius: 10px;
}

.panel-latest-order input.form-control {
    min-height: 44px;
    border-radius: 10px;
}

.panel-latest-order form .btn {
    min-height: 44px;
    border-radius: 10px;
}

.comment .comment-body {
    box-shadow: var(--shadow-sm);
}

.comment.active .comment-body {
    background-color: #CEEFB5C9;
}

.comment.active .comment-author-ava {
    left: unset;
    right: 0;
}

.comment.active {
    display: block;
    position: relative;
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 60px;
}

.comment.active .comment-body::after, .comment.active .comment-body::before {
    left: 100%;
    right: -20px;
    border-left-color: #e1e7ec;
    border-right-color: transparent;
}

.comment.active .comment-body::after {
    border-right-color: var(--main-color-two-shadow);
    display: none;
}

.comment .comment-body::after,
.comment .comment-body::before {
    position: absolute;
    top: 12px;
    right: 100%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none
}

.comment .comment-body::after {
    border-width: 9px;
    border-color: transparent;
    border-right-color: #fff
}

.comment .comment-body::before {
    margin-top: -1px;
    border-width: 10px;
    border-color: transparent;
    border-right-color: #e1e7ec
}

.comment .comment-title {
    margin-bottom: 8px;
    color: #606975;
    font-size: 14px;
    font-weight: 500
}

.comment .comment-text {
    margin-bottom: 12px;
    line-height: 2.2;
}

.comment .comment-footer {
    display: table;
    width: 100%
}

.comment .comment-footer > .column {
    display: table-cell;
    vertical-align: middle
}

.comment .comment-footer > .column:last-child {
    text-align: right
}

.comment .comment-meta {
    color: #333;
    font-size: 13px
}

.comment .reply-link {
    transition: color .3s;
    color: #606975;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none
}

.comment .reply-link > i {
    display: inline-block;
    margin-top: -3px;
    margin-right: 4px;
    vertical-align: middle
}

.comment .reply-link:hover {
    color: #0da9ef
}

.comment.comment-reply {
    margin-top: 30px;
    margin-bottom: 0
}

/*========================== end ticket page ==========================*/
/*========================== start order page ==========================*/
/* start order process */
.steps .step {
    display: block;
    width: 100%;
    margin-bottom: 35px;
    text-align: center
}

.step.completed .step-title {
    font-weight: bold !important;
    padding-right: 15px;
    position: relative;
}

.step.completed .step-title::before {
    content: '\F26A';
    position: absolute;
    bottom: -35px;
    right: 50%;
    transform: translateX(50%);
    font-family: 'bootstrap-icons', serif;
    font-size: 20px;
    color: var(--main-color-one);
    margin-left: 60px;
    display: block;
}

.steps .step .step-icon-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center
}

.steps .step .step-icon-wrap::before,
.steps .step .step-icon-wrap::after {
    display: block;
    position: absolute;
    top: 50%;
    width: 50%;
    height: 3px;
    margin-top: -1px;
    background-color: #e1e7ec;
    content: '';
    z-index: 1
}

.steps .step .step-icon-wrap::before {
    left: 0;
}

.steps .step .step-icon-wrap::after {
    right: 0;
}

.steps .step .step-icon {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #e1e7ec;
    border-radius: 0;
    background-color: #f5f5f5;
    color: #374250;
    font-size: 38px;
    line-height: 81px;
    z-index: 5
}

.steps .step .step-title {
    margin-top: 16px;
    margin-bottom: 0;
    color: #606975;
    font-size: 14px;
    font-weight: 500
}

.steps .step.completed .step-icon-wrap::before,
.steps .step.completed .step-icon-wrap::after {
    background-color: var(--main-color-two);
}

.steps .step.completed .step-icon {
    border-color: var(--main-color-one);;
    background-color: var(--main-color-one);;
    color: #fff;
    border-radius: 10px;
}

.bg-faded {
    background-color: #f5f5f5 !important;
}

/* end order process */
.orders {
    padding: 10px 0;
}

.orders .order-item {
    border-radius: 14px;
}

.order-item-detail {
    border-bottom: 1px solid #ddd;
}

.order-item-detail:last-child {
    padding-bottom: 0;
    border-color: transparent;
}

.order-item-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 0 15px 0;
}

.order-item-status-item p {
    font-weight: bold;
    line-height: 2;
    margin-bottom: 0;
}

.order-item-status-item i {
    font-size: 25px;
    color: #009500;
}

.order-item-status-item span {
    margin-right: 5px;
}

.order-item-detail {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.order-item-detail .text-muted i {
    width: 22px;
    text-align: center;
    color: var(--main-color-one);
}

.order-item-detail img.img-thumbnail {
    border-radius: 12px;
}

.order-item-detail ul li {
    margin-left: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 2;
}

.order-item-detail ul li:nth-last-child(1) {
    padding-bottom: 0;
}

.order-item-detail ul li span {
    margin-left: 7px;
}

.orders-item .order-item-detail {
    padding: 16px 0;
}

.orders-item .order-item-detail .btn {
    min-height: 42px;
    border-radius: 10px;
}

.steps-header {
    padding: .375rem;
    border-bottom: 1px solid #e7e7e7
}

.steps-header .progress {
    height: .25rem
}

.steps-body {
    display: table;
    table-layout: fixed;
    width: 100%
}

.step:last-child {
    border-right: 0
}

.step-indicator {
    display: block;
    position: absolute;
    top: .75rem;
    left: .75rem;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #e7e7e7;
    border-radius: 50%;
    background-color: #fff;
    font-size: .875rem;
    line-height: 1.375rem
}

.has-indicator {
    padding-right: 1.5rem;
    padding-left: 2.375rem
}

.has-indicator .step-indicator {
    top: 50%;
    margin-top: -.75rem
}

.step-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto .75rem;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    color: #888
}

.step:hover {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none
}

.step:hover .step-indicator {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    border-color: transparent;
    background-color: #f4f4f4
}

.step:hover .step-icon {
    color: rgba(0, 0, 0, 0.9)
}

.step-active,
.step-active:hover {
    color: rgba(0, 0, 0, 0.9);
    pointer-events: none;
    cursor: default
}

.step-active {
    font-weight: bold;
}

.step-active .step-indicator,
.step-active:hover .step-indicator {
    border-color: transparent;
    background-color: #5c77fc;
    color: #fff
}

.step-active .step-icon,
.step-active:hover .step-icon {
    color: var(--main-color-two)
}

.step-completed .step-indicator, .step-completed:hover .step-indicator {
    border-color: transparent;
    background-color: var(--main-color-one);
    color: #fff;
    line-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-completed .step-indicator .feather,
.step-completed:hover .step-indicator .feather {
    width: .875rem;
    height: .875rem
}

/*========================== end order page ==========================*/
/*========================== start comment page ==========================*/
.ui-boxs {
    padding-bottom: 20px;
    border-radius: 10px;
}

.ui-box {
    margin-bottom: 20px;
}

.ui-box-white .ui-box-item-desc {
    background-color: #fff;
}

.ui-box-white .ui-box-item-title {
    background-color: #f7f7f7;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.ui-box-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0 0 10px 0 !important;
}

.ui-box-item-title {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.ui-box-item-title h4 {
    font-size: 18px;
}

.ui-box-item-desc {
    background: #fff;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.comment-item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.comment-item-rating i {
    color: #eaaf00;
    font-size: 20px;
}

.comment-item-desc {
    padding: 20px;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 7px;
    line-height: 2;
}

.comment-item p {
    margin: 0;
}

.comment-item p {
    margin: 10px 0;
}

.comment-item-avatar {
    margin: 10px 0 0 10px;
}

.comment-item-avatar-img a img {
    display: flex;
    border: 4px solid #e6e6e6;
}

.comment-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.content .orders .order-item .w-100-px.img-thumbnail {
    width: 96px !important;
    height: 96px;
    object-fit: contain;
    border-radius: 12px;
}

.content .orders .order-item .badge {
    padding: 6px 10px;
    border-radius: 999px;
}

.content .cart-canvas {
    height: 100%;
    transition: 0.3s all ease-in-out;
}

.content .cart-canvas img {
    max-height: 112px;
    object-fit: contain;
}

.content .cart-canvas h3 {
    line-height: 1.8;
    margin-bottom: 8px;
}

.content .cart-canvas .product-box-suggest-price ins {
    font-weight: 900;
    line-height: 1.4;
}

.content .cart-canvas-delete a {
    width: 36px;
    height: 36px;
}

.comment-date {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.comment-date-speractor {
    margin: 0 10px !important;
    font-size: 17px;
    font-weight: bolder;
}

.comment-date-date {
    font-size: 14px;
}

/*========================== end comment page ==========================*/
/*========================== start page 404 ==========================*/
.page-404 img {
    width: min(100%, 500px);
    max-height: 360px;
    object-fit: contain;
}

.page-404 h4 {
    line-height: 1.9;
}

.page-404 .btn {
    min-width: 130px;
    min-height: 42px;
    border-radius: 10px;
}

/*========================== start page 404 ==========================*/
/*========================== start contact us ==========================*/

.single_address p {
    min-height: 65px;
    height: auto;
    overflow-y: hidden;
    line-height: 2;
}

.single_address {
    height: 100%;
    border-radius: 14px;
    margin-bottom: 0;
}

.single_address .d-flex {
    min-height: 112px;
}

.panel-meta-item-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    line-height: 68px;
    text-align: center;
    background-color: var(--bs-green);
    border-radius: 20px;
    box-shadow: inset -1px 0 8px 4px rgb(255 254 254 / 28%);
    margin-left: 10px;
}

.panel-meta-item-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-map {
    min-height: 360px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #eee;
}

.contact-title p {
    line-height: 2;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.contact-title + .content-box {
    border: 1px solid #eee;
}

.contact-title + .content-box textarea.form-control {
    min-height: 150px;
    line-height: 2;
}

.table-custom .main-table .badge {
    padding: 7px 10px;
    border-radius: 999px;
}

.table-custom .main-table .btn-sm {
    min-height: 34px;
    border-radius: 9px;
}

.table-custom .main-table td p {
    line-height: 1.9;
}

body.bg-white > .container-xl {
    max-width: 1180px;
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

body.bg-white > .container-xl h3 {
    line-height: 1.8;
    font-weight: 900;
}

body.bg-white > .container-xl .table {
    min-width: 980px;
    border-color: #ddd;
    line-height: 2;
}

body.bg-white > .container-xl .table th,
body.bg-white > .container-xl .table td {
    padding: 10px;
    vertical-align: middle;
}

body.bg-white > .container-xl .table thead th {
    background-color: #f7f7f7;
}

body.bg-white > .container-xl p {
    margin-bottom: 8px;
    line-height: 1.9;
}

body.bg-white > .container-xl #printPageButton {
    min-width: 120px;
    min-height: 42px;
    border-radius: 10px;
}

/*========================== end contact us ==========================*/
/*footer mobile*/
.mobile-footer-clean {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    padding: 8px 12px 10px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(224, 228, 236, 0.95);
    box-shadow: 0 -8px 30px rgba(31, 37, 68, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-footer-inner {
    width: 100%;
    max-width: 430px;
    min-height: 62px;
    margin: 0 auto;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 18px;
}

.mobile-footer-item {
    position: relative;
    min-height: 52px;
    padding: 5px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #7b8291;
    border-radius: 14px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.mobile-footer-item:hover {
    color: var(--main-color-one);
}

.mobile-footer-item.active {
    color: var(--main-color-one);
    background: rgba(65, 60, 175, 0.08);
}

.mobile-footer-item.active::before {
    content: '';
    position: absolute;
    top: -6px;
    width: 28px;
    height: 3px;
    background: var(--main-color-one);
    border-radius: 0 0 5px 5px;
}

.mobile-footer-icon {
    width: 30px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-footer-icon i {
    color: inherit;
    font-size: 21px;
    line-height: 1;
}

.mobile-footer-title {
    color: inherit;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

/* آیتم برجسته و فعال منوی پایین موبایل */
.mobile-footer-prominent .mobile-footer-icon {
    width: 38px;
    height: 38px;
    margin-top: -18px;

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

    color: #fff;
    background: var(--main-color-one);

    border: 4px solid #fff;
    border-radius: 13px;

    box-shadow: 0 7px 17px rgba(65, 60, 175, 0.24);
}

.mobile-footer-prominent .mobile-footer-icon i {
    color: #fff;
    font-size: 19px;
}

.mobile-footer-prominent.active {
    background: transparent;
}

.mobile-footer-prominent.active::before {
    display: none;
}

.mobile-cart-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--main-color-two);
    border: 2px solid #fff;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
}

/* جلوگیری از قرارگرفتن محتوا زیر منوی موبایل */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 88px;
    }
}


/*search mobile*/

.mobile-header-action-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--main-color-one);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(65, 60, 175, 0.18);
    transition: all 0.2s ease;
}

.mobile-header-action-btn i {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.mobile-header-action-btn:hover,
.mobile-header-action-btn:focus {
    color: #fff;
    background: var(--main-color-one);
    transform: translateY(-1px);
}

.mobile-profile-btn {
    min-width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
}

.mobile-header-search-wrapper {
    position: relative;
    width: 100%;
    z-index: 1035;
    background: #fff;
    border-top: 1px solid #e9edf3;
    border-bottom: 1px solid #e9edf3;
    box-shadow: 0 9px 22px rgba(31, 37, 68, 0.08);
}
.mobile-header-search-box {
    padding: 10px 13px 12px;
}

.mobile-header-search-field {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.mobile-header-search-field .form-control {
    width: 100%;
    height: 46px;
    padding: 0 51px;
    color: #303747;
    background: #f7f8fb;
    border: 1px solid #e0e5ec;
    border-radius: 13px;
    font-size: 12px;
    box-shadow: none !important;
}

.mobile-header-search-field .form-control::placeholder {
    color: #969dad;
}

.mobile-header-search-field .form-control:focus {
    background: #fff;
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 3px rgba(65, 60, 175, 0.08) !important;
}

.mobile-header-search-submit {
    position: absolute;
    right: 5px;
    z-index: 2;
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--main-color-one);
    border: 0;
    border-radius: 9px;
}

.mobile-header-search-submit i {
    color: #fff;
    font-size: 15px;
}

.mobile-header-search-close {
    position: absolute;
    left: 7px;
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8b93a3;
    background: transparent;
    border: 0;
    border-radius: 8px;
}

.mobile-header-search-close i {
    color: #8b93a3;
    font-size: 14px;
}

.mobile-header-search-close:hover {
    background: #eceff4;
}

@media (min-width: 992px) {
    .mobile-header-action-btn,
    .mobile-header-search-wrapper {
        display: none !important;
    }
}




/*UserIndex================================*/

@media (max-width: 767.98px) {

    /* فاصله کلی صفحه */
    .content {
        padding-top: 8px !important;
    }

    .content .container-fluid {
        padding-right: 8px !important;
        padding-left: 8px !important;
    }

    /* فاصله بین دو کارت */
    .category-pro .row {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 12px;
    }

    /* کارت محصول */
    .category-pro .product-box {
        position: relative;
        height: 100%;
        padding: 8px;
        background: #fff;
        border: 1px solid #e4e7ec !important;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .category-pro .product-box > a {
        display: flex;
        flex-direction: column;
        height: 100%;
        color: inherit;
        text-decoration: none;
    }

    /* محل آیکن‌های کنار محصول */
    .category-pro .product-timer {
        height: 0;
        z-index: 10;
    }

    .category-pro .product-header-btn {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        z-index: 10;
        gap: 4px;
    }

    .category-pro .product-header-btn a {
        width: 27px;
        height: 27px;
        margin-bottom: 4px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #dfe3e8 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #777;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    }

    .category-pro .product-header-btn a i {
        font-size: 12px;
        line-height: 1;
    }

    /* تصویر محصول */
    .category-pro .product-image {
        position: relative;
        width: 100%;
        height: 135px;
        padding: 8px 8px 5px 8px;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #fff;
    }

    .category-pro .product-image img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 110px;
        object-fit: contain;
        object-position: center center;
        margin: 0 auto;
    }


    /* در گوشی فقط یک عکس نمایش داده شود */
    .category-pro .product-image .two-image {
        display: none !important;
    }

    .category-pro .product-image .one-image {
        opacity: 1 !important;
        transform: none !important;
    }

    /* عنوان محصول */
    .category-pro .product-title {
        min-height: 64px;
        margin: 0 0 5px !important;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 3px;
    }

    .category-pro .product-title .title {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .category-pro .product-title .title span,
    .category-pro .product-title .title p {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .category-pro .product-title .title span {
        direction: ltr;
        text-align: right;
    }

    .category-pro .product-title .title p {
        direction: rtl;
        text-align: right;
    }


    /* امتیاز */
    .category-pro .product-title .rating {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 2px;
        margin-bottom: 4px;
    }

    .category-pro .product-title .rating span {
        font-size: 8px !important;
    }

    .category-pro .product-title .rating i {
        font-size: 10px;
        color: #ffc107;
    }

    /* بخش قیمت و تخفیف */
    .category-pro .product-action {
        min-height: 45px;
        margin-top: auto;
        padding-top: 7px;
        border-top: 1px solid #e6e6e6;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 4px;
    }

    .category-pro .product-action .price {
        min-width: 0;
        text-align: right;
    }

    .category-pro .product-action .new-price {
        margin: 0;
        font-size: 10.5px !important;
        line-height: 1.5;
        font-weight: 800;
        color: #222;
        white-space: nowrap;
    }

    .category-pro .product-action .old-price {
        margin: 2px 0 0;
        font-size: 8px !important;
        color: #aaa;
        text-decoration: line-through;
        white-space: nowrap;
    }

    .category-pro .product-action .discount > div {
        min-width: 32px;
        padding: 5px 4px !important;
        border-radius: 7px !important;
        text-align: center;
    }

    .category-pro .product-action .discount span {
        font-size: 9px;
        font-weight: 700;
    }

    /* نوار مرتب‌سازی */
    .category-sort {
        margin-bottom: 10px !important;
    }

    .category-sort .content-box {
        padding: 8px !important;
        border-radius: 10px;
    }

    .category-sort .box_filter_counter {
        font-size: 11px !important;
    }

    .category-sort label {
        margin-top: 8px !important;
        margin-bottom: 5px !important;
        font-size: 11px;
    }

    .category-sort .form-select {
        min-height: 38px;
        padding-top: 4px;
        padding-bottom: 4px;
        border-radius: 9px;
        font-size: 11px;
    }

    /* دکمه فیلتر جمع‌وجور */
    .mobile-filter-toggle {
        min-height: 40px;
        padding: 7px 12px;
        margin-bottom: 8px !important;
        border: 1px solid #e1e4e8;
        border-radius: 10px;
        background: #fff;
        color: #333;
        font-size: 11px;
        font-weight: 700;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #mobileSearchFilters .item-boxs {
        position: static !important;
        margin-bottom: 12px;
    }
}

@media (max-width: 380px) {
    .category-pro .product-box {
        padding: 6px;
    }

    .category-pro .product-image {
        height: 120px;
    }

    .category-pro .product-image img {
        max-width: 95px;
    }

    .category-pro .product-title .title p {
        font-size: 9.5px !important;
    }

    .category-pro .product-action .new-price {
        font-size: 9.5px !important;
    }
}




/* ================================
Modern iPower Footer
================================ */
/* ================================
   Modern iPower Footer
================================ */

.ip-footer {
    --ip-footer-primary: #403eb3;
    --ip-footer-primary-dark: #302e91;
    --ip-footer-primary-light: #615fce;
    --ip-footer-dark: #101426;
    --ip-footer-dark-soft: #191e35;
    --ip-footer-light: #f5f6fc;
    --ip-footer-muted: #b8bfd4;

    position: relative;
    direction: rtl;
    margin-top: 70px;
    padding-top: 35px;
    background:
        radial-gradient(
            circle at top right,
            rgba(64, 62, 179, 0.16),
            transparent 38%
        ),
        linear-gradient(180deg, #f8f9ff, #f3f4fb);
}

.ip-footer *,
.ip-footer *::before,
.ip-footer *::after {
    box-sizing: border-box;
}

/* ================================
   Contact Bar
================================ */

.ip-footer-contact {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto -32px;
    padding: 12px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            var(--ip-footer-primary-light),
            var(--ip-footer-primary),
            var(--ip-footer-primary-dark)
        );
    box-shadow:
        0 20px 45px rgba(64, 62, 179, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ip-contact-item {
    min-height: 72px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.ip-contact-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.ip-contact-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ip-footer-primary);
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 20, 38, 0.18);
}

.ip-contact-icon i {
    font-size: 20px;
}

.ip-contact-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ip-contact-content strong {
    font-size: 13px;
    font-weight: 800;
    color: #fff !important;
    white-space: nowrap;
}

.ip-footer-contact .ip-contact-item {
    color: #fff !important;
}

.ip-footer-contact .ip-contact-content strong {
    color: #fff !important;
}

.ip-footer-contact .ip-contact-content small {
    color: rgba(255, 255, 255, 0.88) !important;
}

.ip-contact-content small {
    max-width: 150px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.88) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================
   Main Footer
================================ */

.ip-footer-main {
    position: relative;
    overflow: hidden;
    padding: 75px 28px 30px;
    border-radius: 30px 30px 0 0;
    color: #fff;
    background:
        radial-gradient(
            circle at top left,
            rgba(97, 95, 206, 0.25),
            transparent 38%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(64, 62, 179, 0.16),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            var(--ip-footer-dark-soft),
            var(--ip-footer-dark)
        );
    box-shadow: 0 -14px 40px rgba(16, 20, 38, 0.14);
}

.ip-footer-main::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(97, 95, 206, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

/* ================================
   About
================================ */

.ip-footer-about {
    position: relative;
    z-index: 1;
    max-width: 400px;
}

.ip-footer-logo {
    width: 78px;
    height: 65px;
    margin-bottom: 14px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ip-footer-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(64, 62, 179, 0.24);
}

.ip-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ip-footer-about h5 {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.ip-footer-about p {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 2;
    text-align: justify;
    color: var(--ip-footer-muted);
}

/* ================================
   Social Icons
================================ */

.ip-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ip-footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.ip-footer-social a:hover {
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--ip-footer-primary-light),
            var(--ip-footer-primary)
        );
    transform: translateY(-3px);
    box-shadow: 0 9px 20px rgba(64, 62, 179, 0.35);
}

/* ================================
   Links
================================ */

.ip-footer-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-footer-links h6,
.ip-footer-trust h6 {
    position: relative;
    margin-bottom: 9px;
    padding-right: 14px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.ip-footer-links h6::before,
.ip-footer-trust h6::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background:
        linear-gradient(
            135deg,
            var(--ip-footer-primary-light),
            var(--ip-footer-primary)
        );
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(97, 95, 206, 0.65);
}

.ip-footer-links a {
    width: fit-content;
    font-size: 12px;
    color: var(--ip-footer-muted);
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.ip-footer-links a:hover {
    color: #918fff;
    transform: translateX(-3px);
}

/* ================================
   Trust Section
================================ */

.ip-footer-trust {
    position: relative;
    z-index: 1;
}

.ip-footer-trust p {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.9;
    color: var(--ip-footer-muted);
}

.ip-trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ip-trust-card {
    width: 92px;
    height: 92px;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(64, 62, 179, 0.22);
    box-shadow: 0 10px 24px rgba(7, 10, 25, 0.24);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.ip-trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(97, 95, 206, 0.6);
    box-shadow: 0 17px 32px rgba(64, 62, 179, 0.28);
}

.ip-trust-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================================
   Bottom Footer
================================ */

.ip-footer-bottom {
    min-height: 58px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #667085;
    background: #fff;
    border-top: 1px solid rgba(64, 62, 179, 0.14);
    box-shadow: 0 -4px 18px rgba(16, 20, 38, 0.04);
}

.ip-footer-bottom p {
    margin: 0;
    font-size: 11px;
}

.ip-footer-top {
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-size: 11px;
    background:
        linear-gradient(
            135deg,
            var(--ip-footer-primary-light),
            var(--ip-footer-primary)
        );
    box-shadow: 0 7px 16px rgba(64, 62, 179, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.ip-footer-top:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 11px 22px rgba(64, 62, 179, 0.32);
}

/* ================================
   Tablet
================================ */

@media (max-width: 991.98px) {
    .ip-footer-main {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* ================================
   Mobile
================================ */

@media (max-width: 767.98px) {
    .ip-footer {
        margin-top: 45px;
        padding: 20px 8px 0;
    }

    .ip-footer-contact {
        margin: 0 auto -26px;
        padding: 7px;
        border-radius: 22px;
    }

    .ip-contact-item {
        min-height: 70px;
        padding: 7px 3px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .ip-contact-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .ip-contact-icon i {
        font-size: 16px;
    }

    .ip-contact-content strong {
        max-width: 95px;
        font-size: 9px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .ip-contact-content small {
        max-width: 92px;
        font-size: 8px;
    }

    .ip-footer-main {
        padding: 60px 16px 24px;
        border-radius: 24px 24px 0 0;
    }

    .ip-footer-about {
        padding-bottom: 18px;
        text-align: center;
    }

    .ip-footer-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .ip-footer-about p {
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
        font-size: 11px;
        text-align: center;
    }

    .ip-footer-social {
        justify-content: center;
    }

    .ip-footer-links h6,
    .ip-footer-trust h6 {
        font-size: 12px;
    }

    .ip-footer-links a {
        font-size: 10px;
    }

    .ip-footer-trust {
        padding-top: 12px;
        text-align: center;
    }

    .ip-footer-trust h6 {
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .ip-footer-trust p {
        max-width: 280px;
        margin-right: auto;
        margin-left: auto;
        font-size: 10px;
    }

    .ip-trust-items {
        justify-content: center;
    }

    .ip-trust-card {
        width: 78px;
        height: 78px;
        border-radius: 15px;
    }

    .ip-footer-bottom {
        padding: 11px 10px;
        flex-direction: column-reverse;
        text-align: center;
    }

    .ip-footer-bottom p {
        font-size: 9px;
    }
}

/* ================================
   Very Small Mobile
================================ */

@media (max-width: 380px) {
    .ip-footer {
        padding-right: 5px;
        padding-left: 5px;
    }

    .ip-contact-content strong {
        max-width: 82px;
        font-size: 8px;
    }

    .ip-contact-content small {
        max-width: 80px;
        font-size: 7px;
    }

    .ip-footer-main {
        padding-right: 12px;
        padding-left: 12px;
    }
}
.ip-footer-contact .ip-contact-item,
.ip-footer-contact .ip-contact-content,
.ip-footer-contact .ip-contact-content strong,
.ip-footer-contact .ip-contact-content small {
    color: #fff !important;
}
.header-category-dropdown {
    position: relative;
}

.header-category-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 99999;

    width: 260px;
    max-height: 400px;
    margin: 0;
    padding: 8px;

    display: none;
    overflow-y: auto;

    list-style: none;
    background: #fff;
}

.header-category-menu.is-open {
    display: block;
}

.header-category-item {
    width: 100%;
    padding: 10px 12px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #333;
    font-size: 12px;
    text-decoration: none;
    border-radius: 8px;
}

.header-category-item:hover {
    color: #403eb3;
    background: #f2f1ff;
}

.header-category-empty {
    display: block;
    padding: 10px 12px;
    color: #888;
    font-size: 12px;
}

#headerCategoryButton .bi-chevron-down {
    transition: transform 0.2s ease;
}

#headerCategoryButton.is-open .bi-chevron-down {
    transform: rotate(180deg);
}



/*blog and index*/


/* =========================================
Responsive Blog Card
========================================= */

.blog-slider .blog-item {
    height: 100%;
    padding: 10px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 16px;
}

.blog-slider .blog-item > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-slider .blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f6;
    border-radius: 18px;
}

/* خود تصویر */
.blog-slider .blog-card-image__img {
    position: absolute;
    inset: 0;

    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;

    object-fit: contain !important;
    object-position: center center !important;

    border-radius: 18px;
    background-color: #f4f4f6;
}

.blog-slider .blog-item:hover .blog-card-image__img {
    transform: none !important;
}

/* قسمت اطلاعات زیر تصویر */
.blog-slider .blog-item .title {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px 2px 4px;
}

.blog-slider .blog-item .title h4 {
    display: -webkit-box;
    min-height: 54px;
    margin: 14px 0 0;
    overflow: hidden;
    color: #3732a5;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    text-align: right;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* جلوگیری از خراب‌شدن اندازه تصویر در Swiper */
.blog-slider .swiper-slide {
    height: auto;
}

.blog-slider .swiper-slide .blog-item {
    width: 100%;
}

/* تبلت */
@media (max-width: 991.98px) {
    .blog-slider .blog-card-image {
        border-radius: 16px;
    }

    .blog-slider .blog-item .title h4 {
        font-size: 15px;
    }
}

/* موبایل */
@media (max-width: 575.98px) {
    .blog-slider .blog-item {
        padding: 8px;
        border-radius: 14px;
    }

    .blog-slider .blog-card-image {
        aspect-ratio: 10 / 7;
        border-radius: 14px;
    }

    .blog-slider .blog-item .title {
        padding-top: 10px;
    }

    .blog-slider .blog-item .title h4 {
        min-height: 48px;
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }
}





/*    ذمخل*/



/* ================================
   Single Blog Page
================================= */

.ip-blog-page,
.ip-blog-page * {
    box-sizing: border-box;
}

.ip-blog-page {
    direction: rtl;
    padding: 45px 0 80px;
    background: #f6f7fb;
}

.ip-blog-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Breadcrumb */

.ip-blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #7c8191;
    font-size: 13px;
}

.ip-blog-breadcrumb a {
    color: var(--main-color-one, #403bb3);
    text-decoration: none;
}

.ip-blog-breadcrumb a:hover {
    color: #29258c;
}

.ip-blog-breadcrumb-current {
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Main article */

.ip-blog-article {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e7ef;
    border-radius: 24px;
    box-shadow: 0 12px 45px rgba(32, 40, 70, 0.08);
}

.ip-blog-header {
    padding: 38px 44px 30px;
}

.ip-blog-title {
    margin: 0;
    color: #202433;
    font-size: clamp(27px, 4vw, 43px);
    font-weight: 900;
    line-height: 1.65;
    text-align: right;
}

.ip-blog-subtitle {
    max-width: 900px;
    margin: 12px 0 0;
    color: #6c7282;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-align: right;
}

.ip-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.ip-blog-meta-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 7px 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    background: var(--main-color-one, #403bb3);
    border-radius: 10px;
}

.ip-blog-meta-item i {
    font-size: 15px;
}

/* Hero image */

.ip-blog-image-wrapper {
    padding: 0 44px;
}

.ip-blog-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 10 / 7;
    background: #eceef3;
    border-radius: 20px;
}

.ip-blog-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Article content */

.ip-blog-content-wrapper {
    padding: 40px 44px 50px;
}

.ip-blog-content {
    width: min(100%, 880px);
    margin: 0 auto;
    color: #343847;
    font-size: 17px;
    line-height: 2.35;
    text-align: right;
    overflow-wrap: anywhere;
}

.ip-blog-content > *:first-child {
    margin-top: 0 !important;
}

.ip-blog-content > *:last-child {
    margin-bottom: 0 !important;
}

.ip-blog-content p {
    margin: 0 0 20px;
}

.ip-blog-content h1,
.ip-blog-content h2,
.ip-blog-content h3,
.ip-blog-content h4,
.ip-blog-content h5,
.ip-blog-content h6 {
    color: #202433;
    font-weight: 900;
    line-height: 1.8;
    text-align: right;
}

.ip-blog-content h2 {
    position: relative;
    margin: 42px 0 18px;
    padding-right: 17px;
    font-size: 25px;
}

.ip-blog-content h2::before {
    position: absolute;
    top: 10px;
    right: 0;
    width: 5px;
    height: 28px;
    content: "";
    background: var(--main-color-one, #403bb3);
    border-radius: 8px;
}

.ip-blog-content h3 {
    margin: 32px 0 15px;
    font-size: 21px;
}

.ip-blog-content h4 {
    margin: 28px 0 14px;
    font-size: 18px;
}

.ip-blog-content ul,
.ip-blog-content ol {
    margin: 18px 0 25px;
    padding-right: 28px;
}

.ip-blog-content li {
    margin-bottom: 10px;
}

.ip-blog-content li::marker {
    color: var(--main-color-one, #403bb3);
}

.ip-blog-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 16px;
}

.ip-blog-content blockquote {
    margin: 30px 0;
    padding: 20px 22px;
    color: #43485a;
    background: #f4f4ff;
    border-right: 5px solid var(--main-color-one, #403bb3);
    border-radius: 12px;
}

.ip-blog-content a {
    color: var(--main-color-one, #403bb3);
    text-decoration: none;
}

.ip-blog-content table {
    display: block;
    width: 100%;
    margin: 25px 0;
    overflow-x: auto;
    border-collapse: collapse;
}

.ip-blog-content th,
.ip-blog-content td {
    min-width: 130px;
    padding: 12px;
    border: 1px solid #e1e4eb;
}

.ip-blog-content th {
    background: #f5f6fa;
}

/* Comments */

.ip-blog-comments {
    margin-top: 30px;
    padding: 30px 34px;
    background: #ffffff;
    border: 1px solid #e4e7ef;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(32, 40, 70, 0.06);
}

.ip-blog-comments-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px;
    color: #202433;
    font-size: 24px;
    font-weight: 900;
    text-align: right;
}

.ip-blog-comments-heading::before {
    width: 5px;
    height: 27px;
    content: "";
    background: var(--main-color-one, #403bb3);
    border-radius: 6px;
}

/* Override package comment styles */

#maincommentscontainer {
    direction: rtl;
    text-align: right;
}

#maincommentscontainer h3,
#maincommentscontainer h4,
#maincommentscontainer label {
    color: #353948;
    text-align: right;
}

#maincommentscontainer label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}

#maincommentscontainer input,
#maincommentscontainer textarea,
#maincommentscontainer select {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    color: #303442;
    font-family: inherit;
    font-size: 14px;
    text-align: right;
    background: #ffffff;
    border: 1px solid #dfe3ec;
    border-radius: 10px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#maincommentscontainer textarea {
    min-height: 140px;
    resize: vertical;
}

#maincommentscontainer input:focus,
#maincommentscontainer textarea:focus,
#maincommentscontainer select:focus {
    border-color: var(--main-color-one, #403bb3);
    box-shadow: 0 0 0 3px rgba(64, 59, 179, 0.1);
}

#maincommentscontainer button,
#maincommentscontainer input[type="submit"],
#maincommentscontainer .btn {
    min-height: 45px;
    padding: 10px 25px;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    background: var(--main-color-one, #403bb3) !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

#maincommentscontainer button:hover,
#maincommentscontainer input[type="submit"]:hover,
#maincommentscontainer .btn:hover {
    background: #2e2a94 !important;
}

#maincommentscontainer .alert {
    padding: 13px 16px;
    font-size: 13px;
    line-height: 1.8;
    border-radius: 10px;
}

/* Reading progress */

#scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    height: 4px;
    background: transparent;
}

#scrollbar-bg {
    width: 0;
    height: 100%;
    background: var(--main-color-one, #403bb3);
}

/* Laptop */

@media (max-width: 1199.98px) {
    .ip-blog-container {
        width: min(1020px, calc(100% - 30px));
    }

    .ip-blog-header,
    .ip-blog-content-wrapper {
        padding-right: 34px;
        padding-left: 34px;
    }

    .ip-blog-image-wrapper {
        padding-right: 34px;
        padding-left: 34px;
    }
}

/* Tablet */

@media (max-width: 991.98px) {
    .ip-blog-page {
        padding: 30px 0 60px;
    }

    .ip-blog-article {
        border-radius: 20px;
    }

    .ip-blog-header {
        padding: 28px 26px 24px;
    }

    .ip-blog-image-wrapper {
        padding: 0 26px;
    }

    .ip-blog-content-wrapper {
        padding: 32px 26px 40px;
    }

    .ip-blog-title {
        font-size: 31px;
    }

    .ip-blog-content {
        font-size: 16px;
        line-height: 2.2;
    }

    .ip-blog-comments {
        padding: 25px;
    }
}

/* Mobile */

@media (max-width: 575.98px) {
    .ip-blog-page {
        padding: 18px 0 40px;
    }

    .ip-blog-container {
        width: calc(100% - 20px);
    }

    .ip-blog-breadcrumb {
        display: none;
    }

    .ip-blog-article {
        border-radius: 16px;
        box-shadow: 0 7px 25px rgba(32, 40, 70, 0.06);
    }

    .ip-blog-header {
        padding: 20px 16px 18px;
    }

    .ip-blog-title {
        font-size: 23px;
        line-height: 1.75;
    }

    .ip-blog-subtitle {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.9;
    }

    .ip-blog-meta {
        gap: 7px;
        margin-top: 16px;
    }

    .ip-blog-meta-item {
        min-height: 34px;
        padding: 6px 11px;
        font-size: 11px;
        border-radius: 8px;
    }

    .ip-blog-image-wrapper {
        padding: 0 10px;
    }

    .ip-blog-image {
        aspect-ratio: 10 / 7;
        border-radius: 13px;
    }

    .ip-blog-content-wrapper {
        padding: 25px 17px 32px;
    }

    .ip-blog-content {
        font-size: 15px;
        line-height: 2.15;
    }

    .ip-blog-content p {
        margin-bottom: 17px;
    }

    .ip-blog-content h2 {
        margin: 32px 0 15px;
        padding-right: 14px;
        font-size: 20px;
    }

    .ip-blog-content h2::before {
        top: 8px;
        width: 4px;
        height: 24px;
    }

    .ip-blog-content h3 {
        margin-top: 27px;
        font-size: 18px;
    }

    .ip-blog-content ul,
    .ip-blog-content ol {
        padding-right: 22px;
    }

    .ip-blog-comments {
        margin-top: 20px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .ip-blog-comments-heading {
        margin-bottom: 20px;
        font-size: 20px;
    }

    #maincommentscontainer textarea {
        min-height: 120px;
    }
}





/*محصول ویژه */

/* =====================================================
   PREMIUM PURPLE SPECIAL OFFERS
   Main theme: #403bb3
   ===================================================== */

.blue-offers {
    padding: 30px 0;
}

.blue-offers-box {
    --offer-primary: var(--main-color-one, #403bb3);
    --offer-primary-hover: #2e2a94;
    --offer-primary-dark: #211e68;
    --offer-primary-light: #7771ee;
    --offer-primary-lighter: #a9a5ff;

    --offer-soft: #f5f4ff;
    --offer-soft-two: #eceaff;
    --offer-soft-three: #e4e2ff;

    --offer-text: #27243c;
    --offer-muted: #77748a;

    --offer-white-line: rgba(255, 255, 255, 0.11);
    --offer-purple-line: rgba(64, 59, 179, 0.14);

    position: relative;
    overflow: hidden;
    isolation: isolate;

    border: 1px solid rgba(64, 59, 179, 0.22);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #211e68 0%,
            #302b8f 48%,
            var(--offer-primary) 100%
        );

    box-shadow:
        0 22px 60px rgba(46, 42, 148, 0.23),
        0 8px 22px rgba(33, 30, 104, 0.14);
}

.blue-offers-box::before {
    content: "";
    position: absolute;
    z-index: -1;

    top: -115px;
    left: -90px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(169, 165, 255, 0.30) 0%,
            rgba(119, 113, 238, 0.12) 45%,
            transparent 72%
        );

    pointer-events: none;
}

.blue-offers-box::after {
    content: "";
    position: absolute;
    z-index: -1;

    right: -105px;
    bottom: -145px;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.045) 48%,
            transparent 72%
        );

    pointer-events: none;
}

/* =====================================================
   Header
   ===================================================== */

.blue-offers-header {
    position: relative;
    z-index: 3;

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

    gap: 16px;
    padding: 18px 22px;

    color: #fff;

    border-bottom: 1px solid var(--offer-white-line);

    background: rgba(18, 15, 65, 0.18);

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.blue-offers-header::after {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0.12;

    background-image:
        radial-gradient(#ffffff 1px, transparent 1px);

    background-size: 18px 18px;

    pointer-events: none;
}

.blue-offers-header-title {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 13px;
}

.blue-offers-icon {
    width: 50px;
    height: 50px;

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

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;

    color: #fff;
    font-size: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.21),
            rgba(255, 255, 255, 0.08)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        0 10px 24px rgba(17, 14, 67, 0.20);
}

.blue-offers-header h2 {
    margin: 0;

    color: #fff;

    font-size: 21px;
    font-weight: 900;
    line-height: 1.7;
}

.blue-offers-header p {
    margin: 1px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    line-height: 1.8;
}

.blue-offers-count {
    position: relative;
    z-index: 2;

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

    min-height: 34px;
    padding: 7px 14px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    background: rgba(255, 255, 255, 0.10);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* =====================================================
   Main slider
   ===================================================== */

.blue-offer-main {
    position: relative;
    z-index: 2;

    padding: 20px 20px 58px;
}

.blue-offer-main .swiper-wrapper {
    align-items: stretch;
}

.blue-offer-main .swiper-slide {
    height: auto;
}

.blue-offer-product {
    width: 100%;
    min-height: 370px;
    height: 100%;

    padding: 18px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(248, 247, 255, 0.98)
        );

    box-shadow:
        0 16px 38px rgba(16, 13, 66, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.90);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.blue-offer-product:hover {
    transform: translateY(-3px);

    border-color: rgba(119, 113, 238, 0.30);

    box-shadow:
        0 22px 44px rgba(16, 13, 66, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* =====================================================
   Product image
   ===================================================== */

.blue-offer-image {
    position: relative;
    isolation: isolate;

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

    width: 100%;
    height: 315px;

    padding: 20px;
    overflow: hidden;

    border: 1px solid var(--offer-purple-line);
    border-radius: 23px;

    background:
        radial-gradient(
            circle at 50% 34%,
            #ffffff 0%,
            #faf9ff 42%,
            #eeecff 100%
        );

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.82),
        0 12px 26px rgba(64, 59, 179, 0.09);

    text-decoration: none;
}

.blue-offer-image::before {
    content: "";
    position: absolute;
    z-index: -1;

    width: 82%;
    height: 82%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(119, 113, 238, 0.18) 0%,
            rgba(119, 113, 238, 0.06) 52%,
            transparent 72%
        );
}

.blue-offer-image::after {
    content: "";
    position: absolute;
    z-index: -1;

    bottom: 20px;
    left: 50%;

    width: 58%;
    height: 20px;

    border-radius: 50%;

    background: rgba(35, 31, 103, 0.14);

    filter: blur(13px);
    transform: translateX(-50%);
}

.blue-offer-image img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;
    max-width: 285px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 22px rgba(33, 30, 104, 0.19)
        );

    transition:
        transform 0.36s ease,
        filter 0.36s ease;
}

.blue-offer-product:hover .blue-offer-image img {
    transform: translateY(-6px) scale(1.045);

    filter:
        drop-shadow(
            0 24px 28px rgba(33, 30, 104, 0.25)
        );
}

/* =====================================================
   Discount badges
   ===================================================== */

.blue-discount-badge,
.blue-special-badge {
    position: absolute;
    z-index: 4;

    top: 14px;
    right: 14px;

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

    min-width: 58px;
    height: 38px;

    padding: 0 12px;

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 13px;

    color: #fff;

    font-size: 13px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 10px 20px rgba(46, 42, 148, 0.24);
}

.blue-discount-badge {
    background:
        linear-gradient(
            135deg,
            var(--offer-primary-hover),
            var(--offer-primary-light)
        );
}

.blue-special-badge {
    font-size: 12px;

    background:
        linear-gradient(
            135deg,
            var(--offer-primary-dark),
            var(--offer-primary)
        );
}

/* =====================================================
   Product content
   ===================================================== */

.blue-offer-content {
    padding: 5px 4px;
}

.blue-offer-label {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 12px;
    padding: 6px 12px;

    border: 1px solid var(--offer-purple-line);
    border-radius: 999px;

    color: var(--offer-primary);

    font-size: 11px;
    font-weight: 800;

    background: var(--offer-soft);
}

.blue-offer-label i {
    color: var(--offer-primary);
    font-size: 13px;
}

.blue-offer-title-link {
    display: block;

    color: inherit;
    text-decoration: none;
}

.blue-offer-title-link h3 {
    display: -webkit-box;

    overflow: hidden;

    min-height: 66px;
    margin: 0 0 7px;

    color: var(--offer-text);

    font-size: 19px;
    font-weight: 900;
    line-height: 1.9;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    transition: color 0.2s ease;
}

.blue-offer-title-link:hover h3 {
    color: var(--offer-primary);
}

.blue-offer-english {
    min-height: 20px;

    margin: 0 0 14px;

    direction: ltr;

    color: #8b899c;

    font-size: 11px;
    line-height: 1.8;
    text-align: right;
}

.blue-offer-info {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 18px;
}

.blue-offer-info span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border: 1px solid rgba(64, 59, 179, 0.11);
    border-radius: 11px;

    color: #5e5b72;

    font-size: 10px;
    line-height: 1.5;

    background: #f8f7ff;
}

.blue-offer-info i {
    color: var(--offer-primary);
    font-size: 13px;
}

/* =====================================================
   Price and button
   ===================================================== */

.blue-offer-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    padding-top: 16px;

    border-top: 1px solid rgba(64, 59, 179, 0.12);
}

.blue-offer-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-width: 0;
}

.blue-old-price {
    margin-bottom: 2px;

    color: #aaa8b7;

    font-size: 11px;
    line-height: 1.7;

    text-decoration: line-through;
}

.blue-offer-prices strong {
    color: var(--offer-primary);

    font-size: 25px;
    font-weight: 900;
    line-height: 1.4;

    white-space: nowrap;
}

.blue-offer-prices small {
    color: #65627a;

    font-size: 10px;
    font-weight: 700;
}

.blue-offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    gap: 9px;

    min-height: 44px;
    padding: 10px 17px;

    border: 0;
    border-radius: 13px;

    color: #fff !important;

    font-size: 11px;
    font-weight: 900;

    text-decoration: none;
    white-space: nowrap;

    background:
        linear-gradient(
            135deg,
            var(--offer-primary-hover),
            var(--offer-primary)
        );

    box-shadow:
        0 11px 22px rgba(46, 42, 148, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.blue-offer-button i {
    font-size: 14px;

    transition: transform 0.25s ease;
}

.blue-offer-button:hover {
    color: #fff !important;

    transform: translateY(-3px);

    filter: brightness(1.07);

    box-shadow:
        0 15px 27px rgba(46, 42, 148, 0.33);
}

.blue-offer-button:hover i {
    transform: translateX(-3px);
}

/* =====================================================
   Slider controls
   ===================================================== */

.blue-offer-controls {
    position: absolute;
    z-index: 10;

    right: 20px;
    bottom: 15px;
    left: 20px;

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

    gap: 10px;
}

.blue-offer-next,
.blue-offer-prev {
    width: 35px;
    height: 35px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 11px;

    outline: none;

    color: #fff;

    background: rgba(255, 255, 255, 0.10);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09);

    cursor: pointer;

    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease,
        opacity 0.22s ease;
}

.blue-offer-next:hover,
.blue-offer-prev:hover {
    color: var(--offer-primary);

    background: #fff;

    transform: translateY(-2px);
}

.blue-offer-next.swiper-button-disabled,
.blue-offer-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.blue-offer-pagination {
    position: static !important;

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

    width: auto !important;
}

.blue-offer-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 3px !important;

    opacity: 1;

    background: rgba(255, 255, 255, 0.31);

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.blue-offer-pagination .swiper-pagination-bullet-active {
    width: 25px;

    border-radius: 999px;

    background: #fff;
}

/* =====================================================
   Side thumbnails
   ===================================================== */

.blue-offer-thumbs {
    height: 436px;

    padding: 18px 14px;

    border-right: 1px solid var(--offer-white-line);

    background: rgba(20, 17, 70, 0.22);
}

.blue-offer-thumbs .swiper-slide {
    height: auto;

    cursor: pointer;
}

.blue-thumb-card {
    display: flex;
    align-items: center;

    gap: 10px;

    min-height: 77px;
    padding: 9px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.08);

    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.blue-thumb-card:hover {
    background: rgba(255, 255, 255, 0.13);

    transform: translateX(-2px);
}

.blue-offer-thumbs
.swiper-slide-thumb-active
.blue-thumb-card {
    border-color: rgba(255, 255, 255, 0.65);

    background: #fff;

    box-shadow:
        0 12px 24px rgba(17, 14, 67, 0.22);

    transform: translateX(-4px);
}

.blue-thumb-card img {
    width: 53px;
    height: 53px;

    flex-shrink: 0;

    padding: 5px;

    border: 1px solid rgba(64, 59, 179, 0.09);
    border-radius: 12px;

    object-fit: contain;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f0efff
        );
}

.blue-thumb-info {
    min-width: 0;
}

.blue-thumb-info h4 {
    display: -webkit-box;

    overflow: hidden;

    margin: 0 0 4px;

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.75;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;

    transition: color 0.25s ease;
}

.blue-thumb-info strong {
    color: #d7d4ff;

    font-size: 11px;
    font-weight: 900;

    transition: color 0.25s ease;
}

.blue-thumb-info small {
    color: rgba(255, 255, 255, 0.72);

    font-size: 8px;

    transition: color 0.25s ease;
}

.blue-offer-thumbs
.swiper-slide-thumb-active
.blue-thumb-info h4 {
    color: var(--offer-text);
}

.blue-offer-thumbs
.swiper-slide-thumb-active
.blue-thumb-info strong {
    color: var(--offer-primary);
}

.blue-offer-thumbs
.swiper-slide-thumb-active
.blue-thumb-info small {
    color: #747188;
}

/* =====================================================
   Tablet
   ===================================================== */

@media (max-width: 1199px) {
    .blue-offer-main {
        padding: 17px 17px 56px;
    }

    .blue-offer-product {
        padding: 16px;
    }

    .blue-offer-image {
        height: 280px;
    }

    .blue-offer-title-link h3 {
        font-size: 17px;
    }

    .blue-offer-prices strong {
        font-size: 22px;
    }

    .blue-offer-thumbs {
        height: 405px;
    }
}

/* =====================================================
   Mobile
   ===================================================== */

@media (max-width: 767px) {
    .blue-offers {
        padding: 20px 0;
    }

    .blue-offers-box {
        border-radius: 22px;

        box-shadow:
            0 15px 38px rgba(46, 42, 148, 0.20);
    }

    .blue-offers-header {
        padding: 13px 14px;
    }

    .blue-offers-header-title {
        gap: 10px;
    }

    .blue-offers-header h2 {
        font-size: 17px;
    }

    .blue-offers-header p,
    .blue-offers-count {
        display: none;
    }

    .blue-offers-icon {
        width: 42px;
        height: 42px;

        border-radius: 13px;

        font-size: 18px;
    }

    .blue-offer-main {
        padding: 12px 12px 52px;
    }

    .blue-offer-product {
        min-height: auto;

        padding: 12px;

        border-radius: 19px;
    }

    .blue-offer-product:hover {
        transform: none;
    }

    .blue-offer-product .row > [class*="col-sm-"] {
        width: 100%;
    }

    .blue-offer-image {
        height: 235px;

        padding: 14px;

        border-radius: 18px;
    }

    .blue-offer-image img {
        max-width: 215px;
    }

    .blue-offer-product:hover .blue-offer-image img {
        transform: none;
    }

    .blue-discount-badge,
    .blue-special-badge {
        top: 10px;
        right: 10px;

        min-width: 50px;
        height: 34px;

        padding: 0 10px;

        font-size: 12px;
    }

    .blue-offer-content {
        padding: 13px 2px 2px;
    }

    .blue-offer-label {
        margin-bottom: 9px;

        padding: 5px 10px;

        font-size: 10px;
    }

    .blue-offer-title-link h3 {
        min-height: auto;

        margin-bottom: 8px;

        font-size: 15px;
        line-height: 1.85;
    }

    .blue-offer-english {
        display: none;
    }

    .blue-offer-info {
        gap: 6px;

        margin-bottom: 14px;
    }

    .blue-offer-info span {
        padding: 6px 8px;

        font-size: 9px;
    }

    .blue-offer-footer {
        align-items: center;

        gap: 10px;

        padding-top: 13px;
    }

    .blue-old-price {
        font-size: 9px;
    }

    .blue-offer-prices strong {
        font-size: 19px;
    }

    .blue-offer-prices small {
        font-size: 9px;
    }

    .blue-offer-button {
        min-height: 40px;

        padding: 8px 13px;

        border-radius: 11px;

        font-size: 10px;
    }

    .blue-offer-controls {
        right: 12px;
        bottom: 10px;
        left: 12px;
    }

    .blue-offer-next,
    .blue-offer-prev {
        width: 31px;
        height: 31px;

        border-radius: 10px;
    }
}

/* =====================================================
   Small mobile
   ===================================================== */

@media (max-width: 390px) {
    .blue-offers-box {
        border-radius: 19px;
    }

    .blue-offer-main {
        padding-right: 10px;
        padding-left: 10px;
    }

    .blue-offer-product {
        padding: 10px;

        border-radius: 17px;
    }

    .blue-offer-image {
        height: 210px;

        border-radius: 16px;
    }

    .blue-offer-image img {
        max-width: 190px;
    }

    .blue-offer-footer {
        gap: 7px;
    }

    .blue-offer-prices strong {
        font-size: 17px;
    }

    .blue-offer-button {
        min-height: 38px;

        padding: 8px 10px;

        font-size: 9px;
    }
}

/* =====================================================
   Reduced motion
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    .blue-offer-product,
    .blue-offer-image img,
    .blue-offer-button,
    .blue-offer-button i,
    .blue-offer-next,
    .blue-offer-prev,
    .blue-thumb-card {
        transition: none !important;
    }
}





/* =====================================================
   محصولات تایم‌دار موبایل
   دو کارت کنار هم + تایمر افقی و جمع‌وجور
   ===================================================== */

@media (max-width: 767px) {

    .timed-products-column {
        width: 100%;
        padding-right: 5px;
        padding-left: 5px;
    }

    .suggetMoment {
        width: 100%;
        padding: 2px 0 13px;
        overflow: hidden;
    }

    .suggetMoment .swiper-wrapper {
        align-items: stretch;
    }

    .suggetMoment .swiper-slide {
        height: auto;
        padding: 3px !important;
    }

    .suggetMoment .swiper-slide > a {
        display: block;
        height: 100%;
        color: inherit;
        text-decoration: none;
    }

    /* کارت محصول */

    .suggetMoment .timed-product-box {
        display: flex;
        flex-direction: column;

        width: 100%;
        height: 100%;
        min-height: 245px;

        padding: 7px;

        overflow: hidden;

        border: 1px solid rgba(64, 59, 179, 0.13);
        border-radius: 14px;

        background: #fff;

        box-shadow:
            0 5px 14px rgba(35, 31, 90, 0.10);
    }

    /* =====================================================
       تایمر
       ===================================================== */

    .suggetMoment .product-timer {
        position: relative;

        display: block !important;

        width: 100%;
        min-height: 54px;

        margin: 0 0 3px;
        padding-top: 20px;
    }

    /* برچسب تخفیف */

    .suggetMoment .product-timer .timer-label {
        position: absolute;

        top: 0;
        right: 0;

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

        width: auto;
        height: 18px;

        margin: 0;
        padding: 2px 6px;

        border-radius: 6px;

        background: rgba(255, 72, 72, 0.12);
    }

    .suggetMoment .product-timer .timer-label span {
        display: block;

        color: #f04444;

        font-size: 6px !important;
        font-weight: 900;
        line-height: 1;

        white-space: nowrap;
    }

    /* ظرف تایمر */

    .suggetMoment .product-timer .timer {
        display: block;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0;

        overflow: visible;
    }

    /* والد ساعت، دقیقه و ثانیه */

    .suggetMoment .product-timer .countdown {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;

        direction: rtl;

        width: 100% !important;

        gap: 5px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* هر واحد تایمر */

    .suggetMoment
    .product-timer
    .countdown
    > .countdown-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;

        flex: 0 0 27px !important;

        width: 27px !important;
        min-width: 27px !important;
        max-width: 27px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /* عدد تایمر */

    .suggetMoment
    .product-timer
    .countdown-value {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 27px !important;
        min-width: 27px !important;
        height: 25px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        border-radius: 7px !important;

        color: #302c83 !important;

        font-size: 8px !important;
        font-weight: 900 !important;
        line-height: 25px !important;

        background: #f1f0f7 !important;

        box-shadow: none !important;
    }

    /* عنوان ساعت، دقیقه و ثانیه */

    .suggetMoment
    .product-timer
    .countdown-heading {
        display: block !important;

        width: 100% !important;

        margin: 2px 0 0 !important;
        padding: 0 !important;

        color: #454251 !important;

        font-size: 6px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        text-align: center !important;

        white-space: nowrap;
    }

    /* =====================================================
       تصویر
       ===================================================== */

    .suggetMoment .product-image {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 98px;

        margin: 2px 0 5px;
        padding: 3px;

        overflow: hidden;
    }

    .suggetMoment .product-image img {
        display: block;

        width: 100%;
        height: 100%;
        max-width: 100px;
        max-height: 94px;

        margin: auto;

        object-fit: contain;

        filter:
            drop-shadow(
                0 5px 7px rgba(31, 27, 83, 0.13)
            );
    }

    /* =====================================================
       عنوان محصول
       ===================================================== */

    .suggetMoment .product-title {
        display: block;

        min-height: 31px;

        margin: 0;
    }

    .suggetMoment .product-title .title {
        width: 100%;
    }

    .suggetMoment .product-title p {
        display: -webkit-box;

        min-height: 30px;

        margin: 0;
        overflow: hidden;

        color: #282635;

        font-size: 8px !important;
        font-weight: 800;
        line-height: 1.75;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* =====================================================
       قیمت
       ===================================================== */

    .suggetMoment .product-action {
        margin-top: auto !important;
        padding: 6px 0 0 !important;

        border-top: 1px solid #d8d7df;
    }

    .suggetMoment .product-action .price {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;

        width: 100% !important;

        gap: 0;

        margin: 0 !important;
    }

    .suggetMoment .new-price {
        order: 2;

        margin: 0;

        color: var(--main-color-one, #403bb3);

        font-size: 10px;
        font-weight: 900;
        line-height: 1.6;

        white-space: nowrap;
    }

    .suggetMoment .new-price span {
        font-size: 6px !important;
        font-weight: 700;
    }

    .suggetMoment .old-price {
        order: 1;

        margin: 0;

        color: #aaa9b2;

        font-size: 7px;
        line-height: 1.4;

        text-decoration: line-through;
        white-space: nowrap;
    }

    /* نوار پیشرفت پایین اسلایدر */

    .suggetMoment .swiper-progress-bar {
        top: auto !important;
        right: 6% !important;
        bottom: 2px !important;
        left: 6% !important;

        width: 88% !important;
        height: 2px !important;

        margin: 0 !important;
    }
}

/* =====================================================
   گوشی‌های کوچک
   ===================================================== */

@media (max-width: 390px) {

    .suggetMoment .swiper-slide {
        padding: 2px !important;
    }

    .suggetMoment .timed-product-box {
        min-height: 230px;
        padding: 6px;
    }

    .suggetMoment .product-timer {
        min-height: 50px;
    }

    .suggetMoment .product-timer .countdown {
        gap: 3px !important;
    }

    .suggetMoment
    .product-timer
    .countdown
    > .countdown-container {
        flex-basis: 24px !important;

        width: 24px !important;
        min-width: 24px !important;
        max-width: 24px !important;
    }

    .suggetMoment
    .product-timer
    .countdown-value {
        width: 24px !important;
        min-width: 24px !important;
        height: 23px !important;

        font-size: 7px !important;
        line-height: 23px !important;
    }

    .suggetMoment
    .product-timer
    .countdown-heading {
        font-size: 5px !important;
    }

    .suggetMoment .product-image {
        height: 88px;
    }

    .suggetMoment .product-image img {
        max-width: 88px;
        max-height: 84px;
    }

    .suggetMoment .product-title {
        min-height: 29px;
    }

    .suggetMoment .product-title p {
        min-height: 28px;

        font-size: 7px !important;
        line-height: 1.7;
    }

    .suggetMoment .new-price {
        font-size: 9px;
    }
}



/*    برای توضیحات محصول تک*/
/* متن‌های بولد داخل توضیحات محصول */
.product-description-content strong,
.product-description-content b,
.product-description-content span[style*="font-weight"] {
    color: #39339b !important;
    font-weight: 900 !important;

    background:
        linear-gradient(
            135deg,
            #f2f1ff 0%,
            #e8e6ff 100%
        ) !important;

    padding: 3px 8px;
    border: 1px solid rgba(64, 59, 179, 0.12);
    border-radius: 6px;

    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* فاصله مناسب وقتی متن بولد چند خطی است */
.product-description-content strong,
.product-description-content b {
    line-height: 2.2;
}

/* حالت گوشی */
@media (max-width: 576px) {
    .product-description-content strong,
    .product-description-content b,
    .product-description-content span[style*="font-weight"] {
        padding: 2px 6px;
        border-radius: 5px;
    }
}


/*    سر تیتر بالای محصولات*/
/* =====================================================
مسیر صفحه محصول
===================================================== */

.product-breadcrumb-section {
    margin-bottom: 16px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;

    width: 100%;
    min-height: 56px;

    padding: 9px 14px;

    overflow: hidden;

    border: 1px solid rgba(64, 59, 179, 0.10);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f7ff 100%
        );

    box-shadow:
        0 5px 18px rgba(40, 36, 105, 0.05);
}

.product-breadcrumb-link,
.product-breadcrumb-current {
    display: inline-flex;
    align-items: center;

    min-width: 0;

    gap: 6px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;

    white-space: nowrap;
}

.product-breadcrumb-link {
    flex: 0 0 auto;

    color: #666274;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.product-breadcrumb-link:hover {
    color: var(--main-color-one, #403bb3);
}

.product-breadcrumb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: var(--main-color-one, #403bb3);

    border-radius: 8px;

    background: rgba(64, 59, 179, 0.08);
}

.product-breadcrumb-icon i {
    color: inherit;
    font-size: 13px;
}

.product-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    margin: 0 9px;

    color: #b5b2c1;
}

.product-breadcrumb-separator i {
    color: inherit;
    font-size: 9px;
}

.product-breadcrumb-current {
    flex: 1;

    padding: 7px 11px;

    overflow: hidden;

    color: var(--main-color-one, #403bb3);

    border-radius: 9px;

    background: rgba(64, 59, 179, 0.07);
}

.product-breadcrumb-current i {
    flex: 0 0 auto;

    color: var(--main-color-one, #403bb3);

    font-size: 14px;
}

.product-breadcrumb-current span {
    display: block;

    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

/* حالت گوشی */

@media (max-width: 576px) {

    .product-breadcrumb-section {
        margin-bottom: 11px;
    }

    .product-breadcrumb {
        min-height: 48px;

        padding: 7px 9px;

        border-radius: 11px;
    }

    .product-breadcrumb-link,
    .product-breadcrumb-current {
        gap: 4px;

        font-size: 10px;
    }

    .product-breadcrumb-icon {
        width: 24px;
        height: 24px;

        border-radius: 7px;
    }

    .product-breadcrumb-icon i {
        font-size: 11px;
    }

    .product-breadcrumb-separator {
        margin: 0 5px;
    }

    .product-breadcrumb-separator i {
        font-size: 7px;
    }

    .product-breadcrumb-current {
        padding: 6px 8px;
    }

    .product-breadcrumb-current i {
        font-size: 11px;
    }
}





/* عکس کارت‌های صفحه همه مطالب وبلاگ */
.blog-post .blog-item .image {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f4f4f6;
    border-radius: 16px;
}

.blog-post .blog-item .image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    background-color: #f4f4f6;
    border-radius: 16px;
}

@media (max-width: 575.98px) {
    .blog-slider .blog-card-image {
        aspect-ratio: 10 / 7;
        border-radius: 14px;
    }

    .blog-slider .blog-card-image__img {
        border-radius: 14px;
    }

    .blog-post .blog-item .image {
        height: 190px;
        border-radius: 12px;
    }

    .blog-post .blog-item .image img {
        border-radius: 12px;
    }
}

/* ==========================================================================
   Account Center Redesign - Profile / Orders / Addresses
   ========================================================================== */
.account-center-page {
    padding: 34px 0 54px;
    background: #f7f8fb;
}

.account-center-page > .container-fluid {
    position: relative;
}

.account-sidebar {
    top: 92px;
    padding: 14px;
    border: 1px solid #e9edf3;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(28, 39, 60, 0.07);
    overflow: hidden;
}

.account-sidebar-mobile {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.account-sidebar-user {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.98), #fff);
    border: 1px solid #edf0f4;
}

.account-sidebar-user::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    border-radius: 0 17px 17px 0;
    background: var(--main-color-one);
}

.account-sidebar-avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.account-sidebar-user-info {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.account-sidebar-user-info strong {
    color: #202631;
    font-size: 15px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-sidebar-user-info span {
    width: fit-content;
    color: #8a93a3;
    font-size: 12px;
    font-weight: 700;
}

.account-sidebar-nav {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.account-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 8px 9px;
    border-radius: 14px;
    color: #4d5666;
    text-decoration: none;
    transition: 0.22s ease;
}

.account-sidebar-link:hover {
    color: var(--main-color-one);
    background: rgba(0, 0, 0, 0.025);
    transform: translateX(-2px);
}

.account-sidebar-link.active {
    color: var(--main-color-one);
    background: var(--main-color-one-shadow);
    font-weight: 900;
}

.account-sidebar-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: #f3f5f8;
    color: #677184;
    font-size: 18px;
    transition: 0.22s ease;
}

.account-sidebar-link.active .account-sidebar-link-icon {
    color: #fff;
    background: var(--main-color-one);
    box-shadow: 0 8px 18px var(--main-color-one-shadow);
}

.account-sidebar-link-text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
}

.account-sidebar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    border-radius: 999px;
    color: var(--main-color-one);
    background: #fff;
    border: 1px solid var(--main-color-one-shadow);
    font-size: 11px;
    font-weight: 900;
}

.account-sidebar-arrow {
    color: #b8bec8;
    font-size: 12px;
}

.account-sidebar-link.is-danger {
    margin-top: 4px;
    color: #d9485f;
}

.account-sidebar-link.is-danger .account-sidebar-link-icon {
    color: #d9485f;
    background: #fff1f3;
}

.account-sidebar-link.is-danger:hover {
    color: #c62f48;
    background: #fff5f6;
}

.account-mobile-menu-btn {
    right: 16px;
    bottom: 84px;
    z-index: 1030;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    padding: 9px 13px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--main-color-one);
    box-shadow: 0 12px 30px var(--main-color-one-shadow);
    font-size: 13px;
    font-weight: 900;
}

.account-mobile-menu-btn:hover,
.account-mobile-menu-btn:focus {
    color: #fff;
    background: var(--main-color-one-hover);
}

.account-mobile-menu-btn i {
    font-size: 19px;
}

.account-offcanvas {
    width: min(86vw, 340px) !important;
}

.account-offcanvas .offcanvas-body {
    padding: 15px;
}

.account-page-heading,
.account-order-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.account-page-eyebrow,
.account-card-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--main-color-one);
    font-size: 12px;
    font-weight: 900;
}

.account-page-heading h1,
.account-order-detail-topbar h1 {
    margin: 0;
    color: #202631;
    font-size: 27px;
    font-weight: 950;
    line-height: 1.5;
}

.account-page-heading p {
    max-width: 650px;
    margin: 7px 0 0;
    color: #8991a0;
    font-size: 13px;
    line-height: 2;
}

.account-page-heading-stat {
    display: grid;
    justify-items: center;
    min-width: 118px;
    padding: 13px 17px;
    border: 1px solid #e8ecf2;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(28, 39, 60, 0.05);
}

.account-page-heading-stat span {
    color: var(--main-color-one);
    font-size: 22px;
    font-weight: 950;
    line-height: 1.2;
}

.account-page-heading-stat small {
    margin-top: 4px;
    color: #8b94a3;
    font-size: 11px;
    font-weight: 700;
}

.account-orders-list {
    display: grid;
    gap: 16px;
}

.account-order-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e8ecf2;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(28, 39, 60, 0.055);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.account-order-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: #f0b429;
}

.account-order-card.is-paid::before,
.account-order-card.is-delivered::before {
    background: #21a66b;
}

.account-order-card.is-processing::before,
.account-order-card.is-shipped::before {
    background: #3f7ee8;
}

.account-order-card.is-cancelled::before {
    background: #e34d59;
}

.account-order-card:hover {
    transform: translateY(-2px);
    border-color: #dce2ea;
    box-shadow: 0 18px 42px rgba(28, 39, 60, 0.085);
}

.account-order-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 20px;
    border-bottom: 1px solid #edf0f4;
    background: linear-gradient(180deg, #fff, #fcfcfd);
}

.account-order-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.account-order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 32px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.account-order-status.is-pending {
    color: #9b6b00;
    background: #fff7dc;
    border: 1px solid #ffe5a0;
}

.account-order-status.is-paid,
.account-order-status.is-delivered {
    color: #168457;
    background: #eaf8f1;
    border: 1px solid #c8eedc;
}

.account-order-status.is-processing,
.account-order-status.is-shipped {
    color: #2f67c5;
    background: #edf4ff;
    border: 1px solid #d2e3ff;
}

.account-order-status.is-cancelled {
    color: #c43d50;
    background: #fff0f2;
    border: 1px solid #ffd2d9;
}

.account-order-number {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.account-order-number span {
    color: #8c95a4;
    font-size: 12px;
    font-weight: 700;
}

.account-order-number strong {
    color: #313846;
    font-size: 14px;
    font-weight: 950;
}

.account-order-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #747e8e;
    font-size: 12px;
    font-weight: 800;
}

.account-order-date i {
    color: var(--main-color-one);
    font-size: 15px;
}

.account-order-date small {
    padding-right: 7px;
    border-right: 1px solid #dfe3e9;
    color: #a0a7b2;
}

.account-order-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .9fr);
    align-items: center;
    gap: 22px;
    padding: 20px;
}

.account-order-products {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.account-order-products-preview {
    display: flex;
    direction: ltr;
    align-items: center;
    flex: 0 0 auto;
}

.account-order-product-thumb,
.account-order-more-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-right: -11px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 16px;
    background: #f5f7fa;
    box-shadow: 0 5px 13px rgba(28, 39, 60, 0.08);
}

.account-order-product-thumb:first-child {
    margin-right: 0;
}

.account-order-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.account-order-product-thumb i {
    color: #a6aebb;
    font-size: 22px;
}

.account-order-more-products {
    position: relative;
    z-index: 2;
    color: var(--main-color-one);
    background: #fff;
    font-size: 12px;
    font-weight: 950;
}

.account-order-product-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.account-order-product-copy > span,
.account-order-meta-item small,
.account-order-product-quantity small,
.account-order-product-price small,
.account-order-product-total small,
.account-info-item small {
    color: #959daa;
    font-size: 11px;
    font-weight: 700;
}

.account-order-product-copy strong {
    overflow: hidden;
    color: #303744;
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-order-product-copy small {
    color: #7d8797;
    font-size: 11px;
}

.account-order-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-order-meta-item,
.account-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 11px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #fafbfc;
}

.account-order-meta-icon,
.account-info-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 11px;
    color: var(--main-color-one);
    background: #fff;
    box-shadow: 0 5px 14px rgba(28, 39, 60, 0.06);
}

.account-order-meta-item > div,
.account-info-item > div {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.account-order-meta-item strong {
    overflow: hidden;
    color: #303744;
    font-size: 12px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-order-meta-item strong span {
    color: #7f8897;
    font-size: 10px;
    font-weight: 700;
}

.account-order-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 20px 16px;
    border-top: 1px solid #edf0f4;
}

.account-order-footer-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8a93a1;
    font-size: 11px;
}

.account-order-footer-note i {
    color: #2c9b69;
    font-size: 16px;
}

.account-order-detail-btn,
.account-primary-btn,
.account-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.2s ease;
}

.account-order-detail-btn {
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 12px;
    color: #fff;
    background: var(--main-color-one);
    font-size: 12px;
}

.account-order-detail-btn:hover {
    color: #fff;
    background: var(--main-color-one-hover);
    transform: translateX(-2px);
}

.account-empty-state {
    display: flex;
    min-height: 390px;
    padding: 34px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed #dce2ea;
    border-radius: 22px;
    background: #fff;
}

.account-empty-state-compact {
    min-height: 220px;
}

.account-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 17px;
    border-radius: 24px;
    color: var(--main-color-one);
    background: var(--main-color-one-shadow);
    font-size: 32px;
}

.account-empty-state h3 {
    margin: 0 0 7px;
    color: #303744;
    font-size: 18px;
    font-weight: 950;
}

.account-empty-state p {
    max-width: 520px;
    margin: 0 0 18px;
    color: #8b94a2;
    font-size: 13px;
    line-height: 2;
}

.account-primary-btn {
    min-height: 44px;
    padding: 9px 17px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--main-color-one);
    font-size: 12px;
}

.account-primary-btn:hover {
    color: #fff;
    background: var(--main-color-one-hover);
}

.account-pagination .pagination {
    justify-content: center;
    gap: 5px;
}

.account-pagination .page-link {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
    border-color: #e5e9ef;
    color: #626c7c;
    box-shadow: none !important;
}

.account-pagination .active > .page-link {
    color: #fff;
    border-color: var(--main-color-one);
    background: var(--main-color-one);
}

/* Order details */
.account-order-detail-topbar {
    margin-bottom: 18px;
}

.account-back-btn {
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid #e3e8ee;
    border-radius: 12px;
    color: #5d6675;
    background: #fff;
    font-size: 12px;
}

.account-back-btn:hover {
    color: var(--main-color-one);
    border-color: var(--main-color-one-shadow);
    background: var(--main-color-one-shadow);
}

.account-order-detail-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 21px;
    overflow: hidden;
    border: 1px solid #e6ebf1;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff, #f9fafc);
    box-shadow: 0 13px 35px rgba(28, 39, 60, 0.055);
}

.account-order-detail-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--main-color-one-shadow);
    opacity: .6;
}

.account-order-detail-hero-main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.account-order-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 17px;
    color: #fff;
    background: var(--main-color-one);
    font-size: 24px;
    box-shadow: 0 10px 24px var(--main-color-one-shadow);
}

.account-order-detail-hero-main > div:last-child {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.account-order-detail-hero-main span,
.account-order-detail-hero-main small {
    color: #8992a1;
    font-size: 11px;
    font-weight: 700;
}

.account-order-detail-hero-main strong {
    color: #252d39;
    font-size: 18px;
    font-weight: 950;
}

.account-order-detail-status {
    position: relative;
    z-index: 1;
    min-height: 38px;
    padding: 7px 12px;
}

.account-order-progress-card,
.account-info-card,
.account-payment-card,
.account-order-products-card {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid #e7ebf1;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(28, 39, 60, 0.05);
}

.account-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.account-card-title-row h2 {
    margin: 0;
    color: #29313d;
    font-size: 16px;
    font-weight: 950;
}

.account-card-title-row > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: var(--main-color-one);
    background: var(--main-color-one-shadow);
    font-size: 19px;
}

.account-order-progress {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    direction: rtl;
}

.account-order-progress::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 10%;
    left: 10%;
    height: 3px;
    border-radius: 999px;
    background: #e8ecf1;
}

.account-order-progress-step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #a0a7b2;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

.account-order-progress-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 4px solid #fff;
    border-radius: 15px;
    color: #9da6b3;
    background: #edf0f4;
    box-shadow: 0 0 0 1px #e1e5eb;
    font-size: 17px;
}

.account-order-progress-step.is-completed {
    color: #2e6c52;
}

.account-order-progress-step.is-completed .account-order-progress-node {
    color: #fff;
    background: #27a76f;
    box-shadow: 0 0 0 1px #27a76f, 0 8px 18px rgba(39, 167, 111, .18);
}

.account-order-progress-step.is-current {
    color: var(--main-color-one);
}

.account-order-progress-step.is-current .account-order-progress-node {
    color: var(--main-color-one);
    background: #fff;
    box-shadow: 0 0 0 2px var(--main-color-one-shadow), 0 8px 18px var(--main-color-one-shadow);
}

.account-order-cancelled-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 17px;
    border: 1px solid #ffd2d9;
    border-radius: 16px;
    color: #b63b4c;
    background: #fff3f4;
}

.account-order-cancelled-note i {
    font-size: 20px;
}

.account-order-cancelled-note > div {
    display: grid;
    gap: 3px;
}

.account-order-cancelled-note strong {
    font-size: 13px;
}

.account-order-cancelled-note span {
    color: #96616a;
    font-size: 11px;
    line-height: 1.9;
}

.account-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-info-item-wide {
    grid-column: 1 / -1;
}

.account-info-item strong {
    color: #343b47;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.account-payment-rows {
    display: grid;
    gap: 2px;
}

.account-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed #e5e9ef;
    color: #707a8a;
    font-size: 12px;
}

.account-payment-row strong {
    color: #353d49;
    font-size: 13px;
    font-weight: 950;
}

.account-payment-row strong small {
    color: #8b94a2;
    font-size: 10px;
}

.account-payment-row.is-discount strong {
    color: #1d9a66;
}

.account-payment-row.is-total {
    margin-top: 5px;
    padding: 14px 12px;
    border: 0;
    border-radius: 13px;
    color: #28313d;
    background: #f6f8fa;
    font-weight: 900;
}

.account-payment-row.is-total strong {
    color: var(--main-color-one);
    font-size: 16px;
}

.account-payment-safe-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
    color: #87909f;
    font-size: 10px;
    line-height: 1.9;
}

.account-payment-safe-note i {
    color: #26a46e;
    font-size: 16px;
}

.account-products-title-row {
    margin-bottom: 12px;
}

.account-products-count {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--main-color-one);
    background: var(--main-color-one-shadow);
    font-size: 11px;
    font-weight: 900;
}

.account-order-product-list {
    display: grid;
}

.account-order-product-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1.6fr) 80px minmax(125px, .7fr) minmax(125px, .7fr);
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #edf0f4;
}

.account-order-product-row:last-child {
    border-bottom: 0;
}

.account-order-product-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    overflow: hidden;
    border: 1px solid #ebeff4;
    border-radius: 16px;
    background: #fafbfc;
}

.account-order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.account-order-product-image > i {
    color: #a8b0bc;
    font-size: 25px;
}

.account-order-product-main {
    min-width: 0;
}

.account-order-product-main h3 {
    margin: 0 0 8px;
    color: #313946;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.9;
}

.account-order-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.account-order-product-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 3px 8px;
    border-radius: 8px;
    color: #757f8f;
    background: #f3f5f8;
    font-size: 10px;
    font-weight: 700;
}

.account-order-product-tags i {
    color: var(--main-color-one);
}

.account-order-product-quantity,
.account-order-product-price,
.account-order-product-total {
    display: grid;
    gap: 4px;
}

.account-order-product-quantity {
    justify-items: center;
}

.account-order-product-quantity strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    border-radius: 9px;
    color: #515b6a;
    background: #f2f4f7;
    font-size: 12px;
    font-weight: 950;
}

.account-order-product-price strong,
.account-order-product-total strong {
    color: #414956;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

.account-order-product-total strong {
    color: #168457;
}

.account-order-product-price strong span,
.account-order-product-total strong span {
    color: #8d95a2;
    font-size: 9px;
    font-weight: 700;
}
.account-order-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =================================
   Header Profile Dropdown
================================= */

.auth-link {
    position: relative;
}

.profile-header-menu {
    width: 210px;
    min-width: 210px;
    padding: 8px;
    margin-top: 10px !important;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    direction: rtl;
    text-align: right;
}

.profile-header-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.profile-header-menu .dropdown-item i {
    font-size: 17px;
    color: var(--main-color-one);
}

.profile-header-menu .dropdown-item:hover {
    background: #f6f6fb;
    color: var(--main-color-one);
}

.profile-header-menu .dropdown-item.text-danger i {
    color: #dc3545;
}

.profile-header-menu .dropdown-divider {
    margin: 6px 0;
}

.mobile-profile-btn {
    cursor: pointer;
}

/* =================================
   Profile Button - All Screens
================================= */

.auth-link .dropdown > .mobile-profile-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0 !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    background-color: var(--main-color-two) !important;
    color: #fff !important;

    border: 0 !important;
    border-radius: 8px !important;

    cursor: pointer;
}

.auth-link .dropdown > .mobile-profile-btn i {
    color: #fff !important;
    font-size: 21px;
    line-height: 1;
}

.auth-link .dropdown > .mobile-profile-btn:hover,
.auth-link .dropdown > .mobile-profile-btn:focus,
.auth-link .dropdown > .mobile-profile-btn:active,
.auth-link .dropdown > .mobile-profile-btn.show {
    background-color: var(--main-color-two) !important;
    color: #fff !important;
}


/* =================================
   Floating Contact Position
================================= */

#btncollapzion {
    left: 24px !important;
    bottom: 24px !important;
}


/* =================================
   Mobile Support Menu
================================= */

@media (max-width: 991.98px) {

    /* چهار آیتم در منوی پایین */
    .mobile-footer-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    /* دکمه پشتیبانی مثل بقیه آیتم‌ها */
    .mobile-support-trigger {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        font-family: inherit;
        cursor: pointer;
    }

    /* دکمه شناور قدیمی در موبایل مخفی شود */
    #btncollapzion {
        display: none !important;
    }

    #contactOverlay {
        display: none !important;
    }

    /* پنل پشتیبانی */
    .mobile-support-offcanvas {
        height: auto !important;
        max-height: 70vh;
        border: 0;
        border-radius: 22px 22px 0 0;
    }

    .mobile-support-offcanvas .offcanvas-header {
        padding: 18px 18px 14px;
        border-bottom: 1px solid #edf0f5;
    }

    .mobile-support-offcanvas .offcanvas-body {
        padding: 12px 16px 24px;
    }

    .mobile-support-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-support-option {
        width: 100%;
        min-height: 64px;
        padding: 9px 11px;
        display: flex;
        align-items: center;
        gap: 12px;

        color: #303747;
        background: #fff;

        border: 1px solid #edf0f5;
        border-radius: 14px;

        text-decoration: none;
    }

    .mobile-support-option-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;

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

        border-radius: 12px;
        font-size: 19px;
    }

    .support-phone {
        color: #403eb3;
        background: rgba(64, 62, 179, 0.10);
    }

    .support-telegram {
        color: #229ed9;
        background: rgba(34, 158, 217, 0.10);
    }

    .support-whatsapp {
        color: #25d366;
        background: rgba(37, 211, 102, 0.10);
    }

    .mobile-support-option-content {
        min-width: 0;
        flex: 1;

        display: flex;
        flex-direction: column;
        gap: 3px;

        text-align: right;
    }

    .mobile-support-option-content strong {
        color: #303747;
        font-size: 13px;
        font-weight: 800;
    }

    .mobile-support-option-content small {
        color: #8b91a0;
        font-size: 10px;
    }

    .mobile-support-arrow {
        color: #adb2bd;
        font-size: 13px;
    }
}




/* =========================================================
   Search Filter - Category Tree
   ========================================================= */

.category-tree {
    width: 100%;
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 2px 4px 6px;
}

/* اسکرول */
.category-tree::-webkit-scrollbar {
    width: 5px;
}

.category-tree::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 10px;
}

.category-tree::-webkit-scrollbar-thumb {
    background: var(--main-color-one);
    border-radius: 10px;
}

/* هر دسته */
.category-tree-node {
    position: relative;
    width: 100%;
}

/* ردیف دسته */
.category-tree-row {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 6px 8px;
    margin-bottom: 3px;
    border-radius: 9px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.category-tree-row:hover {
    background: rgba(0, 0, 0, 0.025);
    border-color: var(--bs-gray-300);
}

/* دسته انتخاب شده */
.category-tree-row.is-selected {
    background: var(--main-color-one-shadow);
    border-color: var(--main-color-one);
}

/* دکمه باز و بسته شدن */
.category-tree-toggle {
    width: 26px;
    height: 26px;
    min-width: 26px;

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

    padding: 0;
    margin-left: 5px;

    border: 0;
    outline: 0;
    border-radius: 7px;

    color: var(--main-color-one);
    background: transparent;

    transition: all 0.2s ease;
}

.category-tree-toggle:hover {
    background: var(--main-color-one);
    color: #fff;
}

.category-tree-toggle i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

/* فلش وقتی باز است */
.category-tree-toggle[aria-expanded="true"] i {
    transform: rotate(-90deg);
}

/* برای دسته‌هایی که فرزند ندارند */
.category-tree-spacer {
    display: inline-block;
    width: 26px;
    min-width: 26px;
    margin-left: 5px;
}

/* checkbox */
.category-tree-check {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.category-tree-check .form-check-input {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin: 0 0 0 8px;

    cursor: pointer;

    border-color: var(--bs-gray-400);
    box-shadow: none;
}

.category-tree-check .form-check-input:checked {
    background-color: var(--main-color-one);
    border-color: var(--main-color-one);
}

.category-tree-check .form-check-input:focus {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 0.15rem var(--main-color-one-shadow);
}

/* عنوان دسته */
.category-tree-label {
    display: block;

    margin: 0;

    font-size: 13px;
    line-height: 1.8;

    cursor: pointer;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    transition: color 0.2s ease;
}

.category-tree-row:hover .category-tree-label {
    color: var(--main-color-one);
}

.category-tree-row.is-selected .category-tree-label {
    color: var(--main-color-one);
    font-weight: 700;
}

/* تعداد محصولات */
.category-tree-count {
    flex-shrink: 0;

    min-width: 25px;

    padding: 2px 7px;
    margin-right: 6px;

    text-align: center;

    font-size: 11px;
    line-height: 1.6;

    color: #777;
    background: #f3f3f3;

    border-radius: 20px;
}

.category-tree-row.is-selected .category-tree-count {
    color: var(--main-color-one);
    background: #fff;
}

/* زیرمجموعه‌ها */
.category-tree-children {
    position: relative;

    margin-right: 13px;
    padding-right: 13px;

    border-right: 1px dashed var(--bs-gray-300);
}

/* کمی فاصله بین شاخه‌ها */
.category-tree-collapse {
    margin-bottom: 2px;
}

/* دسته‌های سطح اصلی */
.category-tree-level-0 > .category-tree-row {
    font-weight: 600;
}

/* سطوح پایین‌تر */
.category-tree-level-1 > .category-tree-row .category-tree-label,
.category-tree-level-2 > .category-tree-row .category-tree-label,
.category-tree-level-3 > .category-tree-row .category-tree-label,
.category-tree-level-4 > .category-tree-row .category-tree-label,
.category-tree-level-5 > .category-tree-row .category-tree-label,
.category-tree-level-6 > .category-tree-row .category-tree-label {
    font-weight: 400;
}

/* حالت خالی */
.category-tree-empty {
    padding: 18px 10px;

    text-align: center;

    font-size: 13px;
    line-height: 1.8;

    color: #888;
    background: #f8f8f8;

    border: 1px dashed var(--bs-gray-300);
    border-radius: 10px;
}


/* =========================================================
   Search Filter - Category Tree - Responsive
   ========================================================= */

@media only screen and (max-width: 992px) {

    .category-tree {
        max-height: 360px;
        padding-left: 2px;
    }

    .category-tree-row {
        min-height: 44px;
        padding: 7px 6px;
        border-radius: 8px;
    }

    .category-tree-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
        margin-left: 4px;
    }

    .category-tree-spacer {
        width: 28px;
        min-width: 28px;
        margin-left: 4px;
    }

    .category-tree-label {
        font-size: 13px;
        line-height: 1.9;
    }

    .category-tree-check .form-check-input {
        width: 18px;
        height: 18px;
        margin-left: 7px;
    }

    .category-tree-count {
        font-size: 10px;
        padding: 2px 6px;
        margin-right: 4px;
    }

    .category-tree-children {
        margin-right: 10px;
        padding-right: 10px;
    }
}


@media only screen and (max-width: 576px) {

    .category-tree {
        max-height: 320px;
    }

    .category-tree-row {
        min-height: 42px;
        padding: 6px 5px;
        margin-bottom: 2px;
    }

    .category-tree-toggle {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .category-tree-spacer {
        width: 26px;
        min-width: 26px;
    }

    .category-tree-label {
        font-size: 12px;
    }

    .category-tree-count {
        display: none;
    }

    .category-tree-children {
        margin-right: 8px;
        padding-right: 8px;
    }
}



/* =========================================================
   Mobile Header Category Tree
   ========================================================= */

.mobile-category-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-category-item > .d-flex {
    min-height: 46px;
}

.mobile-category-item > .d-flex > .nav-link {
    padding: 10px 6px;
    font-size: 13px;
    color: #333;
}

.mobile-category-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;

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

    margin-left: 2px;

    color: var(--main-color-one);
    background: transparent;

    border-radius: 8px;

    transition: all 0.2s ease;
}

.mobile-category-toggle:hover,
.mobile-category-toggle:focus {
    color: #fff;
    background: var(--main-color-one);
}

.mobile-category-toggle i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.mobile-category-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-category-children {
    margin: 0 12px 8px 0;
    padding: 5px 10px 5px 0;

    border-right: 1px dashed var(--bs-gray-300);
}

.mobile-category-children .nav-item {
    margin-bottom: 2px;
}

.mobile-category-children .nav-link {
    padding: 7px 10px;

    font-size: 12px;
    line-height: 1.8;

    color: #666;

    border-radius: 7px;

    transition: all 0.2s ease;
}

.mobile-category-children .nav-link:hover {
    color: var(--main-color-one);
    background: var(--main-color-one-shadow);
}



/* =========================================================
   Desktop Header Category Tree
   ========================================================= */

.header-category-parent {
    position: relative;
}

.header-category-parent-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-category-parent-row .header-category-item {
    flex: 1;
    min-width: 0;
}

.header-category-child-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;

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

    padding: 0;

    border: 0;
    outline: 0;

    color: #666;
    background: transparent;

    border-radius: 8px;

    transition: all 0.2s ease;
}

.header-category-child-toggle:hover,
.header-category-child-toggle:focus {
    color: #fff;
    background: var(--main-color-one);
}

.header-category-child-toggle i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.header-category-child-toggle[aria-expanded="true"] i {
    transform: rotate(-90deg);
}

.header-category-children {
    margin: 3px 13px 7px 0;
    padding: 4px 10px 4px 0;

    list-style: none;

    border-right: 1px dashed var(--bs-gray-300);
}

.header-category-child-item {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 4px;

    padding: 7px 8px;

    color: #666;
    font-size: 11px;

    text-decoration: none;

    border-radius: 7px;

    transition: all 0.2s ease;
}

.header-category-child-item i {
    color: var(--main-color-one);
    font-size: 15px;
}

.header-category-child-item:hover {
    color: var(--main-color-one);
    background: var(--main-color-one-shadow);
}



/* =========================================================
   Premium Mobile Hamburger Menu
   ========================================================= */

@media (max-width: 991.98px) {

    /* خود پنل همبرگری */
    #responsiveMenu {
        width: min(88vw, 370px);
        border: 0 !important;
        background: #f7f8fb;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.14);
    }

    /* هدر منو */
    #responsiveMenu .offcanvas-header {
        min-height: 74px;
        padding: 16px 18px;

        background: var(--main-color-one);

        border-bottom: 0;
    }

    #responsiveMenu .offcanvas-title {
        margin: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 900;
    }

    /* دکمه بستن */
    #responsiveMenu .btn-close {
        width: 31px;
        height: 31px;

        margin: 0;
        padding: 6px;

        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 9px;

        filter: brightness(0) invert(1);
        opacity: 1;
    }

    #responsiveMenu .btn-close:focus {
        box-shadow: none;
    }


    /* بدنه */
    #responsiveMenu .offcanvas-body {
        padding: 14px;
    }


    /* لوگو */
    #responsiveMenu .top-header-logo {
        min-height: 76px;

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

        margin-bottom: 12px !important;
        padding: 12px;

        background: #fff;

        border: 1px solid #eceef3;
        border-radius: 14px;

        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.045);
    }

    #responsiveMenu .top-header-logo img {
        width: auto;
        max-width: 130px;
        max-height: 48px;
        object-fit: contain;
    }


    /* باکس جستجو */
    #responsiveMenu .header-bottom-form {
        margin-bottom: 14px !important;
    }

    #responsiveMenu .search-filed {
        position: relative;
    }

    #responsiveMenu .search-filed .search-input {
        min-height: 46px;

        padding-right: 15px;
        padding-left: 50px;

        background: #fff;

        border: 1px solid #e9ebf0;
        border-radius: 12px;

        font-size: 12px;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.035);
    }

    #responsiveMenu .search-filed .search-input:focus {
        border-color: var(--main-color-one);

        box-shadow:
            0 0 0 3px var(--main-color-one-shadow);
    }

    #responsiveMenu .search-btn {
        width: 34px;
        height: 34px;

        left: 6px;

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

        padding: 0;

        background: var(--main-color-one) !important;

        border-radius: 9px !important;
    }

    #responsiveMenu .search-btn i {
        color: #fff;
        font-size: 14px;
    }


    /* لیست اصلی منو */
    #responsiveMenu .rm-item-menu {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }


    /* کارت هر آیتم */
    #responsiveMenu .rm-item-menu > .nav-item {
        margin: 0 !important;

        background: #fff !important;

        border: 1px solid #eceef3;
        border-radius: 12px;

        overflow: hidden;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.035);

        transition: all 0.2s ease;
    }


    /* لینک سطح اصلی */
    #responsiveMenu .rm-item-menu > .nav-item > .nav-link,
    #responsiveMenu .mobile-category-item > .d-flex > .nav-link {
        min-height: 46px;

        display: flex;
        align-items: center;

        padding: 10px 13px;

        color: #343843;

        font-size: 12.5px;
        font-weight: 700;

        text-decoration: none;

        transition: all 0.2s ease;
    }

    #responsiveMenu .rm-item-menu > .nav-item > .nav-link:hover,
    #responsiveMenu .mobile-category-item > .d-flex > .nav-link:hover {
        color: var(--main-color-one);
    }


    /* ردیف دسته مادر */
    #responsiveMenu .mobile-category-item > .d-flex {
        min-height: 48px;

        padding-left: 7px;
    }


    /* فلش باز کردن زیرمجموعه */
    #responsiveMenu .mobile-category-toggle {
        width: 32px;
        height: 32px;
        min-width: 32px;

        margin-left: 4px;

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

        padding: 0 !important;

        color: var(--main-color-one);

        background: var(--main-color-one-shadow);

        border: 0 !important;
        border-radius: 9px;

        transition: all 0.22s ease;
    }

    #responsiveMenu .mobile-category-toggle:hover,
    #responsiveMenu .mobile-category-toggle:focus,
    #responsiveMenu .mobile-category-toggle[aria-expanded="true"] {
        color: #fff;

        background: var(--main-color-one);

        box-shadow: none;
    }

    #responsiveMenu .mobile-category-toggle i {
        font-size: 11px;

        transition: transform 0.25s ease;
    }

    #responsiveMenu
    .mobile-category-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }


    /* زیرمجموعه */
    #responsiveMenu .mobile-category-children {
        margin: 0 12px 10px 10px;
        padding: 7px 10px 7px 5px;

        background: #f8f9fb;

        border: 0;
        border-right: 2px solid var(--main-color-one);

        border-radius: 8px;
    }

    #responsiveMenu .mobile-category-children .nav-item {
        margin: 0;
        border: 0;
    }

    #responsiveMenu .mobile-category-children .nav-link {
        position: relative;

        min-height: 35px;

        display: flex;
        align-items: center;

        padding: 6px 17px 6px 8px;

        color: #656a75;

        font-size: 11.5px;
        font-weight: 500;

        border-radius: 7px;

        transition: all 0.2s ease;
    }

    /* نقطه کنار بچه */
    #responsiveMenu .mobile-category-children .nav-link::before {
        content: "";

        position: absolute;

        right: 3px;
        top: 50%;

        width: 5px;
        height: 5px;

        background: var(--main-color-one);

        border-radius: 50%;

        transform: translateY(-50%);
    }

    #responsiveMenu .mobile-category-children .nav-link:hover {
        padding-right: 21px;

        color: var(--main-color-one);

        background: #fff;
    }
}

#responsiveMenu .offcanvas-body {
    padding: 14px;

    overflow-y: auto;
    overflow-x: hidden;
}

/* اسکرول بار */
#responsiveMenu .offcanvas-body::-webkit-scrollbar {
    width: 5px;
}

#responsiveMenu .offcanvas-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#responsiveMenu .offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--main-color-one);
    border-radius: 10px;
}

#responsiveMenu .offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: var(--main-color-one-hover);
}

#responsiveMenu {
    height: 100vh;
    max-height: 100vh;
}
.support-ai-disabled {
    opacity: 0.55;
    cursor: not-allowed !important;
    pointer-events: none;
    user-select: none;
}

.support-ai-disabled .support-ai {
    filter: grayscale(1);
}

