﻿@font-face {
    font-family: 'Kalameh';
    src: url('../fonts/Kalameh/woff2/KalamehWeb(FaNum)-Thin.woff2') format('woff2'), url('../fonts/Kalameh/woff/KalamehWeb(FaNum)-Thin.woff') format('woff'), url('../fonts/Kalameh/ttf/Kalameh(FaNum)-Thin.ttf') format('truetype');
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: 'Kalameh';
    src: url('../fonts/Kalameh/woff2/KalamehWeb(FaNum)-Light.woff2') format('woff2'), url('../fonts/Kalameh/woff/KalamehWeb(FaNum)-Light.woff') format('woff'), url('../fonts/Kalameh/ttf/Kalameh(FaNum)-Light.ttf') format('truetype');
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Kalameh';
    src: url('../fonts/Kalameh/woff2/KalamehWeb(FaNum)-Regular.woff2') format('woff2'), url('../fonts/Kalameh/woff/KalamehWeb(FaNum)-Regular.woff') format('woff'), url('../fonts/Kalameh/ttf/Kalameh(FaNum)-Regular.ttf') format('truetype');
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Kalameh';
    src: url('../fonts/Kalameh/woff2/KalamehWeb(FaNum)-Medium.woff2') format('woff2'), url('../fonts/Kalameh/woff/KalamehWeb(FaNum)-Medium.woff') format('woff'), url('../fonts/Kalameh/ttf/Kalameh(FaNum)-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Kalameh';
    src: url('../fonts/Kalameh/woff2/KalamehWeb(FaNum)-Bold.woff2') format('woff2'), url('../fonts/Kalameh/woff/KalamehWeb(FaNum)-Bold.woff') format('woff'), url('../fonts/Kalameh/ttf/Kalameh(FaNum)-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Kalameh';
    src: url('../fonts/Kalameh/woff2/KalamehWeb(FaNum)-Black.woff2') format('woff2'), url('../fonts/Kalameh/woff/KalamehWeb(FaNum)-Black.woff') format('woff'), url('../fonts/Kalameh/ttf/Kalameh(FaNum)-Black.ttf') format('truetype');
    font-weight: 900;
    /* Black */
    font-style: normal;
}

* {
    font-family: 'Kalameh';
    direction: rtl;
}

:root {
    --primary-color: #EE384E;
    --green: #9D004D  ;
    --blue: #004D9D;
    --secondary-color: #ff8a00;
}

a {
    text-decoration: none;
}

/*-- Hide scrollbar -- */
html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.focus-none:focus {
    outline: 0;
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

h1, h2 {
    font-size: 1.5rem;
}

/*------------*/
.categories-menu-bg {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    z-index: 21;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);
}

.categories-menu-bg.active {
    display: block;
}

/*------------*/

.aside-bg {
    content: ' ';
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .2s;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);

}

.aside-bg.active {
    visibility: visible;
    opacity: 1;
}

.sec-aside-cart {
    position: fixed;
    visibility: hidden;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 21;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 5px #00000057;
    transition: all ease-in-out .2s;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.sec-aside-cart.active {
    right: 0;
    visibility: visible;
}

.sec-aside-cart .header {
    display: flex;
    background-color: #eee;
    padding: 15px 20px;
    align-items: center;
    border-bottom: 1px solid #e8d5d5;
}

.sec-aside-cart .header .title {
    font-size: 20px;
}

.sec-aside-cart .header .close {
    color: #888;
    cursor: pointer;
    border: 1px solid #888;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: 0.2s;
}

.sec-aside-cart .header .close:hover {
    background-color: #888;
    color: #fff;
}

.sec-aside-cart .products {
    flex-grow: 1;
}

.sec-aside-cart .products .empty-cart {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec-aside-cart .products .empty-cart img {
    margin-bottom: 10px;
}

.sec-aside-cart .products .scrollbar {
    position: absolute;
    inset: 0;
    max-height: 100%;
    overscroll-behavior: none;
    overflow: hidden;
    overflow-y: auto;
}

.sec-aside-cart .products .item {
    display: flex;
    padding: 20px;
}

.sec-aside-cart .products .item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.sec-aside-cart .products .item .image-container {
    width: 20%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 2%;
    justify-content: center;
}

.sec-aside-cart .products .item .image-container img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 5px
}

.sec-aside-cart .products .item .detail {
    width: 77%;
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sec-aside-cart .products .item .detail .title-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
    flex: 0 0 auto;
}

.sec-aside-cart .products .item .detail .title-container a {
    color: #888;
}

.sec-aside-cart .products .item .detail .title-container .title {
    font-size: 18px;
}

.sec-aside-cart .bottom-content {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #fff;
    margin-top: auto;
    flex-shrink: 0;
    flex-grow: 0;
}

.sec-aside-cart .bottom-content .totalPrice-container {
    margin-bottom: 30px;
}

.sec-aside-cart .bottom-content .totalPrice-container .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec-aside-cart .bottom-content .btns a {
    width: 100%;
    display: block;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
}

.sec-aside-cart .bottom-content .btns a.cart {
    margin-bottom: 10px;
    background-color: #e4e4e4;
    color: #666;
}

.sec-aside-cart .bottom-content .btns a.checkout {
    background-color: var(--primary-color);
    color: #fff;
}

/*------------*/
.top-alert .alert {
    border: 0;
    border-radius: 0;
    background-color: var(--green);
    margin: 0;
}

.top-alert .alert a {
    color: #fff;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.alert-dismissible .close i {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/*------------*/
header {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 5px;
    margin-top: 1rem;
}

header .header-top {
    display: flex;
    flex-wrap: wrap;
}

header .header-top .logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

header .header-top .logo-container img {
    width: 100%;
}

header .header-top .search-input-container {
    position: relative;
    flex: 0 0 auto;
    z-index: 20;
}

header .header-top .search-input-container .searchInput {
    background: #f9f9f9;
    border: none;
    border-radius: 35px;
    width: 100%;
    padding: 10px 15px;
    font-weight: 300;
    border: 1px solid #e5e7eb;

}

header .header-top .search-input-container .searchInput:focus {
    box-shadow: none !important;
}

header .header-top .search-input-container i.searchIcon {
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b2b9c9;
}

header .suggestion-box-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    z-index: 19;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);
}

header .header-top .search-input-container .suggestion-box {
    display: none;
    position: absolute;
    top: 120%;
    width: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    z-index: 20;
    overflow: hidden;
    max-height: 300px;
    overflow-y: scroll;
}

header .header-top .search-input-container .suggestion-box {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

header .header-top .search-input-container .suggestion-box::-webkit-scrollbar {
    display: none;
}

header .header-top .search-input-container .suggestion-items {
    display: none;
    border-bottom: 1px solid #eee;
}

header .header-top .search-input-container .suggestion-items .item {
    padding: 5px 10px;
    cursor: pointer;
    text-align: right;
    color: #000;
    display: flex;
    align-items: center;
}

header .header-top .search-input-container .suggestion-items .item .image-container {
    width: 15%;
    margin-left: 10px;
}

header .header-top .search-input-container .suggestion-items .item .image-container img {
    width: 100%;
    border-radius: 5px;
}

header .header-top .search-input-container .suggestion-items .item .p-tilte {
    width: 80%;
}

header .header-top .search-input-container .suggestion-items .item:hover {
    background-color: #f5f5f5;
}

header .header-top .search-input-container .suggestion-items .more-btn {
    padding: 10px 15px 20px 15px;
    text-align: left;
}

header .header-top .search-input-container .suggestion-items .more-btn a {
    color: #8c8c8c;
    font-size: 14px;
}

header .header-top .search-input-container .suggestion-items .more-btn a i {
    font-size: 10px;
    vertical-align: middle;
}

header .header-top .search-input-container .recent-search {
    padding: 10px 15px 20px 15px;
}

header .header-top .search-input-container .recent-search .title {
    color: #8c8c8c;
    margin-bottom: 20px;
}

header .header-top .search-input-container .recent-search .item {
    color: rgb(9 9 11 / 80%);
    border: 1px solid #cbcbff;
    border-radius: 10px;
    padding: 2px 12px;
    margin-left: 8px;
    transition: .2s;
}

header .header-top .search-input-container .recent-search .item:hover {
    border: 1px solid #4949d7;
}

/* -- */
header .header-top .left-btns-container .btn-shopping-cart .counter {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0 7px;
    display: flex;
    border-radius: 50%;
    background-color: var(--blue);
    color: #fff;
    width: 24px;
    height: 24px;
    font-size: 12px;
    justify-content: center;
    align-items: center;
}

header .header-top .left-btns-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .header-top .left-btns-container .btn-login {
    background-color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    height: 45px;
    padding: 0 15px;
    border: 0;
    cursor: pointer;
}

header .header-top .left-btns-container .btn-account {
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    height: 45px;
    cursor: pointer;
    border: 0;
}

header .header-top .left-btns-container .btn-account i {
    font-size: 10px;
    margin-right: 8px;
}

header .header-top .left-btns-container .btn-account::after {
    display: none;
}

header .header-top .left-btns-container .btn-account-d .dropdown-divider {
    margin: 2px 0;
    border-color: #eee;
}

header .header-top .left-btns-container .btn-account-d .dropdown-item {
    padding: 8px 15px;
}

header .header-top .left-btns-container .btn-account-d .dropdown-item:active {
    background-color: unset;
    color: #000;
}

header .header-top .left-btns-container .btn-login svg {
    width: 20px;
}

header .header-top .left-btns-container .btn-shopping-cart {
    height: 45px;
    border-radius: 10px;
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    position: relative;
    cursor: pointer;
}

header .header-top .left-btns-container .btn-shopping-cart svg {
    width: 30px;
}

/*------------*/
.sec-story {
    margin: 20px 20px 40px 20px;
}

.sec-story #story-owl {
    text-align: center;
    display: flex;
    justify-content: center;
}

.sec-story .item {
    display: flex;
    flex-direction: column;
    width: 80px;
    gap: 5px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.sec-story .item .image-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
}

.sec-story .item .image-container svg {
    fill: none;
    stroke: var(--secondary-color);
    stroke-linecap: round;
    stroke-width: 3;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

.sec-story .item .image-container svg.seen {
    stroke: #ddd;
}

.sec-story .item .image-container.animated svg {
    animation: stroke-draw 2s ease-out forwards;
}

@keyframes stroke-draw {
    0% {
        stroke: #8d35c1;
        stroke-dasharray: 1;
    }

    30% {
        stroke: #ebb512;
        transform: rotate(90deg);
        stroke-dasharray: 4;
    }

    100% {
        stroke: #c61141;
        transform: rotate(180deg);
        stroke-dasharray: 8;
    }
}

.sec-story .item .image-container img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 50%;
    object-fit: cover;
}

.sec-story .item .caption {
    color: #4e5364;
    font-size: 13px;
    font-weight: 300;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box !important;
}

.modal-zoom .modal-dialog {
    transform: scale(0);
    transition: all 0.3s ease;
}

.modal-zoom.show .modal-dialog {
    transform: scale(1);
}

#story-Modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    position: relative;
}

#story-Modal .modal-content .modal-body {
    position: relative;
}

#story-Modal .modal-content .caption {
    position: absolute;
    bottom: 10px;
    color: #000;
    z-index: 2;
    right: 10px;
    left: 10px;
    text-align: center;
    display: flex;
    background: hsl(0deg 0% 100% / 80%);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

#story-Modal .modal-content .back {
    position: absolute;
    background: hsl(0deg 0% 100% / 80%);
    top: 20px;
    right: 10px;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
}

#story-Modal .modal-content .back i {
    color: #000;
}

.timeline-container {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    padding: 0 10px;
    z-index: 2;
    gap: 4px;
}

.timeline-bar-wrapper {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

/*------------*/
.sec-slider {
    margin: 20px 0;
}

.sec-slider .owl-stage-outer {
    box-shadow: 11px 22px 34px -26px #000000;
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.sec-slider #slider-owl .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0px 3px;
    background: #ddd;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
    transition: 0.2s;
}

.sec-slider #slider-owl .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    width: 20px;
}

/*-----------*/
.sec-main-category .item {
    background: #f2f2f2;
    border-radius: 15px;
}

.sec-main-category .item a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.sec-main-category .item .image-container {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-main-category .item .image-container .bg {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50px;
    position: absolute;
}

.sec-main-category .item .image-container img {
    width: 43px;
    height: 43px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 40px;
}

.sec-main-category .item .text-container {
    width: 70%;
    margin-right: 8%;
}

.sec-main-category .item .text-container .title {
    color: #000;
    margin-bottom: 3px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.sec-main-category .item .text-container .sub {
    color: #999999;
    font-weight: 300;
    font-size: 12px;
    margin: 0;
}

/*-----------*/
.sec-product-slider {
    position: relative;
    overflow: hidden;
}

.sec-product-slider .product-slider .owl-stage-outer {
    padding: 3.5rem 0 6rem 0;
}

#product-slider-owl .owl-stage {
    display: flex;
    align-items: stretch;
}

#product-slider-owl .owl-item {
    display: flex;
    height: auto;
}

#product-slider-owl .owl-item .item {
    width: 100%;
    display: flex;
}

.sec-product-slider .product-slider .item .p-title {
    font-weight: 600;
    color: #394454;
    line-height: 1.5rem;
    height: 5rem;
    overflow: hidden;
    display: block;
}

.sec-product-slider .product-slider .item .card {
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.09);
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.sec-product-slider .product-slider .item .add-to-cart {
    color: #fff;
    padding: 5px 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    background: var(--primary-color);
    border-radius: 90px;
    text-align: center;
}

.sec-product-slider .product-slider .item .add-to-cart svg {
    z-index: 2;
    width: 80%;
    transition: 0.1s;
}

.sec-product-slider .product-slider .item:hover .add-to-cart svg {
    width: 95%;
    animation: shake 150ms 2 linear;
}

@keyframes shake {
    0% {
        transform: translate(3px, 0);
    }

    50% {
        transform: translate(-3px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

.sec-product-slider .product-slider .item .image-container {
    margin-top: -3.5rem;
}

.sec-product-slider .product-slider .item .image-container.notAvailable img {
    filter: grayscale(1);
}

.sec-product-slider .product-slider .item .price-container {
    display: flex;
    flex-direction: column;
}

.sec-product-slider .product-slider .item .price-container .discount-price {
    color: #bebebe;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 300;
}

.sec-product-slider .product-slider .item .price-container .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.sec-product-slider .product-slider .item .price-container .price svg {
    fill: var(--secondary-color);
}

.sec-product-slider .top-bar {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.sec-product-slider .top-bar .categories ul {
    list-style-type: none;
}

.sec-product-slider .top-bar .title {
    color: #fff;
}

.sec-product-slider .top-bar .title h3 {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

.sec-product-slider .top-bar .title p {
    opacity: .8;
}

.sec-product-slider .bg {
    background-color: var(--green);
    height: 100%;
    transform: skewX(-10deg);
    border-radius: 30px 0 0 30px;
    display: block;
    position: absolute;
    z-index: -1;
}

.sec-product-slider .product-slider .item .discount-percent {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-product-slider .product-slider .item .discount-percent .dp-badge {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 0px 8px;
    display: inline-block;
}

.sec-product-slider .product-slider .item .discount-percent .dp-badge .percent-icon {
    font-size: 10px;
    margin-left: 2px;
}

.sec-product-slider .product-slider .item .label {
    position: absolute;
    align-items: center;
    display: flex;
    justify-content: center;
    top: 40px;
    right: -10px;
    background-color: var(--secondary-color);
    min-width: 100px;
    height: 26px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.sec-product-slider .product-slider .item .label:before {
    content: '';
    width: 10px;
    height: 8px;
    background: var(--secondary-color);
    position: absolute;
    right: 0;
    top: 100%;
    border-radius: 0 0 6px 0;
    filter: contrast(0.4);
}

.sec-product-slider .product-slider .item .label:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 100%;
    border-right: 6px solid var(--secondary-color);
    border-bottom: 2px solid transparent;
}

.sec-product-slider .product-slider .item .bottom-timer {
    background-color: var(--secondary-color);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    border-radius: 0px 0px 1rem 1rem;
    padding: 14px 0 12px 0;
    width: 92%;
    margin: -2px auto;
    position: absolute;
    bottom: -75px;
    z-index: -1;
    color: #fff;
}

.sec-product-slider .product-slider .item .bottom-timer .timer-wrapper {
    text-align: center;
}

.sec-product-slider .product-slider .item .bottom-timer .timer-wrapper .time {
    font-weight: 600;
    font-size: 20px;
}

.sec-product-slider .product-slider .item .bottom-timer .timer-wrapper .title {
    padding: 0px 6px;
    border-radius: 90px;
    display: inline-block;
    font-size: 14px;
}

.sec-product-slider .product-slider .item .content .notAvailable {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
}

.sec-product-slider .product-slider .item .content .notAvailable:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--primary-color);
    z-index: 0;
}

.sec-product-slider .product-slider .item .content .notAvailable p {
    background: #fff;
    z-index: 1;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 0 20px;
    color: #6c757d;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 100%;
    padding: 10px 10px 10px 25px;
    font-size: 16px;
    text-align: right;
    background-color: #f2f2f2;
    border: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 5px center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 500;
    border-radius: 10px;
}

/*-----------*/

.sec-category-banners .item {
    position: relative;
}

.sec-category-banners .item .image-container {
    border-radius: 30px;
    overflow: hidden;
}

.sec-category-banners .item .image-container:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    top: 0;
    right: 0;
    border-bottom-left-radius: 30px;
    z-index: 2;
}

.sec-category-banners .item .image-container:after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    top: 20px;
    color: #fff;
    right: 20px;
    border-radius: 30px;
    z-index: 3;
    text-align: center;
    line-height: 43px;
    transform: rotate(45deg);
    transition: 0.2s
}

.sec-category-banners .item .image-container .ic-image {
    perspective: 800px;
    -webkit-perspective: 800px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .8s cubic-bezier(.19, 1, .22, 1);
}

.sec-category-banners .item .image-container .ic-image:before {
    content: '';
    inset: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%);
}

.sec-category-banners .item .image-container .ic-image img {
    width: 100%;
    height: auto;
}

.sec-category-banners .content {
    padding: 30px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sec-category-banners .content:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 100px;
    top: 70px;
    right: 0px;
    box-shadow: 20px -20px #fff;
}

.sec-category-banners .content:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 100px;
    top: 0;
    right: 70px;
    box-shadow: 20px -20px #fff;
}

.sec-category-banners .content .title {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin: 0;
}

.sec-category-banners .content .subtitle {
    color: hsl(0deg 0% 100% / 85%);
    font-size: 20px;
}

.sec-category-banners .item:hover .image-container .ic-image {
    transform: scale(1.1);
}

.sec-category-banners .item:hover .image-container:after {
    line-height: 49px;
}

/*-----------*/
.sec-banners .bx {
    perspective: 1000px;
}

.sec-banners .item {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.sec-banners .item img {
    width: 100%;
    border-radius: 20px;
    height: auto;
}

.sec-banners .item svg {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(180deg);
    text-align: left;
}

.sec-banners .item i {
    position: absolute;
    background: var(--primary-color);
    text-align: center;
    bottom: 0;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-----------*/

.sec-instagram-cta .content {
    background: linear-gradient(45deg, #f4662a, #d52a78, #8f33c4);
    border-radius: 28px;
}

.sec-instagram-cta .content .image-container {
    position: relative;
}

.sec-instagram-cta .content .image-container img {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
}

.sec-instagram-cta .content .text-container {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
}

.sec-instagram-cta .content .btn {
    border: none;
}

.sec-instagram-cta .content .btn .bg {
    display: inline-block;
    padding: 3px;
    border: 1px solid #fff;
    border-radius: 12px;
}

.sec-instagram-cta .content .btn a {
    background-color: #f8f9fb;
    color: #8f33c4;
    border-radius: 9px;
    padding: 10px 18px;
    font-weight: 500;
    display: inline-block;
}

.sec-instagram-cta .content .btn a i {
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle;
}

/*-----------*/

.sec-special-product .col1,
.sec-special-product .col1 .products,
.sec-special-product .col3,
.sec-special-product .col3 .products {
    background-color: #272C48;
}

.sec-special-product .col2,
.sec-special-product .col2 .products {
    background-color: #272C48;
}

.sec-special-product .col1,
.sec-special-product .col1 .products,
.sec-special-product .col2,
.sec-special-product .col2 .products,
.sec-special-product .col3,
.sec-special-product .col3 .products {
    border-radius: 10px;
    position: relative;
}

.sec-special-product .col-title {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.sec-special-product .col-title {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.sec-special-product .col-title span:nth-child(1) {
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.sec-special-product .col-title span:nth-child(1):after {
    position: absolute;
    width: 10px;
    height: 38px;
    background-color: var(--secondary-color);
    border-radius: 7px 0 0 7px;
    top: 0;
    right: -20px;
    content: '';
}

.sec-special-product .col-title span:nth-child(2) {
    font-weight: 300;
    font-size: 15px;
}

.sec-special-product .products {
    padding: 15px;
    position: relative;
    z-index: 3;
}

.sec-special-product .products .item {
    display: flex;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.sec-special-product .col1 .products .item,
.sec-special-product .col3 .products .item {
    border: 1px solid hsl(0deg 0% 93.33% / 6%);
}

.sec-special-product .col2 .products .item {
    border: 1px solid hsl(0deg 0% 91% / 26%);
}

.sec-special-product .products .item .image-container {
    width: 30%;
}

.sec-special-product .products .item .image-container img {
    width: 100%;
    object-fit: cover;
}

.sec-special-product .products .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 70%;
    padding: 10px;
}

.sec-special-product .products .item .content .title {
    display: block;
    color: #fff;
    font-weight: 500;
}

.sec-special-product .products .item .content .price-div .price {
    color: #fff;
    text-align: end;
}

.sec-special-product .products .item .content .price-div .discount {
    text-align: end;
}

.sec-special-product .products .item .content .price-div .discount .discount-price {
    color: hsl(0deg 0% 93.33% / 56%);
    text-align: end;
    text-decoration: line-through;
}

.sec-special-product .products .item .content .price-div .discount .percent {
    border-radius: 5px;
    padding: 0px 6px;
    display: inline-block;
    font-size: 14px;
    margin-right: 3px;
}

.sec-special-product .col1 .products .item .content .price-div .discount .percent,
.sec-special-product .col3 .products .item .content .price-div .discount .percent {
    background-color: var(--primary-color);
    color: #fff;
}

.sec-special-product .col2 .products .item .content .price-div .discount .percent {
    background-color: #e3e1e1;
    color: #443c3c;
}

.sec-special-product .link {
    background-color: var(--secondary-color);
    position: absolute;
    width: 93%;
    z-index: 1;
    right: 0;
    left: 0;
    text-align: center;
    margin: auto;
    border-radius: 0 0 10px 10px;
    transition: 0.4s ease;
}

.sec-special-product .link a {
    color: #fff;
    display: block;
    text-align: center;
}

.sec-special-product .link a i {
    margin-right: 5px;
    font-size: 12px;
}

/*-----------*/
.scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
}

.scrollbar:hover::-webkit-scrollbar,
.scrollbar:hover::-webkit-scrollbar-thumb,
.scrollbar:focus::-webkit-scrollbar,
.scrollbar:focus::-webkit-scrollbar-thumb {
    visibility: visible;
}

.scrollbar::-webkit-scrollbar {
    visibility: visible;
    -webkit-appearance: none;
    width: 4px;
    background-color: transparent;
}

.scrollbar:hover::-webkit-scrollbar,
.scrollbar:hover::-webkit-scrollbar-thumb,
.scrollbar:focus::-webkit-scrollbar,
.scrollbar:focus::-webkit-scrollbar-thumb {
    visibility: visible;
}

.scrollbar::-webkit-scrollbar-thumb {
    visibility: visible;
    border-radius: 3px;
    background-color: rgba(182, 193, 210, 0.55);
}

/*-----------*/
.sec-blog .sec-title h4 {
    font-weight: 700;
    position: relative;
    margin: 0;
}

.sec-blog .sec-title h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background-color: #F2F6FC;
    border-radius: 100%;
    z-index: -1;
    top: -8px;
}

.sec-blog .sec-title a {
    color: #394454;
}

.sec-blog .sec-title a i {
    font-size: 12px;
    vertical-align: middle;
}

.sec-blog .content .item {
    border-radius: 28px;
    height: 220px;
    position: relative;
}

.sec-blog .content .item .image-container img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.sec-blog .content .item .image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.sec-blog .content .item .image-container:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}

.sec-blog .content .item:hover .image-container:after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.9s, 0.9s, 0.15s;
    transition-timing-function: ease;
}

.sec-blog .content .item .text-container {
    position: absolute;
    background-color: rgba(0, 0, 0, .4);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    color: #fff;
    will-change: inset, height, border-radius;
    transition: .3s ease-in-out;
    transition-property: inset, height, border-radius;
    border-radius: 24px;
    justify-content: center;
    padding: 15px 16px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    text-align: center;
}

.sec-blog .content .item .text-container .title {
    font-weight: 600;
    font-size: 17px;
}

/*-----------*/
footer .footerTopSvg {
    margin-bottom: -1px;
}

footer {
    margin-top: 50px;
    position: relative;
}

footer .bg {
    background-color: #E8E8F4;
    padding: 20px 0 15px 0;
}

footer .content .col-title {
    font-weight: 600;
    font-size: 22px;
    color: #4B419E;
    position: relative;
    margin-bottom: 30px;
}

/* -- */

footer .about {
    background-color: #272C48;
    background-image: url('/images/fpt.png');
    background-repeat: no-repeat;
    background-position: right;
    border-radius: 20px;
}

footer .about .content .text {
    color: #fff;
    margin: 0;
    text-align: justify;
}

footer .about .content .title {
    color: #fff;
    font-weight: 800;
}

footer .about .image-container {
    position: relative;
    height: 100%;
}

footer .about .image-container img {
    position: absolute;
    bottom: 0;
}

/* -- */

footer .content .contact ul {
    list-style-type: none;
    padding: 0;
}

footer .contact ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

footer .contact ul li span {
    font-weight: 500;
    color: #8c9fbf;
}

footer .contact ul li a {
    color: #000000;
    display: block;
    font-weight: 500;
    font-size: 16px;
}

footer .contact ul li .iconBg {
    background-color: #4B419E0D;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-left: 15px;
}

footer .contact ul li i {
    color: #4B419E;
}

/* -- */

footer .content .links ul {
    list-style-type: none;
    padding: 0;
}

footer .content .links ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

footer .content .links ul li i {
    margin-left: 15px;
    color: #4B419E;
    font-size: 14px;
}

footer .content .links ul li a {
    color: #000;
}

/* -- */

footer .social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

footer .social .item {
    background-color: #4B419E0D;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

footer .social .item i {
    color: #4B419E;
    font-size: 19px;
}

/* -- */

footer .license {
    display: flex;
}

footer .license .item img {
    object-fit: contain;
}

/* -- */

footer .sign {
    text-align: center;
    color: #888;
    font-weight: 300;
    font-size: 15px;
}

/*-----------*/

.sec-selected-product {
    background-color: #272C48;
    padding-bottom: 30px;
    position: relative;
}

.sec-selected-product .centerIcon {
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    text-align: center;
    color: #5a6f8d;
}

.sec-selected-product:before {
    background: url(../images/mTitle.png) no-repeat;
    content: '';
    width: 225px;
    height: 60px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
    top: -1px;
}

.sec-selected-product .product-slider .owl-stage-outer {
    padding: 10px 0 1rem 0;
}

.sec-selected-product .sec-title h4 {
    font-weight: 700;
    position: relative;
    margin: 0;
    color: #fff;
}

.sec-selected-product .sec-title h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background-color: #F2F6FC;
    border-radius: 100%;
    z-index: -1;
    top: -8px;
}

.sec-selected-product .bottom-link a {
    color: #b4cbed;
}

.sec-selected-product .sec-title a i {
    font-size: 12px;
    vertical-align: middle;
}

.sec-selected-product .product-slider .item .card {
    box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 3%);
    border: 1px solid #f2f4f7;
}

.sec-selected-product .product-slider .item {
    transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sec-selected-product .product-slider .item:hover {
    transform: translateY(-10px);
}

.sec-selected-product .product-slider .item .image-container {
    margin-bottom: 20px;
}

.sec-selected-product .product-slider .item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.sec-selected-product .product-slider .item .content .p-title {
    font-weight: 500;
    color: #000;
}

.sec-selected-product .product-slider .item .content .price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sec-selected-product .product-slider .item .content .price-container .discount-price {
    font-weight: 500;
    color: #888;
    text-decoration: line-through;
}

.sec-selected-product .product-slider .item .content .price-container .price {
    font-weight: 500;
    color: #000;
}

.sec-selected-product .product-slider .item .content .add-to-cart,
.sec-selected-product .product-slider .item .content .favorite {
    border: 1px solid #eee;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    cursor: pointer;
}

.sec-selected-product .product-slider .item .content .add-to-cart:hover,
.sec-selected-product .product-slider .item .content .favorite:hover {
    border: 1px solid var(--primary-color);
}

.sec-selected-product .product-slider .item .content .add-to-cart svg {
    width: 22px;
}

.sec-selected-product .product-slider .item .content .favorite i {
    color: #808d9d;
}

.sec-selected-product .owl-stage {
    display: flex;
}

.sec-selected-product .owl-item {
    display: flex;
    height: auto;
}

.sec-selected-product .owl-item .item {
    display: flex;
}

/*-----------*/

.loginForm .footer-text {
    margin: 50px 0 0 0;
}

.loginForm .title-container {}

.loginForm .title-container h5 {
    font-weight: 600;
}

.loginForm .title-container p {
    color: #3f4064;
}

.loginForm .input-container {
    font-weight: 600;
}

.loginForm .input-container .btn-primary-site {
    background-color: var(--blue);
    color: #fff;
    width: 100%;
    margin-top: 15px;
    font-size: 500;
}

.loginForm .input-container .btn-primary-site i {
    font-size: 12px;
    vertical-align: middle;
}

.loginForm .footer-text {
    color: #888;
    text-align: center;
    font-size: 14px;
    ;
}

.ltr {
    direction: ltr !important;
}

/*-----------*/
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

/*-----------*/
.breadcrumb {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: rgb(0 0 0 / 87%);
}

.breadcrumb i {
    color: rgb(0 0 0 / 56%);
    font-size: 11px;
    padding: 0 12px;
}

.breadcrumb span {
    color: rgb(0 0 0 / 32%);
}

/*-----------*/

#product-fullScreen-Modal .modal-content {
    border: none;
    position: relative;
}

#product-fullScreen-Modal .modal-content .back {
    position: absolute;
    background: rgb(0 0 0 / 10%);
    top: 20px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
}

#product-fullScreen-Modal .modal-content .back i {
    color: #888;
}

#product-fullScreen-Modal #fullScreen-Images-carousel .owl-stage-outer {
    border-radius: 10px;
}

#fullScreen-Images-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px 0px 4px;
    background: #cccccc;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

#fullScreen-Images-carousel .owl-dots .owl-dot.active span,
#fullScreen-Images-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color)
}

#fullScreen-Images-carousel .owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 20px;
}

/*-----------*/

.product-thumbnail-images .item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.product-thumbnail-images .item:not(.active):after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: '';
    background-color: rgb(0 0 0 / 30%);
}

.product-card .product-thumbnail-images img {
    width: 100%;
    object-fit: cover;
}

/*-----------*/

.product-card .product-images {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-card #Images-carousel .owl-stage-outer {
    border-radius: 10px;
}

.product-card .product-images .item {
    cursor: pointer;
}

.product-card .product-images .item img {
    object-fit: cover;
}

.product-card .product-images .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}

.product-card .product-images .owl-nav button {
    position: absolute;
    cursor: pointer;
}

.product-card .product-images .owl-nav button i {
    vertical-align: middle;
    color: rgb(0 0 0 / 56%);
    font-size: 11px;
    padding: 0 12px;
}

.product-card .product-images .owl-nav .owl-prev {
    right: 0;
}

.product-card .product-images .owl-nav .owl-next {
    left: 0;
}

/* --- */

.product-card .product-info .top-title {
    margin-bottom: 30px;
}

.product-card .product-info .top-title h1.p-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 100%;
}

.product-card .product-info .top-title .en-title {
    color: rgb(9 9 11 / 60%);
    font-size: .85rem;
}

.product-card .product-info .labels .item {
    background: #f5f5f5;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 5px;
}

.product-card .product-info .product-Varietis {
    margin-bottom: 30px;
}

.product-card .product-info .product-Varietis .product-Variety-item {
    margin-bottom: 10px;
}

.product-card .product-info .product-Varietis .content {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.product-card .product-info .product-Varietis .item input {
    display: none;
}

.product-card .product-info .product-Varietis .item label {
    padding: 0px 10px;
    border: 2px solid #e4e4e7;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 3rem;
    min-height: 3rem;
    display: flex;
    position: relative;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, .05);
}

.product-card .product-info .product-Varietis .item label {
    color: rgb(9 9 11 / 90%);
    font-weight: 600;
}

.product-card .product-info .product-Varietis .item .color-container {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50px;
    margin-left: 5px;
}

.product-card .product-info .product-Varietis .item input[type="radio"]:checked+label {
    border: 2px solid rgb(16, 185, 129);
}

.product-card .product-info .features {
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 10px;
}

.product-card .product-info .features .item {
    margin-bottom: 4px;
    font-weight: 500;
}

.product-card .product-info .features .item .title {
    color: rgb(0 0 0 / 50%);
    font-size: 15px;
}

.product-card .product-info .features .item .value {
    font-size: 15px;
    color: rgb(0 0 0 / 87%);
}

.product-card .product-info .features .item a {
    font-size: 14px;
    color: rgba(102, 51, 206, 0.87);
    cursor: pointer;
}

.product-card .left-box {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 45px;
}

.product-card .left-box .benefits .item {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.product-card .left-box .benefits .item .icon {
    width: 40px;
    text-align: center;
}

.product-card .left-box .benefits .item .icon i {
    font-size: 16px;
    color: #9f9f9f;
}

.product-card .left-box .benefits .item .text-container {
    font-size: 0.9rem;
}

.product-card .left-box .price-container {
    text-align: end;
}

.product-card .left-box .price-container .notAvailable {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
}

.product-card .left-box .price-container .notAvailable:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: var(--primary-color);
    z-index: 0;
}

.product-card .left-box .price-container .notAvailable p {
    z-index: 1;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 0 20px;
    color: var(--primary-color);
}


.product-card .left-box .price-container .price span {
    color: #000;
    font-size: 22px;
    font-weight: 600;
}

.product-card .left-box .price-container .price small {
    color: rgb(9 9 11 / 60%);
}

.product-card .left-box .price-container .discount .discount-price {
    color: rgb(9 9 11 / 50%);
    text-decoration: line-through;
    font-size: 18px;
}

.product-card .left-box .price-container .discount .discount-percent {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    padding: 0px 8px;
    display: inline-block;
    font-size: 0.8rem;
}

.product-card .left-box .price-container .discount .discount-percent i {
    font-size: 10px;
    margin-left: 2px;
}

.product-card .left-box .btns .add-to-cart {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
}

.product-card .left-box .btns .quantity-input-container {
    background: #fff;
    border-radius: 10px;
}

.product-card .left-box .btns .quantity-input-container span {
    border: none;
}

.product-card .left-box .btns .quantity-input-container .input-group {
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 12px;
}

.product-card .left-box .btns .quantity-input-container button:hover {
    background-color: unset;
    color: #000;
}

.product-card .left-box .btns .quantity-input-container button {
    padding: 0;
    transition: 0.2s;
}

.product-card .left-box .btns .quantity-input-container button i {
    font-size: 20px;
    vertical-align: middle;
    transition: 0.2s;
}

.product-card .left-box .btns .quantity-input-container .plusBtn {
    border: 0;
}

.product-card .left-box .btns .quantity-input-container .plusBtn:hover i {
    color: green;
}

.product-card .left-box .btns .quantity-input-container input.cartItemCount {
    border: 0;
    background: none;
    font-weight: 600;
}

.product-card .left-box .btns .quantity-input-container .minusBtn {
    border: 0;
}

.product-card .left-box .btns .quantity-input-container .minusBtn:hover i {
    color: red;
}

.product-card .left-box .btns .quantity-input-container .minusBtn .remove-from-cart {
    color: var(--primary-color);
}

.product-card .left-box .btns .quantity-input-container .quantity-input-div {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .left-box .btns .quantity-input-container .quantity-input-loader span {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    animation: rotate 1s linear infinite
}

.product-card .left-box .btns .quantity-input-container .quantity-input-loader span:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

/*-----------*/

#product-page .product-tabs-card ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

#product-page .product-tabs-card ul li a {
    padding-bottom: .5rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    cursor: pointer;
    user-select: none;
}

#product-page .product-tabs-card a.active {
    color: var(--green);
    border-bottom: 1px solid var(--green);
}


#product-page .product-tabs-container {
    margin-top: 40px;
}

#product-page .product-tabs-container .tab-content-content {
    display: none;
}

#product-page .product-tabs-container .tab-content-content.active {
    display: block;
}

#product-page .product-tabs-container .tab-content-content .product-descripion {
    line-height: 30px;
    color: #474747;
    font-size: 15px;
    text-align: justify;
}

#product-page .product-tabs-container .tab-content-content .product-features .item {
    display: flex;
    align-items: stretch;
    gap: .75rem;
    margin-bottom: 10px;
}

#product-page .product-tabs-container .tab-content-content .product-features .item .title {
    background-color: rgb(248 249 251);
    padding: 1rem;
    padding: 1rem;
    color: #81858b;
    border-radius: 5px;
}

#product-page .product-tabs-container .tab-content-content .product-features .item .value {
    background-color: rgb(248 249 251);
    flex-grow: 1;
    padding: 1rem;
    color: #0c0c0c;
    border-radius: 5px;
}

/*-----------*/
#product-page .related-products .sec-title h4 {
    font-weight: 700;
    position: relative;
    margin: 0;
}

#product-page .related-products .sec-title h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background-color: #F2F6FC;
    border-radius: 100%;
    z-index: -1;
    top: -8px;
}

#product-page .related-products #related-product-slider-owl .item .card {
    box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 3%);
    border: 1px solid #f2f4f7;
}

#product-page .related-products #related-product-slider-owl .item {
    transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#product-page .related-products #related-product-slider-owl .item .image-container {
    margin-bottom: 20px;
}

#product-page .related-products #related-product-slider-owl .item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#product-page .related-products #related-product-slider-owl .item .content .p-title {
    font-weight: 500;
    color: #000;
}

#product-page .related-products #related-product-slider-owl .item .content .price-div {
    margin-top: 15px;
}

#product-page .related-products #related-product-slider-owl .item .content .price-div .price {
    color: #000;
    text-align: end;
}

#product-page .related-products #related-product-slider-owl .item .content .price-div .discount {
    text-align: end;
}

#product-page .related-products #related-product-slider-owl .item .content .price-div .discount .discount-price {
    color: hsla(0, 14%, 5%, 0.56);
    text-align: end;
    text-decoration: line-through;
}

#product-page .related-products #related-product-slider-owl .item .content .price-div .discount .percent {
    border-radius: 5px;
    padding: 0px 6px;
    display: inline-block;
    font-size: 14px;
    margin-right: 3px;
    background-color: var(--primary-color);
    color: #fff;
}

/*-----------*/
#pageAlert {
    position: fixed;
    z-index: 1000;
}

#pageAlert span {
    min-width: 300px;
    text-align: center;
    padding: 16px;
    color: #fff;
    border-radius: 10px;
    position: relative;
    display: block;
    margin-bottom: 5px;
}

#pageAlert span.danger {
    background-color: #dc3545;
}

#pageAlert span.success {
    background-color: #157347;
}

#pageAlert span.danger::after,
#pageAlert span.success::after {
    background: #fff;
    bottom: 2px;
    position: absolute;
    right: 4px;
    left: 0px;
    content: '';
    height: 2px;
    z-index: 2;
    border-radius: 5px;
    animation: runProgress 2.5s linear forwards;
}

@keyframes runProgress {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/*-----------*/

#category-page {}

#category-page .category-title-container {
    height: 50px;
    display: flex;
    align-items: center;
}

#category-page .category-title-container h1 {
    font-size: 25px;
}

#category-page .sidebar-filters-container .search-input-container {
    flex: 0 0 auto;
    position: relative;
}

#category-page .sidebar-filters-container .search-input-container .searchInput {
    background: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e5e7eb;
}

#category-page .sidebar-filters-container .search-input-container .searchInput:focus {
    box-shadow: none !important;
}

#category-page .sidebar-filters-container .search-input-container i.searchIcon {
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b2b9c9;
}

#category-page .filter-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
}

#category-page .filter-box .divider {
    border-bottom: 1px solid #e5e7eb;
}

#category-page .filter-box .filter-accordion-container .accordion-item {
    border: none;
}

#category-page .filter-box .filter-accordion-container .accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

#category-page .filter-box .filter-accordion-container .accordion-item .accordion-body {
    padding: 0 5px 0 10px;
    margin-top: 10px;
    max-height: 200px;
}

#category-page .filter-box .filter-accordion-container .accordion-item .accordion-body .form-check {
    margin-bottom: 5px;
}

#category-page .filter-box .filter-accordion-container .accordion-header button {
    font-weight: 500;
    font-size: 20px;
    padding: 0;
}

#category-page .filter-box .filter-accordion-container .accordion-button:not(.collapsed) {
    background-color: unset;
    box-shadow: none;
}

#category-page .filter-box .filter-accordion-container .accordion-button::after {
    background-size: 0.95rem;
}

#category-page .filter-box .filter-price-container {
    margin-bottom: 20px;

}

#category-page .filter-box .filter-price-container .title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}

#category-page .filter-box .filter-price-container .price-input {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#category-page .filter-box .filter-price-container .price-input .field {}

#category-page .filter-box .filter-price-container .field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}

#category-page .filter-box .filter-price-container input[type="number"]::-webkit-outer-spin-button,
#category-page .filter-box .filter-price-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#category-page .filter-box .filter-price-container .slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

#category-page .filter-box .filter-price-container .slider .progress {
    height: 100%;
    right: 0;
    left: 0;
    position: absolute;
    border-radius: 5px;
    background: var(--primary-color);
}

#category-page .filter-box .filter-price-container .range-input {
    position: relative;
    direction: ltr;
}

#category-page .filter-box .filter-price-container .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#category-page .filter-box .filter-price-container input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

#category-page .filter-box .filter-price-container input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

#category-page .filter-box .filter-checks-container {}

#category-page .filter-box .filter-checks-container .form-switch {
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#category-page .filter-box .filter-checks-container .form-switch .form-check-label {}

#category-page .filter-box .filter-checks-container .form-switch .form-check-input {
    width: 2.75rem;
    height: 1.5rem;
    cursor: pointer;
}

#category-page .filter-box .filter-checks-container .form-switch .form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
}

#category-page .filter-box .filter-checks-container .form-switch .form-check-input:focus {
    border: var(--bs-border-width) solid var(--bs-border-color);
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}


/*---*/

#category-page .sorting-container {
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

#category-page .sorting-container .content {
    display: flex;
    gap: 10px;
}

#category-page .sorting-container .content .items {
    display: flex;
    gap: 18px;
}

#category-page .sorting-container .content .items a {
    color: #81858b;
}

#category-page .sorting-container .content span i {
    font-size: 13px;
}

#category-page .products-container .filtered-products .bx {
    padding: 0 !important;
    margin: 0 !important;
}

#category-page .products-container .filtered-products .item {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    height: 100%;
    background-color: #fff;
}

#category-page .products-container .filtered-products .bx:nth-child(4n) .item,
#category-page .products-container .filtered-products .bx:last-child .item {
    border-left: none;
}

#category-page .products-container .filtered-products .item .image-container {
    margin-bottom: 20px;
}

#category-page .products-container .filtered-products .item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#category-page .products-container .filtered-products .item .content .p-title {
    font-weight: 500;
    color: #000;
}

#category-page .products-container .filtered-products .item .content .price-div {
    margin-top: 15px;
}

#category-page .products-container .filtered-products .item .content .price-div .price {
    color: #000;
    text-align: end;
    font-weight: 500;
}

#category-page .products-container .filtered-products .item .content .price-div .discount {
    text-align: end;
}

#category-page .products-container .filtered-products .item .content .price-div .discount .discount-price {
    color: hsla(0, 14%, 5%, 0.56);
    text-align: end;
    text-decoration: line-through;
}

#category-page .products-container .filtered-products .item .content .price-div .discount .percent {
    border-radius: 5px;
    padding: 0px 6px;
    display: inline-block;
    font-size: 14px;
    margin-right: 3px;
}

#category-page .products-container .filtered-products .item .content .price-div .discount .percent {
    background-color: var(--primary-color);
    color: #fff;
}

#category-page .products-container .filtered-products .item .image-container {}

#category-page .products-container .filtered-products .item .image-container img {
    width: 100%;
}

/*-----------*/
#cart-page .cart-totals,
#checkout-page .cart-totals {
    border: 1px solid #e5e7eb !important;
}

#cart-page .cart-totals .item,
#checkout-page .cart-totals .item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

#cart-page .cart-totals .item:last-child,
#checkout-page .cart-totals .item:last-child {
    border-bottom: none;
}

#cart-page .cart-totals .item span:nth-child(1),
#cart-page .cart-totals .item span:nth-child(1) {
    color: #687687;
}

#cart-page .cart-totals .item:last-child span:nth-child(2),
#checkout-page .cart-totals .item:last-child span:nth-child(2) {
    color: #00a651;
    font-weight: 600;
    font-size: 20px;
}

#cart-page .card,
#checkout-page .card {
    border: 1px solid #e5e7eb !important;
}

#cart-page .cart-items .header {
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    background: #eee;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ddd;
}

#cart-page .cart-items .item {
    padding: 20px;
    align-items: center;
    margin: 0;
}

#cart-page .cart-items .item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

#cart-page .cart-items .item .image-container img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px
}

#cart-page .cart-items .item .detail .title-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
    flex: 0 0 auto;
}

#cart-page .cart-items .item .title {
    color: #000;
    font-weight: 500;
}

#cart-page .cart-items .item .price-container {
    text-align: center;
}

#cart-page .DiscountCode-accordion-container .accordion-button,
#checkout-page .DiscountCode-accordion-container .accordion-button {
    background-color: #E8ECF3;
}

#cart-page .DiscountCode-accordion-container .accordion-button i,
#checkout-page .DiscountCode-accordion-container .accordion-button i {
    color: var(--primary-color);
}

/*-----------*/
#checkout-page .checkItems-container .item:not(:last-child) {
    margin-bottom: 20px;
}

#checkout-page .checkItems-container .item .title {
    margin-bottom: 15px;
}

#checkout-page .checkItems-container .item .title span {
    font-weight: 500;
    font-size: 20px;
}

#checkout-page .checkItems-container .item .title a {
    font-size: 15px;
}

#checkout-page .checkItems-container .item .title a i {
    font-size: 12px;
}

#checkout-page .checkItems-container .item .form-check {
    padding: 0;
}

#checkout-page .checkItems-container .item .form-check:not(:last-child) {
    margin-bottom: 8px;
}

#checkout-page .checkItems-container .item .form-check input {
    display: none;
}

#checkout-page .checkItems-container .item .form-check label {
    padding: 0px 10px;
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: 3rem;
    padding: 0.5rem 1rem;
    display: flex;
    position: relative;
    color: rgb(9 9 11 / 80%);
    user-select: none;
}

#checkout-page .checkItems-container .item .form-check input[type="radio"]:checked+label {
    border: 1px solid rgb(16, 185, 129);
    background: rgb(16 185 129 / 6%);
}

#checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:after {
    display: none;
}

#checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:active,
#checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:focus {
    border: none;
    border-color: transparent;
    color: #000;
}

#checkout-page .checkItems-container .item .form-check .dropdown.active,
#checkout-page .checkItems-container .item .form-check .dropdown-item:active {
    background-color: unset;
}


#checkout-page .checkItems-container .item .form-check label img {
    width: 25px;
    margin-left: 10px;
}

/*-----------*/

#order-received-page .top {
    background-color: #f8f9fb;
    border-radius: 15px;
}

#order-received-page .message {
    text-align: center;
}

#order-received-page .message .text h4 {
    color: #059f50;
    font-weight: 700;
    font-size: 40px;
}

#order-received-page .order-overview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

#order-received-page .order-overview .item {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}

#order-received-page .order-overview .item span {
    font-weight: 500;
}

/* -- */

#order-received-page .order-details {
    border: 2px dashed #eee;
    border-radius: 15px;
}

#order-received-page .order-details .title span {
    font-size: 20px;
    font-weight: 500;
}

#order-received-page .products {
    background-color: #f7f7f7;
    border-radius: 7px;
}

#order-received-page .products .item {
    padding: 15px 10px;
    margin: 0;
}

#order-received-page .products .item:not(:last-child) {
    border-bottom: 1px solid #f0e9e9;
}

#order-received-page .subtotal .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/*-----------*/
.loaderBg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    background-color: #272C48;
    flex-direction: column;
    gap: 30px;
    display: none;
}

.loader {
    font-size: 50px;
    font-weight: bold;
    display: inline-block;
    color: var(--secondary-color);
    position: relative;
    box-sizing: border-box;
    user-select: none;
}

/*.loader:after {*/
/*    content: 'رایشاپ';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    color: #FFF;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: hidden;*/
/*    box-sizing: border-box;*/
/*    animation: animloader 6s linear infinite;*/
/*}*/

@keyframes animloader {
    0% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

.loaderCircle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loaderCircle::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-bottom: 4px solid var(--secondary-color);
    border-left: 4px solid transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*-----------*/

@media only screen and (max-width: 768px) {

    .sec-banners,
    .sec-category-banners,
    .sec-product-slider,
    .sec-instagram-cta {
        margin: 40px 0;
    }

    .sec-slider #slider-owl .owl-dots {
        text-align: center;
    }

    .sec-main-category {
        margin: 30px 0;
    }

    .sec-slider .owl-stage-outer {
        border-radius: 10px;
    }

    #slider-owl .item img {
        object-fit: cover;
    }

    #story-Modal .modal-content .caption {
        font-size: 16px;
        min-height: 50px;
    }

    .sec-product-slider .bg {
        width: 90%;
        right: -15%;
    }

    #product-slider-owl .owl-stage,
    .sec-product-slider .top-bar {
        margin-right: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-list.open {
        display: block;
        padding: 0;
    }

    .categories {
        position: relative;
    }

    .sec-product-slider .top-bar {
        gap: 15%;
    }

    .sec-product-slider .top-bar .categories ul a {
        color: #000;
        font-weight: 500;
        padding: 8px 10px;
        display: block;
    }

    .sec-product-slider .top-bar .categories ul a.active {
        color: var(--green);
    }

    .sec-product-slider .top-bar .categories ul li {
        display: block;
    }

    .sec-instagram-cta .content .text-container,
    .sec-instagram-cta .content .image-container {
        margin-bottom: 20px;
        padding: 0 50px;
    }

    .sec-instagram-cta .content {
        padding: 10rem 0 2rem 0;
    }

    .sec-instagram-cta .content .image-container img {
        bottom: -2rem;
    }

    .sec-special-product .products {
        max-height: 500px;
    }

    .sec-special-product .col1,
    .sec-special-product .col2,
    .sec-special-product .col3 {
        margin-bottom: 60px;
    }

    .sec-special-product .link a {
        padding: 10px 2px 10px 2px;
    }

    .sec-blog .sec-title h4:before {
        right: -5px;
    }

    .sec-blog .content .item {
        margin-bottom: 20px;
    }

    footer .contact,
    footer .links {
        margin-bottom: 40px;
    }

    footer .license {
        justify-content: center;
        margin-bottom: 20px;
    }

    footer .license .item img {
        width: 80px;
        height: 80px;
    }

    footer .about .content {
        padding: 20px;
    }

    footer .about .content .text {
        line-height: 1.8;
    }

    footer .about .content .title {
        font-size: 26px;
        text-align: center;
    }

    footer .about {
        margin-bottom: 30px;
        margin-top: 140px;
    }

    footer .about .image-container {
        display: flex;
        justify-content: center;
    }

    footer .about .image-container img {
        width: 60%;
    }

    .sec-selected-product .product-slider .item .image-container,
    #product-page .related-products #related-product-slider-owl .item .image-container {
        height: 290px;
    }

    .sec-aside-cart {
        right: -90%;
        width: 90%;
    }

    .loginForm .modal-body {
        padding: 20px;
    }

    .btn-login span {
        display: none;
    }

    .loginForm .logo-container {
        margin: 10px 0 30px 0;
    }

    .sec-aside-cart .products .item .detail .price-container {
        width: 60%;
        flex: 0 0 auto;
    }

    .sec-aside-cart .products .item .detail .quantity-input-container {
        width: 40%;
        flex: 0 0 auto;
    }

    header .header-top .search-input-container {
        width: 100%;
        order: 3;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    header .header-top .logo-container {
        width: 30%;
    }

    header .header-menu {
        display: none;
    }

    header .header-top .responsive-menu-Icon {
        display: flex;
        align-items: center;
        width: 20%;
        flex: 0 0 auto;
    }

    header .header-top .responsive-menu-Icon i {
        font-size: 35px;
        color: var(--primary-color);
    }

    header .header-top {
        justify-content: space-between;
    }

    /*-----------*/

    .categories-menu-bg {
        top: 0;
    }

    .categories-menu {
        position: fixed;
        visibility: hidden;
        top: 10px;
        bottom: 0;
        background-color: #fff;
        z-index: 22;
        height: calc(100% - 20px);
        background: #fff;
        border-radius: 12px;
        transition: all ease-in-out .2s;
        display: flex;
        flex-direction: column;
        justify-content: start;
        right: -90%;
        width: 70%;
        overflow-y: auto;
    }

    .categories-menu.active {
        right: 10px;
        visibility: visible;
    }

    .parent-category {
        list-style-type: none;
        padding: 0;
    }

    .parent-category li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        font-weight: 500;
        color: #000;
    }

    .parent-category li a.parent {
        border-bottom: 1px solid #eee;
    }

    .sCat-col .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        margin: 0;
        cursor: pointer;
        color: #4c5e60;
    }

    .submenu-wrapper {
        transition: all 0.2s;
        overflow: hidden;
    }

    .sCat-col ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        transition: all 0.2s;
        overflow: hidden;
    }

    .fa-plus,
    .fa-minus {
        font-size: 12px;
        transition: transform 0.3s;
    }

    .sCat-col {
        border-bottom: 1px solid #eee;
    }

    .sCat-col ul li a {
        color: #888;
        font-weight: 400;
        padding-right: 30px;
    }

    .sCat-col ul li:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    /*-----------*/
    header .header-top .left-btns-container .text {
        display: none;
    }

    header .header-top .left-btns-container .icon svg {
        width: 20px;
    }

    header .header-top .left-btns-container .btn-account {
        padding: 0 10px;
    }

    header .header-top .left-btns-container {
        gap: 8px;
    }

    #pageAlert {
        right: 10px;
        bottom: 0;
        left: 10px;
    }

    .product-card .product-thumbnail-images img {
        height: 90px;
    }

    .product-card .product-info .features {
        margin-bottom: 30px;
    }

    #product-page .product-tabs-container .tab-content-content .product-features .item .title {
        width: 40%;
    }

    .product-card .left-box .price-container {
        position: fixed;
        background: #fff;
        box-shadow: 0 0px 50px rgba(1, 1, 2, 0.18);
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: initial;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 2;
    }

    .product-card .left-box .btns .add-to-cart {
        padding: 8px 12px;
    }

    .product-card .left-box .benefits .item:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
    }

    .product-card .left-box .price-container .btns {
        width: 50%;
    }

    .product-card .left-box .price-container .notAvailable {
        width: 100%;
    }

    .product-card .left-box .price-container .notAvailable p {
        background: #fff;
    }

    #category-page .sorting-container {
        white-space: nowrap;
        overflow: auto;
    }

    #category-page .products-container .filtered-products .item {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    #category-page .products-container .filtered-products .item .image-container {
        width: 40%;
    }

    #category-page .products-container .filtered-products .item .image-container img {
        width: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    #category-page .sidebar-filters-container {
        margin-bottom: 20px;
    }

    #category-page .sidebar-filters-container .search-input-container {
        margin-bottom: 10px;
    }

    #category-page .filter-box .divider {
        margin: 10px 0;
    }

    #category-page .filter-box {
        padding: 10px 15px;
    }

    #cart-page .cart-items .header {
        display: none;
    }

    #cart-page .cart-items .item .cn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    #cart-page .cart-items .item .header-md-h {
        font-weight: 500;
    }

    #cart-page .cart-items .item .quantity-input-container {
        width: 40%;
    }

    #checkout-page .checkItems-container .item .form-check label .dropdown {
        margin-right: 15px;
    }

    #order-received-page .message .icon img {
        width: 40%;
    }

    #order-received-page .message {
        margin-bottom: 40px;
    }

    #order-received-page .order-details,
    #order-received-page .top {
        padding: 1rem;
    }

    .sec-selected-product .sec-title {
        padding-top: 70px;
    }

    .sec-selected-product-bottom-svg svg {
        margin-top: -10px;
    }

    .sec-banners .item svg {
        height: 26px;
    }

    .sec-banners .item i {
        width: 22px;
        height: 22px;
        font-size: 10px;
        left: 105px;
    }
}

@media only screen and (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .sec-banners,
    .sec-category-banners,
    .sec-product-slider,
    .sec-instagram-cta {
        margin: 80px 0;
    }

    .sec-main-category {
        margin: 30px 0;
    }

    .sec-slider #slider-owl .owl-dots {
        position: absolute;
        top: -18px;
        left: 46px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="167" height="48" viewBox="0 0 167 48" fill="none"><path d="M9.45585 0C4.50967 0 0.5 4.00967 0.5 8.95585C0.5 13.0893 3.3288 16.6858 7.34586 17.6596L10.289 18.3731C14.4779 19.3886 17.875 22.4432 19.3282 26.5011L23.4667 38.0573C25.6024 44.0208 31.254 48 37.5885 48L132.494 48C138.942 48 144.668 43.8795 146.717 37.7659L149.9 28.268C151.236 24.2785 154.205 21.0445 158.066 19.3716L161.363 17.9425C164.785 16.4597 167 13.0864 167 9.35697C167 4.18926 162.811 0 157.643 0L9.45585 0Z" fill="white"></path></svg>') no-repeat center;
        width: 167px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #slider-owl .item img {
        height: 320px;
        object-fit: cover;
    }

    .sec-slider .owl-stage-outer {
        border-radius: 40px;
    }

    #story-Modal .modal-content .caption {
        font-size: 20px;
        min-height: 70px;
    }

    .sec-product-slider .bg {
        width: 31%;
        right: -5%;
    }

    #product-slider-owl .owl-stage,
    .sec-product-slider .top-bar {
        margin-right: 100px;
    }

    .sec-product-slider .top-bar {
        gap: 8%;
    }

    .sec-product-slider .top-bar .categories ul a {
        background-color: #f8f9fb;
        color: #969fae;
        border-radius: 12px;
        padding: 10px 18px;
        font-weight: 500;
        cursor: pointer;
    }

    .sec-product-slider .top-bar .categories ul a.active {
        background-color: var(--green);
        color: #fff;
    }

    .sec-product-slider .top-bar .categories ul li {
        display: inline-block;
        margin-left: 10px;
    }

    .sec-instagram-cta .content {
        padding: 3rem 0;
    }

    .sec-instagram-cta .content .image-container img {
        bottom: -7.5rem;
        width: 60%;
    }

    .sec-special-product .products {
        height: 500px;
    }

    .sec-special-product .link {
        bottom: -8px;
    }

    .sec-special-product .col1:hover .link,
    .sec-special-product .col2:hover .link,
    .sec-special-product .col3:hover .link {
        bottom: -50px;
    }

    .sec-special-product .col1,
    .sec-special-product .col2,
    .sec-special-product .col3 {
        margin-bottom: 20px;
    }

    .sec-special-product .link a {
        padding: 18px 2px 15px 2px;
    }

    .sec-blog .sec-title h4:before {
        right: -14px;
    }

    .sec-blog .content {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: auto;
    }


    .sec-blog .content .item:nth-child(1) {
        grid-column: 1 / 4;
        height: 100%;
        grid-row: span 2;
    }

    .sec-blog .content .item:nth-child(2) {
        grid-column: 4 / 9;
    }

    .sec-blog .content .item:nth-child(3) {
        grid-column: 9 / 13;
    }

    .sec-blog .content .item:nth-child(4) {
        grid-column: 4 / 8;
    }

    .sec-blog .content .item:nth-child(5) {
        grid-column: 8 / 13;
    }

    footer .license .item img {
        width: 120px;
        height: 120px;
    }

    footer .about .content {
        padding: 40px;
    }

    footer .about .content .text {
        line-height: 2;
    }

    footer .about .content .title {
        font-size: 36px;
    }

    footer .about {
        margin-bottom: 60px;
    }

    footer .about .image-container img {
        width: 100%;
    }

    .sec-selected-product .product-slider .item .image-container,
    #product-page .related-products #related-product-slider-owl .item .image-container {
        height: 215px;
    }

    .sec-aside-cart {
        right: -25%;
        width: 25%;
    }

    .loginForm .modal-body {
        padding: 50px;
    }

    header .header-top .left-btns-container .btn-login svg {
        margin-left: 10px;
    }

    .loginForm .logo-container {
        margin: 10px 0 50px 0;
    }

    .sec-aside-cart .products .item .detail .price-container {
        width: 70%;
        flex: 0 0 auto;
    }

    .sec-aside-cart .products .item .detail .quantity-input-container {
        width: 30%;
        flex: 0 0 auto;
    }

    header .header-top .search-input-container {
        width: 40%;
    }

    header .header-top .logo-container {
        width: 10%;
    }

    /*------------*/
    header .header-menu {
        display: flex;
        align-items: center;
        margin-top: 1.5rem;
        justify-content: space-between;
    }

    header .header-menu .right-menu ul {
        margin: 0;
        padding: 0;
        display: flex;
        gap: 20px;
    }

    header .header-menu .right-menu ul li.m-item {
        list-style: none;
        position: relative;
    }

    header .header-menu .right-menu ul li.m-item:first-child {
        font-weight: 500;
        font-size: 1.1rem;
        cursor: pointer;
    }

    header .header-menu .right-menu i.down {
        font-size: 11px;
        color: #888;
    }

    header .header-menu .right-menu ul li.m-item:first-child:after {
        content: "";
        width: 1px;
        background-color: #e0e0e2;
        height: 16px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        position: absolute;
        left: -10px;
    }

    header .header-menu .right-menu ul li.m-item a:not(header .header-menu .right-menu .has-submenu .submenu a) {
        color: #4c5e60;
        padding: 10px 0 20px 0;
        display: inline-block;
        cursor: pointer;
    }

    header .header-menu .right-menu ul li.m-item a,
    header .header-menu .right-menu ul li.m-item a:hover {
        color: #4c5e60;
    }

    /*------------*/
    header .header-menu .right-menu .has-submenu .submenu {
        position: absolute;
        width: 180px;
        background: #fff;
        border-radius: 0 0 10px 10px;
        padding: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
        z-index: 999;
        display: none;
        margin: 0;
        list-style-type: none;
        border-top: 1px solid #ebebeb;
    }

    header .header-menu .right-menu .has-submenu.active .submenu {
        display: block;
    }

    header .header-menu .right-menu .has-submenu .submenu a {
        display: block;
        padding: 8px 5px;
        transition: 0.2s;
    }

    header .header-menu .right-menu .has-submenu .submenu a:hover {
        color: #2c3536;
    }

    /*------------*/

    header .header-menu .left-menu .btn-icon {
        display: flex;
        align-items: center;
    }

    header .header-menu .left-menu .btn-icon a {
        color: #4c5e60;
        margin-left: 5px;
        font-weight: 500;
        font-size: 18px;
    }

    header .header-menu .left-menu .btn-icon .iconBg {
        width: 32px;
        height: 32px;
        background: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    header .header-menu .left-menu .btn-icon i {
        color: #fff;
    }

    /*------------*/

    .categories-menu {
        border-top: 1px solid #ebebeb;
        position: fixed;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        z-index: 22;
        justify-content: space-between;
        border-radius: 0 0 10px 10px;
        margin: auto;
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, .2);
    }

    .categories-menu.active {
        display: flex;
    }

    .categories-menu ul.parent-category {
        width: 250px;
        background: #E8E8F4;
        padding: 20px 0;
        margin: 0;
        list-style: none;
        padding-right: 20px;
        border-bottom-right-radius: 10px;
    }

    .categories-menu ul.parent-category li {
        display: block;
        width: 100%;
    }

    .categories-menu ul.parent-category li a {
        padding: 15px;
        border-radius: 0 10px 10px 0;
        margin: 5px 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 25px;
        color: #000;
    }

    .categories-menu li.active a,
    .categories-menu li:hover a {
        background: #fff;
    }

    .categories-menu .sub-category {
        width: calc(100% - 250px);
        display: none;
        padding: 25px;
    }

    .categories-menu .sub-category.active {
        display: block;
    }


    .categories-menu .sub-category .sCat-col {
        width: 20%;
    }

    .categories-menu .sub-category .sCat-col a.title {
        color: #232323;
        font-weight: 500;
    }

    .categories-menu .sub-category .sCat-col ul {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-top: 5px;
        padding-right: 5px;
    }

    .categories-menu .sub-category .sCat-col ul li {
        margin: 10px 0;
    }

    .categories-menu .sub-category .sCat-col ul li a {
        color: #4c5e60;
        font-size: 15px;
    }

    /*------------*/

    header .header-top .responsive-menu-Icon {
        display: none;
    }

    header .header-top .logo-container {
        margin-left: 1rem;
    }

    header .header-top .left-btns-container {
        width: 20%;
        margin-right: auto;
    }

    header .header-top .left-btns-container .icon {
        display: none;
    }

    header .header-top .left-btns-container .btn-account {
        padding: 0 15px;
    }

    header .header-top .left-btns-container {
        gap: 12px;
    }

    #pageAlert {
        right: 30px;
        bottom: 40px;
    }

    .product-card .product-thumbnail-images img {
        height: 80px;
    }

    #product-page .product-tabs-container .tab-content-content .product-features .item .title {
        width: 20%;
    }

    .product-card .left-box .btns .add-to-cart {
        padding: 12px;
    }

    .product-card .left-box .benefits .item {
        border-bottom: 1px solid #e4e4e4;
    }

    .product-card .left-box .price-container .notAvailable p {
        background: #f8f9fa;
    }

    #category-page .products-container .filtered-products .item {
        border-left: 1px solid #e5e7eb;
    }

    #category-page .sidebar-filters-container .search-input-container {
        margin-bottom: 20px;
    }

    #category-page .filter-box .divider {
        margin: 20px 0;
    }

    #category-page .filter-box {
        padding: 20px 15px;
    }

    #cart-page .cart-items .item .header-md-h {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check.w3 {
        width: 33%;
        display: inline-block;
    }

    #order-received-page .message .icon img {
        width: 20%;
    }

    #order-received-page .order-details,
    #order-received-page .top {
        padding: 2rem;
    }

    .sec-selected-product .sec-title {
        padding-top: 50px;
    }

    .sec-selected-product-bottom-svg svg {
        margin-top: -1px;
    }

    .sec-banners .item svg {
        height: 36px;
    }

    .sec-banners .item i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        left: 100px;
    }
}