@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary: #2b2a29;
    /* --font-inter: "Inter", sans-serif; */
    --new-design-color: #1e3a5f;
    --second: #415c7e;
    --terinary: #d3e1f4;
    --red-color: #bf0d0d;
}
body {
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    background: #fff;
    color: var(--primary);
    font-family: "Sofia Sans", sans-serif;
    font-family: "Montserrat", sans-serif;
}
a {
    text-decoration: none;
    color: var(--new-design-color);
}
a:hover {
    color: var(--primary);
}
.flex-gap-sm {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.header-sticky {
    transition: top 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for top and shadow */
    width: 100%; /* Ensure it takes the full width */
    z-index: 1000; /* Keep it on top of other content */
    position: relative; /* Start as relative */
    background-color: white;
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-between .sort-header{
    margin: 0;
}
.fixed {
    position: fixed; /* Change to fixed when sticky */
    top: 0; /* Position at the top */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
}
.header-sticky.top.fixed + .header-sticky {
    top: 82px;
}
.middlebar {
    float: left;
    width: 100%;
    background-color: #e3e3e3;
    padding: 10px 0;
}
.middlebar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.masterhead {
    background: #fff;
    border-bottom: 1px solid #ccc;
    float: left;
    width: 100%;
    box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.2);
}

.branding a {
    float: left;
    align-items: flex-end;
    display: flex;
    gap: 10px;
    width: 290px;
}
.fast-link a.active{
    background-color: var(--primary);
}
.logo-name {
    font-size: 40px;
    margin: 0;
}

.branding a img {
    /*width: 100%;*/
    max-width: 64px;
    height: auto;
}
.middle-links {
    float: right;
    width: fit-content;
    margin: 0 10px;
}

.middle-links-mobile form {
    width: 100%;
    margin: 20px 0 0 0;
    position: relative;
}

.middle-links form {
    width: 100%;
    max-width: 400px;
    min-width: 250px;
    margin: 0 auto;
    position: relative;
}
.site-search input {
    border-radius: 0.375rem;
    width: 100%;
}
.site-search button {
    position: absolute;
    right: 7px;
    top: 4px;
    line-height: 31px;
    background: none;
    border: none;
    color: var(--new-design-color);
}

.right-links {
    float: left;
    width: 400px;
}
.navbar-holder {
    float: left;
    width: 100%;
    position: relative;
    padding: 8px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.topbar {
    float: left;
    background: var(--new-design-color);
    width: 100%;
    color: #fff;
    padding: 10px 0px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}
.social-link {
    margin-right: 10px;
}
.social-link:last-child {
    margin-right: 0px;
}

.navbar {
    float: left;
    width: 100%;
}
.text-right {
    text-align: right !important;
}
.category-dropdown {
    float: left;
    width: 250px;
    position: relative;
}

.category-dropdown-list {
    width: 100%;
    min-width: 200px;
    padding: 0px;
    margin-top: 6px;
    display: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #eeeeee;
    border-top-color: rgb(238, 238, 238);
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: rgb(238, 238, 238);
    border-top-style: solid;
    border-top-width: 1px;
    border-top: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: 14;
    left: 0;
    right: auto;
    top: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
}
.category-dropdown-list.active {
    display: block;
}
.category-dropdown-anchor {
    background: var(--new-design-color);
    color: #fff;
    width: 100%;
    float: left;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 0px;
    transition: 0.3s;
}
.category-dropdown:hover .category-dropdown-anchor {
    background: var(--new-design-color);
    color: #fff;
}
.navbar-wrap {
    float: right;
    /* width: calc(100% - 270px); */
}

.navbar-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    width: 100%;
    text-align: right;
}

.navbar-menu ul li {
    display: inline;
    margin-right: 5px;
}

.navbar-menu ul li:last-child {
    margin-right: 0px;
}

.navbar-menu ul li a {
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 8px;
    transition: 0.3s;
    font-size: 17px;
    line-height: 37px;
    display: inline-block;
}
.navbar-menu ul li a.active {
    color: var(--new-design-color);
    font-weight: bold;
}
.navbar-menu ul li a:hover {
    color: var(--new-design-color);
}

footer {
    float: left;
    width: 100%;
    background: var(--second);
    color: white;
    padding: 60px 0 0 0;
}
footer a {
    color: white;
}
.category-dropdown-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    width: 100%;
}
.sub-category-navbar li,
.category-dropdown-list ul li {
    float: left;
    width: 100%;
}
.sub-category-navbar li a,
.category-dropdown-list ul a {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    text-indent: 10px;
    float: left;
    width: 100%;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 13px;
}

.category-dropdown-list ul.sub-category-navbar {
    display: none;
    position: absolute;
    width: 300px;
    right: -302px;
    background: white;
    box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    /*top: 43.4px;*/
}
.category-dropdown-list li:hover ul.sub-category-navbar {
    display: block;
}
.category-dropdown-list ul.sub-category-navbar.list-normal {
    width: 600px;
    right: -602px;
}
.category-dropdown-list ul.sub-category-navbar.list-normal li {
    width: 50%;
}

.sub-category-navbar li.sub-ul-heading {
    float: left;
    width: 100% !important;
    background: var(--new-design-color);
    color: #fff;
    line-height: 30px;
    text-indent: 20px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.ec-partner-slider .swiper-slide {
    max-width: 120px;
}
.partner-wrapper img {
    max-width: 120px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(1);
}
.nav-link-user {
    float: right;
    width: 33.33%;
    transition: 0.3s;
}
.nav-linc-icon {
    float: left;
    width: 40px;
}

.nav-link-text {
    float: left;
    width: calc(100% - 40px);
    text-align: left;
    padding-left: 10px;
}

.nav-linc-icon i {
    font-size: 28px;
}
/* .nav-linc-icon svg {
    fill: var(--new-design-color);
    width: 30px;
    height: 30px;
} */
.class_bottom_text {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary);
    font-size: 15px;
}
.class_top_text {
    color: #6c6c6b;
    font-size: 14px;
    width: 100%;
    float: left;
}
.nav-linc-icon {
    padding-top: 9px;
}
.nav-link-text {
    /*padding-left: 2px;*/
}
.nav-link-user:hover .class_top_text {
    color: var(--new-design-color);
}

.footer-copyright {
    padding: 30px 0;
    border-top: 1px solid white;
    color: white;
}

.widget-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget-list li,
.widget-list li a {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    opacity: 0.4;
}
.widget-list li,
.widget-list li a {
     font-size: 16px;
    line-height: 26px;
    color: #fff;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.widget-list li a:hover {
    opacity: 1;
}
.footer-body {
    padding-bottom: 50px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    letter-spacing: 0;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 7px;
    text-transform: uppercase;
}

.widget-title::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    height: 1px;
    border-bottom: 1px solid var(--new-design-color);
    bottom: 0;
    width: 53px;
}

.side-cart-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 16;
    display: none;
    opacity: 0.4;
}

.side-cart {
    font-size: 14px;
    font-weight: 400;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: auto;
    display: block;
    width: 350px;
    height: 100%;
    padding: 20px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
}

.side-cart.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.side-cart-inner {
}
.cart-top {
    border-bottom: 1px solid #ccc;
    position: relative;
}
.cart-top h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    text-transform: uppercase;
}
.cart-top .close-cart {
    position: absolute;
    right: 3px;
    top: -14px;
    font-size: 25px;
    cursor: pointer;
}
#cart table input[type="number"] {
    padding: 2px 4px;
    width: 70px !important;
    text-align: center;
    border: 1px solid #e6e6e6 !important;
    border-radius: 4px;
}

.cart-remove {
    color: var(--new-design-color);
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
    margin-top: -100px;
}
.cart-summary {
    float: left;
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #eee;
}
.cart-summary-list {
    float: left;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.summary-total {
    font-size: 16px;
}
.summary-value {
    font-size: 16px;
    float: right;
    font-weight: bold;
}
.place-order {
    float: left;
    width: 48%;
    margin-right: 4%;
}
.place-order {
    float: left;
    width: 100%;
    background: forestgreen;
    color: #fff;
    text-align: center;
    border-radius: 0.375rem;
    padding: 11px 0;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.place-order:hover {
    background: var(--primary);
    color: #fff;
}
.cart-clear {
    float: left;
    width: 100%;
    background: #ccc;
    color: #fff;
    text-align: center;
    border-radius: 0.375rem;
    padding: 11px 0;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.cart-buttons {
    float: left;
    width: 100%;
    margin-top: 50px;
}
.cart-table tr {
    border-bottom: 1px solid #eee;
}

#cart .spinner {
    display: none;
}
#cart.loading .spinner {
    display: block;
}
.spinner-border {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -0.125em;
    --bs-spinner-border-width: 0.25em;
    --bs-spinner-animation-speed: 0.75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: transparent;
}

.spinner-grow,
.spinner-border {
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite
        var(--bs-spinner-animation-name);
}
#cart-flash {
    position: fixed;
    bottom: -50px;
    right: 50px;
    background: forestgreen;
    color: #fff;
    border-radius: 0.375rem;
    padding: 9px 20px;
    transition: 0.3s;
    z-index: 999;
}
#cart-flash.open {
    bottom: 30px;
}
.breadcrumbs {
    background: #f0f0f0;
    float: left;
    width: 100%;
    padding: 20px 0;
}
.breadcrumbs.our-products {
    margin: 24px 0;
    background-color: #d3e1f4;
}
.breadcrumbs h1,
.breadcrumbs h2 {
    text-transform: uppercase;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-size: 21px;
}
.breadcrumbs.our-products h1 {
    font-size: 80px;
    font-weight: 400;
    font-size: 80px;
    line-height: 150%;
    letter-spacing: 0%;
}
.category-title a,
.product-title {
    font-size: 20px;
    color: var(--primary);
}
.category-title a {
    width: 100%;
    text-align: center;
}
.home-categories .category-title {
    min-height: 60px;
    font-size: 20px;
}
.home-categories .category-title a {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 18px;
    line-height: 28.8px;
    text-align: center;
}
.product-price {
    font-size: 30px;
    color: var(--primary);
}
.product-price.small{
    font-size: 20px;
}
.product-detail {
    color: #949599;
    font-size: 17px;
}

.product-data h5 {
    float: left;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #949599;
    margin: 5px 0;
}
.product-data .code {
    position: absolute;
    top: 6px;
    right: 6px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}
.single-product-box .is_new {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: 6px;
    background-color: var(--second);
    color: white;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    padding: 0 10px;
    text-transform: uppercase;
    border-radius: 99px;
}
.promo-text {
    color: var(--new-design-color);
    font-weight: 500;
    margin: 0;
    font-size: 14px;
}
.cut-text{
    color: var(--new-design-color);
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}
.single-product-box .promo-tag {
    position: absolute;
    top: 10px;
    left: -27px;
    padding: 5px 15px;
    background-color: var(--red-color);
    color: white;
    font-weight: 700;
    border-radius: 15px;
    font-size: 20px;
    line-height: 25px;
    rotate: -40deg;
}
.form-control.quantity {
    max-width: 70px;
    border-radius: 50px;
}
.apply-btn {
    background: var(--primary) !important;
    width: 100%;
    color: #fff !important;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 24px;
}
.apply-btn:hover {
    background: var(--new-design-color) !important;
    color: #fff;
}
.add-to-cart,
.add-to-cart:active {
    background: var(--new-design-color) !important;
    width: calc(100% - 70px);
    color: #fff !important;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 20px;
    padding: 1px 0;
}

.add-to-cart:hover {
    background: var(--new-design-color) !important;
    color: #fff;
}

.add-to-cart.loading {
    opacity: 0.5;
}
.page-crumbs {
    float: left;
}
.page-crumbs a {
    margin-right: 10px;
    position: relative;
}
.page-crumbs a:last-child {
    margin-right: 0px;
}
.page-crumbs a::after {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
}
.page-crumbs a:last-child:after {
    display: none;
}
.single-category-box,
.single-product-box {
    border: 1px solid #eeeded;
    padding: 20px;
    /* overflow: hidden; */
    transition: transform 0.3s;
    border-radius: 10px;
    position: relative;
}
.single-product-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 24px;
}
.single-category-box {
    padding: 12.5px;
}
.category-image-holder {
    text-align: center;
}
.product-image-holder{
    position: relative;
    height: 100%;
}
.product-container {
    position: relative;
}

.promotion-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--new-design-color);
    color: white !important;
    padding: 12px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}
.product-image-holder .promo-text{
    color: white;
}
.product-container:hover .promotion-overlay {
    opacity: 1;
}
.category-image-holder img,
.product-image-holder img {
    width: 100%;
    transition: transform 0.2s;
    object-fit: contain;
}
.category-image-holder img {
    max-width: 192px;
}
.single-category-box:hover,
.single-product-box:hover,
.product-selected .single-product-box {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.single-category-box:hover .category-image-holder img,
.single-product-box:hover
    .product-image-holder
    img
    .product-selected
    .single-product-box
    img {
    transform: scale(1.1);
}
.category-image-holder,
.product-image-holder {
    overflow: hidden;
}
.site-body {
    margin: 30px 0;
    float: left;
    width: 100%;
}
.topbar-link-icon {
    fill: white;
    width: 20px;
    height: 20px;
}

.ec-main-slider .ec-slide-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ec-slide-item {
    height: 70vh;
}
.ec-main-slider.about {
    padding: 0;
}
.ec-main-slider.about .ec-slide-item {
    max-height: 520px;
}
.ec-main-slider {
    padding: 30px 30px 0 30px;
}
.ec-slider {
    border-radius: 30px;
}

.ec-slide-content .btn {
    font-size: 15px;
    text-transform: uppercase;
    padding: 0 36px;
    letter-spacing: 0;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
    border-radius: 30px;
}

.ec-slide-item {
    position: relative;
}

.ec-main-slider .ec-slider {
    border-radius: 30px;
}

/* .ec-main-slider .container {
    position: absolute;
    left: 0;
    right: 0;
} */
.ec-main-slider * {
    direction: ltr;
}
.ec-main-slider .slider-img {
    border-radius: 48px;
    height: 550px;
}
.ec-main-slider .slider-name {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 64px;
    line-height: 96px;
    letter-spacing: 0%;
    color: #000;
}
.ec-main-slider .slider-descs {
    margin-bottom: 120px;
}
.ec-main-slider .slider-btn {
    background-color: var(--new-design-color);
    color: #fff;
    border-radius: 50px;
    padding: 15px 70px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 37.5px;
}

@media screen and (max-width: 992px) {
    .ec-main-slider .slider-name {
        font-size: 48px;
    }
    .ec-main-slider .slider-descs {
        margin-bottom: 80px;
    }

    .ec-main-slider .swiper-slide .row.mobile-reverse {
        flex-direction: column-reverse;
    }
    .ec-main-slider .slider-img {
        height: 350px;
    }
    .ec-main-slider .swiper-swide {
        height: 100%;
    }
}
@media screen and (max-width: 550px) {
    .ec-main-slider .slider-btn {
        padding: 15px 50px;
        font-size: 20px;
    }
    .single-product-box .promo-tag {
        rotate: 0deg;
        top: 0;
        left: 0;
        font-size: 24px;
        padding: 10px 30px;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}
.ec-main-slider .swiper-buttons {
    display: none;
}
.ec-main-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 25px;
}

.ec-slide-content {
    position: relative;
    z-index: 9;
    padding: 24px 0;
}
.ec-slide-content .ec-slide-title {
    font-size: 55px;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 0.05rem;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
}
.ec-slide-content .ec-slide-title span {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 50px;
}
.ec-slide-content .ec-slide-stitle {
    font-size: 30px;
    color: var(--new-design-color);
    margin-bottom: 15px;
    letter-spacing: 10px;
    position: relative;
    text-transform: capitalize;
}
.ec-slide-content .ec-slide-desc {
    display: block;
}
.ec-slide-content p {
    margin-bottom: 15px;
    margin-right: 78px;
    font-size: 20px;
    color: #777;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
}
.ec-slide-content p b {
    font-size: 30px;
    font-weight: 700;
}
.ec-slide-content .btn {
    font-size: 15px;
    text-transform: uppercase;
    padding: 0 36px;
    letter-spacing: 0;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
    border-radius: 30px;
}
.ec-slide-content .btn i {
    margin-left: 3px;
    font-size: 18px;
}
.ec-slide-content .btn:hover {
    background-color: #222;
}

footer a:hover {
    color: #dfdfdf;
}
footer .widget-title::before {
    border-color: white;
}

.index-banners {
    float: left;
    width: 100%;
    margin: 40px 0;
}
.main-slider-dot .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 10px;
    opacity: 1;
    border: none;
    margin: 0 2.5px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #202020;
}
.main-slider-dot .swiper-pagination-bullet:hover {
    background-color: var(--new-design-color);
}
.main-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--new-design-color);
    width: 30px;
}

.main-slider-dot.dot-color-white .swiper-pagination-bullet:hover {
    background-color: var(--new-design-color);
}
.main-slider-dot.dot-color-white
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--new-design-color);
    width: 30px;
}

.slider-animation > * {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
.swiper-slide {
    height: auto;
}
.swiper-slide-active .slider-animation > * {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.swiper-slide-active .slider-animation > *:nth-child(1) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.swiper-slide-active .slider-animation > *:nth-child(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.swiper-slide-active .slider-animation > *:nth-child(3) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.swiper-slide-active .slider-animation > *:nth-child(4) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.swiper-slide-active .slider-animation > *:nth-child(5) {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.swiper-slide-active .slider-animation > *:nth-child(6) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.section-title .ec-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
    letter-spacing: 0.4px;
    position: relative;
    display: inline;
    padding: 0;
    text-transform: capitalize;
    line-height: 1;
}

.text-upper {
    text-transform: uppercase;
}

.section-title-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}
.section-title-wrapper h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}
.section-title-wrapper h2::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    height: 1px;
    width: fit-content;
    border-bottom: 1px solid var(--new-design-color);
    bottom: 0;
    width: 53px;
}
.justify-start {
    justify-content: flex-start;
}
#ec-fixedbutton {
    top: 26.8%;
    right: 5px;
    position: fixed;
    z-index: 998;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
    direction: ltr;
}
#ec-fixedbutton * {
    direction: ltr;
}
#ec-fixedbutton > * {
    display: block;
    position: relative;
}
#ec-fixedbutton .ec-change-color .ec-color-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 15px 7px 12px;
    white-space: nowrap;
    background-color: #000000;
    height: 35px;
    border-radius: 5px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: translate(calc(100% + 5px), 0);
    transform: translate(calc(100% + 5px), 0);
    -webkit-transform: translate3d(calc(100% + 5px), 0, 0);
    transform: translate3d(calc(100% + 5px), 0, 0);
}
#ec-fixedbutton .ec-change-color .ec-color-desc .ec-color-title {
    font-weight: 600;
    color: #ffffff;
    padding-right: 7px;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    text-align: center;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li:hover a {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li a.colorcode1 {
    background-color: #3474d4;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li a.colorcode2 {
    background-color: #7f77fd;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li a.colorcode3 {
    background-color: #ff764b;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li.active {
    pointer-events: none;
}
#ec-fixedbutton .ec-change-color .ec-color-desc ul li.active a:before {
    content: "\f00c";
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    position: relative;
    top: 0;
    font-family: "EcIcons";
    font-style: normal;
    font-weight: 400;
}
#ec-fixedbutton .ec-change-color:hover .ec-color-desc {
    -webkit-transform: translate(0%, 0);
    transform: translate(0%, 0);
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}
#ec-fixedbutton .ec-change-rtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
    white-space: nowrap;
    height: 35px;
    border-radius: 5px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 40px;
    margin-bottom: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
#ec-fixedbutton .ec-change-rtl > * {
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    color: #ffffff;
    font-size: 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
}
#ec-fixedbutton .ec-change-rtl .ec-rtl-btn {
    pointer-events: none;
    background-color: #222;
    padding: 0 9px 0;
}
#ec-fixedbutton .ec-change-rtl .ec-rtl-switch > * {
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 7px 0;
}
#ec-fixedbutton .ec-change-rtl .ec-rtl-off {
    background-color: red;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#ec-fixedbutton .ec-change-rtl .ec-rtl-on {
    background-color: green;
    color: #ffffff;
    display: none;
}
#ec-fixedbutton .ec-change-rtl:hover {
    width: 80px;
}
#ec-fixedbutton .ec-change-rtl.active {
    width: 80px;
}
#ec-fixedbutton .ec-change-rtl.active .ec-rtl-on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#ec-fixedbutton .ec-change-rtl.active .ec-rtl-off {
    display: none;
}
#ec-fixedbutton .ec-change-mode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
    white-space: nowrap;
    height: 35px;
    border-radius: 5px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 40px;
    margin-bottom: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
#ec-fixedbutton .ec-change-mode > * {
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    color: #ffffff;
    font-size: 12px;
}
#ec-fixedbutton .ec-change-mode .ec-mode-btn {
    pointer-events: none;
    background-color: #222;
    padding: 0 7px 0;
    font-size: 10px;
}
#ec-fixedbutton .ec-change-mode .ec-mode-switch > * {
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 7px 0;
}
#ec-fixedbutton .ec-change-mode .ec-mode-off {
    background-color: red;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#ec-fixedbutton .ec-change-mode .ec-mode-on {
    background-color: green;
    color: #ffffff;
    display: none;
}
#ec-fixedbutton .ec-change-mode:hover {
    width: 80px;
}
#ec-fixedbutton .ec-change-mode.active {
    width: 80px;
}
#ec-fixedbutton .ec-change-mode.active .ec-mode-on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#ec-fixedbutton .ec-change-mode.active .ec-mode-off {
    display: none;
}

.ec-cc-style .cc-button {
    background-color: var(--new-design-color);
    border-radius: 30px;
}
.ec-cc-style .cc-panel .cc-header {
    background-color: var(--new-design-color);
}
.ec-cc-style .cc-footer .cc-call-button:before {
    background-color: var(--new-design-color);
}

/*-----  Select Style  -----*/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0 !important;
    background: transparent;
    background-image: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
    color: #777777;
    cursor: pointer;
}
select::-ms-expand {
    display: none;
}

.ec-select-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 172px;
    height: 40px;
    line-height: 2.9;
    background: #ffffff;
    overflow: hidden;
    border-radius: 0;
}
.ec-select-inner::after {
    content: "\f107";
    position: absolute;
    font-family: "EcIcons";
    top: 0;
    right: 0;
    padding: 0 10px;
    cursor: pointer;
    pointer-events: none;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    line-height: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #777777;
}

.adminbar {
    background: orange;
    float: left;
    width: 100%;
}
.adminbar-block ul {
    display: none;
}
.adminbar-block {
    width: 20%;
    float: left;
    position: relative;
}

.adminbar-block ul {
    display: none;
    position: absolute;
    background: #ffa500;
    padding: 10px 20px;
    margin: 0;
    list-style: none;
    -webkit-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
    top: 36px;
    z-index: 99;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.adminbar-block ul li a {
    color: #000;
    text-transform: uppercase;
    border-bottom: 1px solid #d08906;
    padding-bottom: 2px;
    float: left;
    width: 100%;
    margin-bottom: 2px;
    font-size: 15px;
}
.adminbar-block:hover ul {
    display: block;
    z-index: 9999;
}
.min-vh-80 {
    min-height: 80vh;
}
.flex-space-between {
    display: flex;
    justify-content: space-between;
}
.adminbar-trigger {
    color: #000;
    text-transform: uppercase;
    line-height: 36px;
}

.subscribe-row {
    background: #f7f7f7;
    float: left;
    width: calc(100% - 60px);
    margin: 30px;
    padding: 30px 0;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    cursor: pointer;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.subscribe-form button:hover {
    background: var(--new-design-color);
}
.subscribe-form {
    position: relative;
    margin-top: 22px;
}

.single-banner picture {
    max-width: 100%;
}

.btn.btn-primary {
    background: var(--new-design-color);
    border-color: var(--new-design-color);
}
.top-bar-customer {
    display: block;
    line-height: 1;
    font-size: 14px;
}

.mb-20 {
    margin-bottom: 20px;
}

.footer-icon {
    float: left;
    width: 100%;
    font-size: 18px;
}
.footer-icon-holder {
    width: 30px;
    text-align: center;
    float: left;
    margin-right: 10px;
}
.footer-icon-text {
    float: left;
    font-size: 16px;
    width: calc(100% - 40px);
}
.goggle-grame {
    max-height: 100px;
}

.search-input {
    margin: 10px 0;
    border-radius: 2px;
    padding: 20px 30px;
    background: #f0f0f0;
}
.search-keys {
    margin-top: 10px;
}
.search-keys h2 {
    color: #000;
    font-size: 16px;
    border-bottom: 1px solid #000;
}
.search-keys a {
    color: #fff;
    background: var(--new-design-color);
    padding: 0px 10px;
    font-size: 14px;
}
.product-image-holder {
    max-height: 250px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 350px;
}
.product-image {
    width: 100%;
    height: 100%;
    float: left;
}

.footer-logo img {
    max-width: 100px;
}
.middle-links-mobile {
    float: left;
    width: 100%;
    margin: 0;
    display: none;
}
.navbar-anchor {
    color: var(--primary);
    background: #fff;
    float: right;
    text-align: center;
    border-radius: 0.375rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 30px;
    transition: 0.3s;
    border: 1px solid var(--primary);
}

.category-dropdown-list ul a i {
    float: right;
    display: none;
    margin-right: 10px;
    color: var(--new-design-color);
}

.category-dropdown-mobile {
    width: 100%;
    min-width: 200px;
    padding: 0px;
    margin-top: 6px;
    display: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #eeeeee;
    border-top-color: rgb(238, 238, 238);
    border-top-style: solid;
    border-top-width: 1px;
    border-top: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: 14;
    left: 0;
    right: auto;
    top: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
}

.category-dropdown-mobile ul {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none !important;
    width: 100%;
}
.category-dropdown-mobile {
    position: absolute;
    top: 237px;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 0;
}
.category-dropdown-mobile ul {
    list-style: none;
}
.category-dropdown-mobile ul li {
    float: left;
    width: 100%;
}

.category-dropdown-mobile ul li.a {
    float: left;
    width: 100%;
}

.category-dropdown-mobile ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    width: 100%;
}
.dropdown-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    text-indent: 10px;
    float: left;
    width: 100%;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 13px;
}
.sub-category-navbar.list-normal {
    display: none;
    padding: 0 10px;
    background: #f7f7f7;
}

.drop-text {
    width: calc(100% - 40px) !important;
    float: left;
}

.idon-doprdown {
    float: left;
    width: 40px;
    border-bottom: 1px solid #eee;
    line-height: 40px;
    text-align: center;
}
.navbar-anchor {
    display: none;
}

.cart-count-mobile {
    display: none;
    background: transparent;
    color: var(--new-design-color);
    border-radius: 100%;
    padding: 0;
    margin: 0;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 13px;
    position: absolute;
    right: 10px;
    top: 1px;
    font-weight: bold;
}

.attributes-row {
    border-radius: 2px;
    padding: 20px 15px;
    background: #f0f0f0;
    height: fit-content;
    position: sticky;
    top: 130px;
    max-height: 80vh;
    overflow-y: auto;
}
.attributes-row::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}
.attributes-row .main-label {
    font-weight: bold;
    margin-bottom: 6px;
}

.attributes-row::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

.attributes-row::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color on hover */
}
.attributes-row .accordion-item .accordion-body.main {
    padding: 0 !important;
    max-height: 300px;
    overflow-y: auto;
}
/* Firefox */
.attributes-row {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f0f0f0; /* Thumb color and track color */
}
.attributes-row-heading {
    color: #000;
    font-size: 16px;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
}
.attribute_filter {
    border: 1px solid #bdbdbd !important;
    border-radius: 0.375rem;
}
.sort_order_filter {
    border: 1px solid #bdbdbd !important;
    border-radius: 0.375rem;
}

.btn-info {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}
.btn-info:hover {
    background: var(--new-design-color) !important;
    color: #fff !important;
    border-color: var(--new-design-color) !important;
}
.product-container .price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product-container .price-wrapper .input-group {
    width: 100%;
    max-width: 250px;
    margin: 0;
}
.product-container .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-container .promotion {
    margin-bottom: 1rem;
}
.product-container .show_single{
    position: relative;
}
.product-container .show_single .is_new {
    background-color: var(--second);
    color: white;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 99px;
    position: absolute;
    top: 0px;
    right: 12px;
}
.section-title h2 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 45px;
    line-height: 82.5px;
    text-align: center;
    margin-bottom: 55px;
}
.products-slider {
    padding-bottom: 48px !important;
    padding-top: 36px !important;
}
.products-slider .swiper-wrapper {
    gap: 40px;
}
.ec-main-slider .products-slider > .swiper-pagination-bullets {
    bottom: 0px !important;
}
.swiper-button-next,
.swiper-button-prev {
    bottom: 0;
    top: auto;
}
.navbar-menu ul li.mobile-navbar-link {
    display: none;
}
@media only screen and (min-width: 992px) {
    .add-to-cart {
        position: absolute !important;
        width: 100%;
        border-radius: 50px !important;
        transition: 0.3s;
        right: 0;
    }

    .product-container:hover .add-to-cart,
    .product-selected .add-to-cart {
        width: calc(100% - 66px);
        border-bottom-left-radius: 0px !important;
        border-top-left-radius: 0px !important;
    }
}
@media only screen and (max-width: 992px) {
    .attributes-row {
        position: static;
        margin: 30px 0;
        max-height: 100%;
    }
    .navbar-menu ul li.mobile-navbar-link {
        display: block;
    }
    .navbar-menu ul {
        display: block;
        position: absolute;
        left: 0;
        top: 60px !important;
        background: #fff;
        z-index: 1111;
    }
    .user-login-link {
        width: 100% !important;
    }
    .navbar-menu ul li a {
        border-bottom: 1px solid #eee;
        float: left;
        width: 100%;
    }
    .navbar-menu ul li {
        float: left;
        width: 100%;
        text-align: left;
    }
    .sub-category-navbar li.sub-ul-heading {
        display: none;
    }
    .middlebar {
        margin: 30px 0 13px 0;
    }
    .category-dropdown-list ul a i,
    .navbar-anchor,
    .middle-links-mobile {
        display: block;
    }
    .widget-container {
        margin-bottom: 40px;
        float: left;
        width: 100%;
    }
    .goggle-grame {
        height: 200px;
    }
    .navbar-menu ul,
    .middle-links {
        display: none;
    }
    .branding {
        width: 200px;
    }
    .right-links {
        float: left;
        width: calc(100% - 220px);
        margin-left: 20px;
    }
    .nav-link-user {
        width: 50%;
        max-width: 125px;
    }
    .products-slider .swiper-wrapper {
        gap: 0px;
    }
}

@media only screen and (max-width: 550px) {
    .nav-link-user.cart-trigger {
        width: 74px;
        padding-left: 36px;
    }
    .nav-link-user.cart-trigger .nav-link-text {
        display: none;
    }
    .cart-count-mobile {
        display: block;
    }
    .products-slider .swiper-wrapper {
        gap: 0px;
    }
    .navbar-holder {
        position: sticky; /* Make the navbar sticky */
        top: 0; /* Stick to the top */
        z-index: 1000; /* Ensure it appears above other content */
    }
}

@media only screen and (max-width: 420px) {
    /* .category-dropdown,
    .category-dropdown-anchor {
        max-width: 130px;
    } */
    .nav-link-user.user-order {
        width: 48px;
        padding-left: 6px;
    }
    .nav-link-user.cart-trigger .nav-link-text {
        display: none;
    }
    .nav-link-user.user-order .nav-link-text {
        display: none;
    }
}
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.admin .category-image {
    max-width: 90px;
    margin: 24px auto;
}

.product-selected .single-product-box {
    border: 1px solid red !important;
}

.price-slider .slider {
    padding: 10px;
    border-radius: 3px;
}
.price-slider .range-slider {
    display: none;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}
.price-slider .range-slider.active {
    display: block;
}
.price-slider p {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: black;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    border: 1px solid #bdbdbd !important;
    border-radius: 0.375rem;
    background-color: #f8fafc;
}
.price-slider .range-slider .rangeValues {
    display: block;
    padding: 0px;
    font-size: 14px;
    margin-bottom: 5px;
}
.price-slider input[type="range"] {
    -webkit-appearance: none;
    border: 1px solid white;
    width: 100%;
    position: absolute;
    left: 0;
}
.price-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #0273a0;
    margin-top: -6px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.price-slider input[type="range"]:focus {
    outline: none;
}
.price-slider input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

.how-to-order {
    margin: 65px auto 90px auto;
    font-family: var(--font-inter);
}
.how-to-order h3 {
    font-weight: 700;
    font-size: 50px;
    line-height: 75px;
}
.how-to-order .items-wrapper .item {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}
.how-to-order .items-wrapper .item:first-child {
    padding-left: 65px;
}
.justify-self-center {
    justify-self: center;
}
.justify-self-end {
    justify-self: end;
}
.how-to-order p {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.6px;
    margin: 0;
}

.home-how-to-order .items-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.home-how-to-order .items-wrapper .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home-how-to-order .items-wrapper .item p {
    text-align: center;
    font-size: 18px;
}

.main-btn {
    background-color: var(--new-design-color);
    color: #fff;
    padding: 10px 70px;
    font-weight: 400;
    border-radius: 50px;
    font-size: 20px;
    text-transform: uppercase;
}
.main-btn:hover {
    background-color: var(--second);
    color: #fff;
}
.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
/* Promotions  */

.promotions .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 90px;
}
.promotions .cards-wrapper .promo-card {
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 16px;
    padding: 36px 0 25px 32px;
    font-family: var(--font-inter);
    position: relative;
}
.promotions .cards-wrapper .promo-card .promo-box {
    display: flex;
    gap: 20px;
    align-items: center;
}
.promotions .cards-wrapper .promo-card .promo-box img {
    max-width: 163px;
}
.promotions .cards-wrapper .promo-card .promo-box-content {
    text-align: center;
}
.promotions .cards-wrapper .promo-card .promo-text {
    font-weight: 400;
    font-size: 25px;
    line-height: 37.5px;
    letter-spacing: 0%;
}
.promotions .cards-wrapper .promo-card .promo-text.line-through {
    text-decoration: line-through;
}
.promotions .cards-wrapper .promo-card .price {
    font-weight: 900;
    font-size: 35px;
    line-height: 52.5px;
}
.promotions .cards-wrapper .promo-card .desc {
    padding-right: 35px;
}
.promotions .cards-wrapper .promo-card .desc p {
    margin: 0;
}
.promotions .cards-wrapper .promo-card .promo-tag {
    position: absolute;
    top: -10px;
    left: -45px;
    padding: 5px 25px;
    background-color: var(--new-design-color);
    color: white;
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    rotate: -33deg;
}
.auth-card,
.auth-card p {
    width: 100%;
}
.auth-card p {
    margin: 24px 0;
}
.key-partners .col-lg-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.key-partners .col-lg-5 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
.key-partners .col-lg-7 {
    display: grid;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(134px, 1fr));
    gap: 70px;
}
.key-partners .col-lg-7 h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
.home-delivery {
    margin: 40px auto;
}
.home-delivery .row {
    justify-content: space-between;
}
.home-delivery .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.home-delivery .content .map-item {
    cursor: pointer;
    position: relative;
}
.home-delivery .content .map-item::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    height: 1px;
    border-bottom: 1px solid var(--new-design-color);
    bottom: 0;
    width: 53px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.home-delivery .content .map-item:hover::before {
    opacity: 1;
}
.home-delivery .content h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 67.5px;
    text-align: start;
    width: 100%;
}
.home-delivery .content p {
    font-size: 18px;
}
.home-delivery .content ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    padding: 0;
}
.home-delivery .content ul li {
    list-style: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 40.5px;
    margin-bottom: 19px;
}
.bg-center-cover {
    background-position: center;
    object-fit: cover;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
    margin: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-switch.green input:checked + .toggle-slider {
    background-color: #4caf50;
}
.home-categories .page-title h2 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 45px;
    line-height: 82.5px;
    text-align: center;
    margin-bottom: 24px;
}
.menu {
    float: left;
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu .navbar-link {
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 4px;
    transition: 0.3s;
    /* font-weight: bold; */
    font-size: 17px;
    line-height: 37px;
    display: inline-block;
}
.menu .navbar-link.active {
    color: var(--new-design-color);
    font-weight: bold;
}
.menu > ul {
    background-color: var(--new-design-color);
    text-align: center;
    position: relative;
    font-size: 0; /* For removing the default margin between the inline-block elements if any. */
}

.menu > ul > li {
    background-color: var(--new-design-color);
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    list-style: none;
}
.menu ul li {
    list-style: none;
}
.menu ul li a {
    color: #000000;
    font-size: 16px;
    display: block;
}
.menu .category-dropdown-anchor {
    width: 250px;
}

.menu ul li:hover a {
    color: #333;
}
.menu .category-dropdown-anchor:hover {
    color: white !important;
}
/* .has-sub-menu > a {
position: relative;
} */

.has-sub-menu > a::after {
    content: "";
    border: 5px solid transparent;
    border-top-color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.has-sub-menu:hover > a::after {
    border-top-color: #333;
}

.sub-menu-wrapper {
    position: absolute;
    top: 65px;
    left: -9999px;
    width: 98%;
    margin: 0 auto;
    background: #fff;
    display: flex;
    display: none;
    opacity: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: top 0.5s, opacity 0.5s;
    -webkit-transition: top 0.5s, opacity 0.5s;
    -moz-transition: top 0.5s, opacity 0.5s;
    -ms-transition: top 0.5s, opacity 0.5s;
    -o-transition: top 0.5s, opacity 0.5s;
}

.sub-menu {
    padding: 0px 12px;
    text-align: left;
}
.sub-menu ul {
    padding: 0;
}
.sub-menu-heading {
    border-bottom: 1px solid var(--new-design-color);
    margin-bottom: 10px;
    cursor: initial;
}
.menu ul li.sub-menu-heading a {
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    min-height: 52px;
    white-space: nowrap;
}
.sub-menu a:hover {
    color: var(--new-design-color) !important;
}

.sub-menu-heading a:hover {
    color: initial;
}

.sub-menu-wrapper a {
    color: var(--new-design-color);
}
.has-sub-menu .sub-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.has-sub-menu .sub-menu-wrapper.active {
    opacity: 1;
    left: 0;
    right: 0;
    top: 45px;
    z-index: 999;
    display: grid !important;
}

/* Hamburger Styling */
.mobile-menu {
    display: flex;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
}

.bar {
    height: 3px;
    background: var(--new-design-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.mobile-menu.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
    -webkit-transform: translateY(6px) rotate(-45deg);
    -moz-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    -o-transform: translateY(6px) rotate(-45deg);
}

.mobile-menu.active .bar:nth-child(2) {
    transform: translateY(-6px) rotate(45deg);
    -webkit-transform: translateY(-6px) rotate(45deg);
    -moz-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    -o-transform: translateY(-6px) rotate(45deg);
}

/* About  */

.about-start {
    margin-top: 74px;
    margin-bottom: 115px;
}
.about-start h1 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 50px;
    line-height: 75px;
}
.about-start p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
}
.about-start .col-lg-5.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}
.about-start .col-lg-5.img-wrapper img {
    max-width: 100%;
    width: 100%;
    border-radius: 10%;
}
.about-locations .section-title {
    margin-bottom: 60px;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 60px;
    text-align: center;
    line-height: 90px;
    border: none;
    position: relative;
}
.about-locations .col-lg-4 {
    text-align: start;
}
.about-locations .col-lg-4 h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 35px;
    line-height: 52.5px;
    margin-bottom: 15px;
    position: relative;
    width: fit-content;
}
.about-locations .col-lg-4 h3::before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    height: 1px;
    border-bottom: 1px solid var(--new-design-color);
    bottom: 0;
    width: 53px;
}
.about-locations .col-lg-4 .widget-container .footer-icon:last-of-type {
    margin-bottom: 10px;
}
.wrapper-bg {
    background-color: #f1f1f1;
    padding: 60px 0;
    margin: 60px 0;
}
.wrapper-bg-auth {
    background-color: var(--terinary);
    padding: 12px 0;
    margin: 24px 0;
}
.about-locations .col-lg-4 .frame-wrapper {
    margin-top: 10px;
}
.sort-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}
.sort-header .site-search input {
    min-width: 500px;
}
.category-search {
    position: relative;
}
.category-search button {
    position: absolute;
    right: 7px;
    top: 4px;
    line-height: 31px;
    background: none;
    border: none;
    color: var(--new-design-color);
}
.cart-preview .cart-item,
.cart-preview .cart-item .content {
    display: flex;
    width: 100%;
}
.cart-preview .cart-item {
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 0.375rem;
}
.cart-preview .product-code {
    width: 10%;
}

.cart-preview .cart-item .content {
    width: 90%;
    justify-content: space-between;
    align-items: flex-end;
}
.cart-preview .cart-item .content .wrapper {
    width: 85%;
}
.cart-preview .total-wrapper {
    text-align: right;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.cart-preview .cart-remove {
    margin-top: 0;
}
.cart-preview .cart-item .content .wrapper img {
    max-width: 80px;
    margin-right: 24px;
}
.cart-preview .action-btns {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.cart-preview .action-btns .to-order,
.cart-preview .cart-header .qty button {
    justify-self: flex-end;
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.375rem;
    padding: 6px 60px;
}
.cart-buttons .to-order {
    background: var(--primary);
    color: #fff;
}
.cart-buttons .to-order:hover {
    background: forestgreen;
}
.cart-preview .cart-header {
    margin: 12px 0 24px 0;
    position: relative;
}
.cart-preview .cart-header .qty button {
    padding: 3px 20px;
}
.cart-preview .cart-header {
    display: flex;
    gap: 24px;
}
.cart-preview .cart-header .product-input {
    min-width: 500px;
}
.cart-preview .cart-header .qty input {
    min-width: 60px;
}
.cart-preview .results-container {
    position: absolute;
    display: none;
    top: 40px;
    width: 55%;
    left: 0;
    background-color: white;
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    border: 1px solid #eee;
    padding: 12px;
}
.cart-preview .results-container .result-item {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 12px;
}
.cart-preview .results-container .result-item button {
    background-color: var(--primary);
    color: white;
    border-radius: 0.375rem;
    padding: 3px 6px;
}
.accordion-button,
.accordion-body {
    background-color: #f0f0f0 !important;
    border: none;
    color: var(--primary) !important;
    padding: 10px 0 !important;
}
.accordion-button:focus {
    background-color: #f0f0f0 !important;
    border: none;
    color: var(--primary) !important;
    box-shadow: none !important;
}
.accordion-item {
    border: none !important;
}
.accordion-button:not(.collapsed):after {
    background-image: none;
}
.accordion-button::after {
    content: "\f078"; /* Unicode for Font Awesome chevron-down */
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is used */
    font-weight: 900; /* Use the solid version */
    color: #d9242e; /* Your custom red color */
    margin-right: 10px; /* Adjust spacing */
    transition: transform 0.3s ease-in-out;
    background-image: none;
}
.pagination-wrapper .page-item.active span {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}
.pagination-wrapper .page-item a {
    color: var(--primary);
}
.pagination-wrapper .page-item a:focus {
    box-shadow: none;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: none; /* Hidden by default */
    z-index: 90; /* Ensure it covers other elements */
}

.info-page .promo-card {
    margin-bottom: 32px;
    padding: 0 24px;
}

/* Contacts page  */

.contacts ul.map-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0;
    margin: 24px 0;
}
.contacts ul li {
    list-style: none;
}
.contacts ul li .contact-card {
    padding: 12px 24px;
    border: 2px solid #eee;
    border-radius: 0.375rem;
    transition: all 0.3s;
    cursor: pointer;
}
.contacts ul li:hover .contact-card,
.contacts ul li.active .contact-card {
    border-color: var(--new-design-color);
}

.contacts ul li .contact-card h3 {
    font-weight: 700;
    font-size: 25px;
    line-height: 37.5px;
    margin-bottom: 12px;
    color: #333333;
}
.contacts ul li .contact-card p {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    color: #333333;
}

.contacts ul li .contact-card .links .link-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.contacts ul li .contact-card .links .link-wrapper a {
    color: #333333;
    font-weight: 500;
}
.contacts ul li .contact-card .links .link-wrapper a:hover {
    color: var(--new-design-color);
}
.contacts ul li .contact-card .divider {
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin: 16px 0;
}
.contacts ul li .contact-card ul.work-time {
    padding: 0;
    margin-bottom: 24px;
}
.contacts ul li .contact-card ul.work-time li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

/* Our products  */
.our-products .product-item {
    margin-top: 100px;
}
.our-products .product-item .wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.our-products .product-item:nth-child(even) .wrapper {
    flex-direction: row-reverse;
}
.our-products .product-item .content {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.our-products .product-item .content h2 {
    font-weight: 700;
    font-size: 60px;
    color: #4571ac;
}
.our-products .product-item .content p {
    font-weight: 400;
    font-size: 18px;
}
.our-products .product-item .content .specs h4,
.our-products .product-item .content .units h4 {
    font-weight: 600;
    font-size: 40px;
    color: #4571ac;
}
.our-products .product-item .content .specs ul {
    padding: 0;
}
.our-products .product-item .content .specs li {
    list-style: none;
}
.our-products .product-item .content .specs li span {
    font-size: 18px;
    font-weight: 400;
}
.our-products .product-item .content .specs li span.value {
    font-weight: 400;
    color: #4571ac;
    font-weight: 600;
}
.our-products .product-item .content .units-wrapper{
    display: flex;
    align-items: flex-end;
    gap: 27px;
}
.our-products .product-item form  .content .units-wrapper{
    flex-direction: column;
}
.our-products .product-item .content .units-wrapper img{
    width: 100%;
    height: 100%;
    max-width: 100px;
    object-fit: contain;
}
.our-products .product-item form  .content .units-wrapper img{
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}
.our-products .img-wrapper img {
    max-width: 305px;
    max-height: 650px;
}
.our-products form .wrapper div {
    width: 100%;
}
.our-products form .wrapper .img-wrapper {
    width: auto;
}
.our-products form .wrapper .content input,
.our-products form .wrapper .content textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 0.375rem;
    margin-bottom: 12px;
}
.our-products form .wrapper .content input[type="color"]{
    height: 50px;
}
.our-products form .wrapper .content .spec-group,
.our-products form .wrapper .content .cut-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.our-products form .wrapper .content .spec-group .remove-spec,
.our-products form .wrapper .content .cut-group .remove-cut {
   height: 100%;
   margin-bottom: 12px;
}
.our-products form .wrapper .img-preview-small{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.our-products form .wrapper .img-preview{
   max-height: 300px;
    object-fit: contain;
}
.our-products .btn-wrapper{
    margin-top: 36px;
}
.admin-btns-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.order-history {
    margin-top: 24px;
}
.order-history .col-md-6{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}
.order-history .col-md-6:first-of-type{
    flex-direction: column;
    align-items: flex-start;
}
.order-history .col-md-6 .datepicker{
    min-width: 250px !important;
}
@media screen and (max-width: 1200px) {
    .promotions .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-how-to-order .items-wrapper {
        flex-wrap: wrap;
    }
    .has-sub-menu .sub-menu-wrapper {
        grid-template-columns: repeat(5, 1fr);
        max-height: 500px;
        overflow-y: auto;
    }
    .cart-preview .results-container {
        width: 75%;
    }
}
@media screen and (max-width: 992px) {
    .order-history .col-md-6{
        width: 100%;
        margin-bottom: 24px;
    }
    .order-history .col-md-6 .btn-primary,
    .order-history .col-md-6 .datepicker {
        width: 100%;
        min-width: 100%;
    }
    .our-products .product-item .wrapper.product-card{
        flex-direction: column;
    }
    .breadcrumbs.our-products h1 {
        font-size: 40px;
        line-height: 60px;
    }
    .our-products .product-item .wrapper.product-card .content{
        width: 100%;
    }
    .our-products .product-item .wrapper.product-card .img-wrapper{
        order: -1;
        display: flex;
        justify-content: center;
    }
    .our-products .product-item .wrapper.product-card .img-wrapper img{
        max-height: 400px;
    }
    .contacts ul.map-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .menu .links-wrapper {
        display: none;
    }
    .about-start {
        flex-direction: column-reverse;
    }
    .about-start .col-lg-5.img-wrapper {
        padding-left: 0px;
    }
    .cart-preview .results-container {
        width: 100%;
    }
    .cart-preview .cart-header .product-input {
        min-width: 250px;
    }
    .cart-preview .cart-header {
        justify-content: space-between;
    }
    .header-sticky-mobile {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: white;
    }
    .header-sticky {
        position: static !important;
    }
    .category-search button {
        top: 14px;
    }
    .table-wrapper {
        overflow-x: auto;
    }
}
@media screen and (max-width: 900px) {
    .has-sub-menu .sub-menu-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .sort-header {
        flex-direction: column;
    }
    .category-search {
        width: 100%;
    }
    .sort-header .site-search input {
        min-width: 100%;
        width: 100%;
        margin-top: 12px;
    }
}
@media screen and (max-width: 768px) {
    .cart-preview .cart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-preview .cart-header .product-input,
    .cart-preview .cart-header .code-input,
    .cart-preview .cart-header .qty {
        width: 100%;
    }
    .cart-preview .cart-header .qty button {
        margin-top: 12px;
        width: 100%;
    }
    .how-to-order h3 {
        font-size: 40px;
        line-height: 60px;
    }
    .promotions .section-title,
    .about-locations .section-title {
        font-size: 40px;
        line-height: 60px;
    }
    .promotions .cards-wrapper .promo-card .promo-tag {
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        rotate: 0deg;
    }
    .how-to-order .items-wrapper .item {
        gap: 20px;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center !important;
    }
    .how-to-order .items-wrapper .item:nth-child(4),
    .how-to-order .items-wrapper .item:nth-child(3) {
        text-align: start !important;
        flex-direction: column-reverse;
    }
    .how-to-order .items-wrapper .item:first-child {
        padding-left: 0;
    }
    .how-to-order p {
        font-size: 25px;
        line-height: 37.5px;
    }
    .main-btn {
        padding: 15px 50px;
        font-size: 20px;
    }
    .promotions .cards-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .has-sub-menu .sub-menu-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px) {
    .has-sub-menu .sub-menu-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .cart-preview .cart-item .content {
        flex-direction: column;
    }
    .cart-preview .w-25 {
        width: 100% !important;
    }
    .cart-preview .action-btns {
        flex-direction: column;
    }
    .cart-preview .action-btns a,
    .cart-preview .action-btns span {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }
    .cart-preview .action-btns div {
        width: 100%;
    }
}
