﻿:root {
    --f7-theme-color: #e71b3f !important;
    --f7-theme-color-rgb: 0, 59, 72 !important;
    --f7-theme-color-shade: #0e4e56 !important;
    --f7-theme-color-tint: #1a8e9c !important;
    --f7-button-border-radius: 10px !important;
    --f7-button-height: 38px !important;
    /* --f7-button-bg-color: #e71b3f !important; */
}


.page-content .searchbar.search-box .searchbar-inner {
    padding-left: 30px;
    padding-right: 30px;
}

/* Framework7 searchbar backdrop tint */
.searchbar-backdrop.searchbar-backdrop-global {
    background: rgba(0, 0, 0, 0.45);
    z-index: 9000;
    pointer-events: none;
}

.searchbar-backdrop.searchbar-backdrop-global.searchbar-backdrop-in {
    pointer-events: auto;
}


body.search-overlay-disabled .search-overlay.search-overlay-global,
body.search-overlay-disabled .searchbar-backdrop.searchbar-backdrop-global,
body.search-overlay-disabled .searchbar-float-host {
    display: none !important;
}/* Search overlay (desktop + tablet) */
.search-overlay.search-overlay-global {
    position: fixed;
    top: 150px;
    left: 0;
    right: 0;
    z-index: 10000;
    display: none;
    padding: 0 20px 30px;
    pointer-events: none;
}

.search-overlay.search-overlay-global.is-open {
    display: block;
}

.search-overlay__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding: 24px;
    pointer-events: auto;
    max-height: 400px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #cfd3d8 transparent;
}

.search-overlay__inner::-webkit-scrollbar {
    width: 8px;
}

.search-overlay__inner::-webkit-scrollbar-track {
    background: transparent;
}

.search-overlay__inner::-webkit-scrollbar-thumb {
    background-color: #cfd3d8;
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.search-overlay__inner::-webkit-scrollbar-thumb:hover {
    background-color: #b5bcc4;
}

.search-overlay__left {
    border-right: 1px solid #eee;
    padding-right: 24px;
}

.search-section + .search-section {
    margin-top: 20px;
}

.search-section__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.search-section.is-empty {
    display: none;
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-chip {
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    color: #111;
}

.search-chip:hover {
    background: #f0f0f0;
}

.search-list .search-category {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 4px 0;
}

.search-brands {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.search-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 13px;
    color: #333;
    background: #fff;
}

.search-popular-products .search-product {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    align-items: center;
    color: #111;
}

.search-popular-products .search-product img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
}

.search-product__title {
    font-size: 14px;
    font-weight: 500;
}

.search-product__price {
    font-size: 13px;
    color: #555;
}

.search-overlay__results {
    display: none;
}

.search-overlay.has-query .search-overlay__results {
    display: block;
}

.search-overlay.has-query .search-popular-products {
    display: none;
}

.search-overlay.has-query .search-section--popular-products,
.search-overlay.has-query .search-section--recent-products {
    display: none;
}


.search-overlay .search-list-results {
    position: static;
    max-height: 360px;
    margin: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: block;
    overflow-y: auto;
}

.search-overlay .search-list-results .item-title {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.search-overlay .search-list-results .item-title:last-child {
    border-bottom: 0;
}

.search-results-footer {
    display: none;
    justify-content: flex-end;
    padding-top: 16px;
}

.search-view-all {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.search-view-all:hover {
    background: #000;
}

@media (max-width: 991px) {
    .search-overlay {
        top: 90px;
        padding: 0 16px 24px;
    }

    .search-overlay__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .search-overlay__left {
        border-right: 0;
        padding-right: 0;
    }

    .search-brands {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .search-overlay {
        top: 70px;
        padding: 0 12px 20px;
    }

    .search-overlay__inner {
        border-radius: 12px;
        padding: 16px;
    }
}


.panel {
    min-width: 100px;
    max-width: 100vw;
    width: 30%;
}

.info.right {
    margin-left: 20px;
}

.top-bar-box {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.item-details .fixed-content {
    padding-top: 0px;
}

.sidebar-footer .panel-close {
    display: block;
    color: #003b48;
    font-size: 14px;
    position: relative;
    top: 0;
    right: 0;
    line-height: 1;
}

.menu-main {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
    font-weight: 600;
    font-size: var(--menu-font-size);
    font-size: 16px;
    background: var(--menu-color-background);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);

    background: #fff;
}

.menu-main2 {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 16px;
    font-weight: 600;
    font-size: var(--menu-font-size);
    font-size: 20px;
    background: var(--menu-color-background);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: .2;
    background: #fff;
}

/* MEGA MENU */

/* .menu-main a{ */
/* font-size: 10px !important; */
/* } */

.sub-categories-container a,
.sub-sub-categories-container a {
    color: #333 !important;
    font-size: 12px;
}

.category-item {
    position: relative;
    /* Enables dropdown positioning */
    padding: 0;
}

.category-link {
    display: block;
    padding: 0.6rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.sub-categories-container {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    /* Align directly below parent */
    left: 0;
    background-color: #fff;
    /* border: 1px solid #ddd; */
    min-width: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sub-sub-categories-container {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    /* Align directly below parent */
    left: 0;
    background-color: #fff;
    /* border: 1px solid #ddd; */
    min-width: 200px;
    box-shadow: 6px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Show dropdown on hover */
.category-item:hover>.sub-categories-container {
    display: block;
}

.sub-sub-categories-container {
    top: 0;
    left: 100%;
    /* Align nested menu to the right of the parent */
    /* border-left: 1px solid #ddd; */
}

/* Ensure sub-sub-categories appear on hover */
.sub-categories-container .category-item:hover>.sub-sub-categories-container {
    display: block;
}

/* Styling for Nested Levels */
.sub-categories-container .category-item,
.sub-sub-categories-container .category-item {
    position: relative;
    /* Required for nested dropdowns */
}

.sub-categories-container .category-link,
.sub-sub-categories-container .category-link {
    padding: 0.75rem 1rem;
    /* Adjust padding for nested levels */
}


.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensures arrow aligns to the right */
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* .arrow-icon { */
/* font-size: 12px; /* Adjust size of the arrow */
*/
/* margin-left: 8px; /* Space between text and arrow */
*/
/* transition: transform 0.3s ease; */
/* } */

/* Rotate arrow on hover for better UX */
.menu-main .f7-icons {
    font-size: 12px !important;
    /* Adjust size of the arrow */
    margin-left: 8px;
    transform: rotate(90deg);
    /* Rotate arrow on hover */
}

.sub-categories-container .f7-icons,
.sub-sub-categories-container .f7-icons {
    font-size: 12px !important;
    /* Adjust size of the arrow */
    margin-left: 8px;
    transform: rotate(0deg)
}

.category-item:hover>.sub-categories-container,
.category-item:hover>.sub-sub-categories-container {
    display: block;
}

/* END MEGA MENU */

.navbar .menu-main,
.navbar .menu-main2 {
    margin-top: 70px;
}

.navbar a {
    color: var(--menu-color);
}

.notification-bar {
    margin-bottom: 0px;
}

.responsive-image {
    width: 100%;
    /* Set the width to 100% of the parent */
    height: auto;
    /* Ensure the image keeps its aspect ratio */
    display: block;
    /* Avoid unwanted spacing below the image */
}


.container {
    max-width: 1340px;
}

.item-bx {
    box-shadow: none;
}

.dz-meta {
    min-height: 58px;
    display: flex;
    align-items: center;
}

.dz-meta ul,
.item-bx .dz-footer {
    /* justify-content: center; */
}

.item-bx .dz-info {
    text-align: center;
}

.item-code {
    margin-top: 10px;
    margin-bottom: 10px;
}

.categories-bx {
    border-radius: 0px;
}

.grid.grid-gap {
    gap: 5px;
}

.categories-bx {
    height: 200px;
}

.full-w {
    width: 100%;
}

.full-h {
    height: 100%;
}

.pt-120 {
    padding-top: 113px;
    padding-top: 205px !important;
}

.page-home .pt-120,
.page-home2 .pt-120 {
    padding-top: 214px !important;
}

.footer-box li {
    text-align: left;
    list-style: none;
    font-size: 12px;
    text-transform: none;
    font-weight: 400;
}

.footer-box a {
    color: #fff;
}

.custom-toolbar div {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.custom-toolbar .block {
    margin: 15px 0 0 0;
}

.cat-title {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    text-transform: uppercase;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    text-shadow: -1px 0px 0 #ffffff, 0px 0px 0 #ffffff, 0px 2px 0 #33333399, 0px 2px 0 #33333399;
    margin-top: 0.7em;
    margin-bottom: 0.7em;
}

.about-all {
    background: var(--f7-theme-color);
    color: #fff;
    text-align: center;
}

.about-all h3 {
    color: #fff;

}

.page-content .searchbar.search-box .searchbar-input-wrap input {
    height: 40px;
}

/* .md .searchbar-icon { */
/* width: 30px; */
/* height: 30px; */
/* } */

.page-content .searchbar.search-box {
    height: 40px;
    margin: 0px;
}

.searchbar.mobile {
    display: none;
}

.subscribe-form {
    /* background: #f46a1f; */
    background: #213e7f;
    padding: 30px;
    text-align: center;
}

.custom-toolbar {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 10px 0;
}

.custom-toolbar .row {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.custom-toolbar .col-50 {
    text-align: center;
    padding: 10px 0;
    color: #000;
}

.custom-toolbar .col {

    padding: 10px 0;
    color: #000;
}

ul.footer-box {
    padding: 0px;
}

.badge-md {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* Active State for Selected Size */
.badge-md.active {
    background-color: #3498db;
    /* Example color for active */
    color: white;
    border-color: #3498db;
}

.badge-md.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.color-option.blue {
    background-color: blue;
}

.color-option.black {
    background-color: black;
}

.color-option.red {
    background-color: red;
}

.color-option.yellow {
    background-color: yellow;
}

.color-option.green {
    background-color: green;
}

.color-option.is-checked,
.size-option.is-checked {
    border: 2px solid #f46a1f;
}

.item-list .item-bx .dz-info {
    text-align: unset;
}

.item-list .badge-danger.dz-badge {
    display: inline;
    margin-left: 10px;
}

.item-list .dz-meta ul {
    justify-content: unset;
}

.item-list .item-bx .dz-footer {
    justify-content: space-between;
}

.main-swiper .swiper-slide {
    width: auto !important;
}

.fcol {
    display: flex;
    flex-direction: column;
}

.frow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;


}

.frow button {
    width: 20%;
}

.fcol button {
    text-align: left;
    background: transparent;
    border: none;
    font-size: 14px;
    text-transform: capitalize;
    padding: 5px 0px;
    font-family: "Poppins", sans-serif;
}

.frow button.is-checked,
.fcol button.is-checked {
    color: #f46a1f;
}

#active-filters,
#clear-filters,
#active-filters-mobile,
#clear-filters-mobile {
    display: none;
}

#active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 240px;
    padding: 0 20px 0 50px;
}

#filter-list {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.filter-button-mobile {
    position: relative;
}

.filter-button-mobile .filter-count {
    position: absolute;
    top: 16px;
    right: 7px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e11d48;
    color: #ffffff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

.filter-tag {
    display: flex;
    border: none;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: auto;
    padding: 5px;
    background: transparent;
    border: 1px solid #e2e4e9;
}

.category-box {
    display: flex;
    flex-direction: column;
}

.gap-2 {
    gap: .5rem;
}

.accordion-item:last-child {
    border-bottom: 1px solid #ececec;
}

.accordion-item-toggle {
    display: flex;
    align-items: center;
}

.accordion-item .icon {
    font-size: 25px;
    padding: 0 10px;
    color: var(--f7-theme-color);
    color: #000;
}

.accordion-item span {
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 10px;
    color: var(--f7-theme-color);
    font-weight: 500;
}

.accordion-item .icon-minus {
    display: none;
}

.accordion-item.accordion-item-opened .icon-plus {
    display: none;
}

.accordion-item.accordion-item-opened .icon-minus {
    display: inline-block;
}

.filter-search {
    padding: 6px 10px 0;
}

.filter-search input {
    width: 100%;
    height: 34px;
    border: 1px solid #e2e4e9;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 13px;
    background: #fff;
}

.button-group {
    padding: 10px;
}

.accordion-item-content ul {
    padding: 10px !important;
    background: #fff;
}

#clear-filters {
    background: var(--f7-theme-color);
    border-radius: 5px;
    border: none;
    color: #fff;
    padding: 5px;
    flex: 0 0 20%;
}

#color-filter button,
#color-filter-mobile button {
    width: auto;
    height: auto;
}

.filter-color-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
}

.filter-color-list button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px 6px 30px;
    border: 1px solid #e2e4e9;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    text-align: left;
}

.filter-color-list button::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--swatch, #000000);
    border: 1px solid #e2e4e9;
}

.filter-color-list button.is-checked {
    border-color: var(--f7-theme-color);
    box-shadow: 0 0 0 1px var(--f7-theme-color);
}

.filter-size-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
}

.filter-size-list button {
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .filter-size-list {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 767px) {
    .filter-color-list {
        grid-template-columns: 1fr;
    }
}

.navbar.navbar-style-1 {
    height: auto;
}

.navbar-items .navbar-inner {
    /* background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(125, 185, 232, 0) 100%); */
    /* background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(125, 185, 232, 0) 100%); */
    /* background: linear-gradient(to bottom, rgb(0 59 72) 0%, rgba(125, 185, 232, 0) 100%); */
    background: transparent;
}

.navbar.navbar-style-1.navbar-transparent .link.back [fill],
.navbar.navbar-style-1.navbar-transparent .link.back path {
    fill: var(--f7-theme-color);
}

.navbar.navbar-style-1.navbar-transparent a.link [fill],
.navbar.navbar-style-1.navbar-transparent a.link path {
    fill: var(--f7-theme-color);
}

.cart-popup {
    background: transparent;
    display: flex !important;
    justify-content: center;

}

.cart-popup .view {
    width: 100%;
}

.cart-item {
    display: flex;
    /* gap: 20px; */
    justify-content: flex-start;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: none;
}

.cart-product-box {
    display: flex;
    width: 55%;
}

.cart-product-box-second {
    width: 45%;
    display: flex;
    /* justify-content: space-between; */
}

.cart-item .dz-media {
    /* width: 10%; */
}

.cart-item-info {
    /* width: 40%; */
    margin-left: 10px;
}

.item-head {
    display: flex;
    /* gap: 20px; */
    /* justify-content: space-around; */
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    padding: 20px;
    font-weight: 700;
}

.item-head1 {
    width: 10%;
}

.item-head2 {
    width: 120px;
}

.item-head4 {
    width: 120px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.item-head3 {
    width: 125px;
    text-align: center;
}

.item-head6 {
    width: 45%;
}

.price-sum {
    width: 120px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.product-id,
.category-id {
    display: none;
}

.color-slider .swiper-slide,
.size-slider .swiper-slide {
    margin-right: 15px;
    width: auto;
}

.stepper-button.disabled {
    opacity: 0.5;
    pointer-events: none;
    /* Prevent click */
}

.popup-open.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.top-bar {
    width: 100%;
}


.toolbar .tab-link .badge {
    font-size: 12px;
    border: 2px solid #fff;
    position: absolute;
    left: 52%;
    top: -3px;
    border-radius: 50%;
    background-color: #e71b3f;
    color: #fff !important;
    height: 20px;
    width: 20px;
    display: block;
    box-sizing: unset;
    padding: 0;
    line-height: 20px;

}

.badge {
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* Smooth transition */
}

.badge.animate {
    transform: scale(1.5);
    /* Scale up */
    opacity: 0.8;
    /* Slightly fade out */
}

.filter-icon {
    width: 16px;
    /* Set a consistent width */
    height: 16px;
    /* Set a consistent height */
    display: inline-block;
    /* Ensure the icon behaves like an inline element */
}

.active.badge.shopping {
    position: absolute;
    right: -12px;
    bottom: 20px;
    background-color: #e71b3f;
}

.iconbar {
    position: relative;
    margin-right: 10px;
}

.form-elements ul .item-content .item-inner .item-input-wrap .form-control {
    padding: 5px 10px;
    height: 45px;

}

#cart-summary li:last-child {
    border-bottom: 0px;
    border: none;
}


.navbar .searchbar.search-box .searchbar-input-wrap .searchbar-icon {
    /* right: 13px; */
    margin: 0;
    top: 6px;
    left: 6px;
    height: 40px;
}

.navbar .searchbar.search-box .searchbar-input-wrap input {
    /* height: 60px; */
    background-color: #efefef;
    font-size: 16px;
    padding: 12px 40px 12px 40px;
    border-radius: 18px;
    font-weight: 400;
    color: #585858;
}

.search-list-results {
    position: fixed;
    overflow-y: auto;
    max-height: 400px;
    z-index: 900;
    background: #fff;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 900px;
    margin: 110px auto;
    display: none;
    border-radius: 25px;
    /* border-radius: .25rem; */
    /* --tw-bg-opacity: 1; */
    /* background-color: rgb(255 255 255 / var(--tw-bg-opacity)); */
    /* -webkit-font-smoothing: antialiased; */
    /* -moz-osx-font-smoothing: grayscale; */
    /* --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1); */
    /* --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); */
    /* box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); */
}

.search-list-results a {
    color: #333;
    display: flex;
    align-items: center;
    margin: 5px 0px;

}

.item-title {}

#product-list-row li {
    width: 100%;
}


.hidden {
    display: none !important;
}

.subcategories,
.main-categories {
    transition: transform 0.3s ease;
}

.subcategories {
    transform: translateX(100%);
}

.subcategories.show {
    transform: translateX(0);
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content button {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.sort-dropdown:hover .dropdown-content {
    display: block;
}

.title-bar .toolbar-inner {
    overflow: unset;
}

.sort-button {
    /* max-width: 48px; */
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 8px 0;
    font-size: 16px;
    font-weight: 500;
}

.subcategory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 12px 0;
}

/* #subcategory-items, */
/* #main-category-list { */
/* padding: 10px; */
/* } */

#main-category-list .f7-icons {
    font-size: 20px;
}

#subcategory-items div.panel-close {
    position: unset;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

#category-filter .accordion-body {
    padding-left: 20px;
}

.main-accordion-item {

    border-radius: 0px;
    padding: 5px 0;
}

.accordion-item {
    padding: 5px 0;
    border-radius: 0px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.plus-icon {
    font-weight: bold;
    margin-left: 10px;
}

.accordion-body.hidden {
    display: none;
}



.item-details .item-info {
    padding: 0px;
    border: 0px;
}

.item-details .item-info.color-v .container {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #ececec;

}

h5,
.h5 {
    font-size: 12px;
    line-height: 1;
}

.item-details .item-info.size-v .container {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;

}

.item-details-stepper {
    margin-top: 15px;
}

.color-options,
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.item-price del {
    margin-left: 10px;
}

#category-count {
    font-size: 14px;
}

.new-price {
    color: red;
    font-weight: 500;
}

#product-list .item-title {
    height: 40px;
}

#product-list .dz-meta,
#product-list .price {
    display: flex;
}

.dz-accordion {
    margin: 0px;
}

.main-swiper {
    margin-left: 0px;
}

.title-page {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    padding-top: 40px;
}

.color-filter-button {
    height: 24px;
    border: none;
}

.col-30 {
    width: 30%;
}

.col-40 {
    width: 40%;
}

.item-bx .price del {
    font-size: 16px;
}

.main-box-cat .dz-meta {
    position: relative;
}

.main-box-cat .badge-danger.dz-badge {
    position: absolute;
    top: 15px;
    right: 8px;
}

.product .badge-danger.dz-badge {

    position: absolute;

    top: 32px;

    right: 15px;

    font-size: 18px;

    border-radius: 25px;

    padding: 8px 20px;

}



#tab-1 .badge-danger.dz-badge {

    position: absolute;

    top: 15px;

    right: 15px;

}



swiper-slide .badge-danger.dz-badge {

    position: absolute;

    top: 15px;

    right: 8px;

}

.hero {
    display: flex;
}

/* Layout for two images */
.hero-images-two {
    display: flex;
    justify-content: space-between;
    padding: 20px;


}

.hero-images-two img {
    width: 50%;
    /* Adjust the percentage based on your needs */
}

/* Layout for three images */
.hero-images-three {
    display: flex;
    justify-content: space-between;
    padding: 20px;

}

.hero-images-three img {
    width: 32%;
    /* Adjust the width for three images */
}

/* Layout for four images */
.hero-images-four {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Three equal-width columns */
    grid-template-rows: 1fr 1fr;
    /* Two rows */
    padding: 20px;
}

.hero-images-four img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure images cover the space */
}



/* Style for the links around the images */
.image-link {
    position: relative;
    display: block;
}

/* Style for the image */
.responsive-image {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 6%;
    left: 6%;
    /* transform: translate(-50%, -50%); */
    color: white;
    font-size: 1.4rem;
    font-weight: bold;

    padding: 10px;
    border-radius: 5px;
}

.item-bx .item-title {

    font-size: 0.8rem !important;

    font-weight: 400;

    color: #333 !important;
    min-height: 36px;

}



.item-bx .price {



    color: var(--f7-theme-color);

}



.button-group button {

    border: 0px;

    padding: 4px;

}



#back-to-main {

    display: inline;

    margin-top: 10px;

    padding-right: 20px;

    text-align: end;

    color: #333;

    font-size: 16px;

}





.swiper-button-next,
.swiper-button-prev {

    position: absolute;

    width: 30px;

    height: 30px;

    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));

    z-index: 100000;

    cursor: pointer;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    color: #333;

    align-content: flex-end;

    bottom: 0px;

}



.sub-details {

    max-width: 500px;

}


.searchbar .searchbar-input-wrap {
    height: 40px;
}


.searchbar input[type=search].main-search-bar {
    background: #fff;
    border: 1px solid #e2e4e9;
    border-radius: 4px;
    height: 40px;
}


.md .searchbar-icon,
.md .searchbar .input-clear-button {
    height: 42px !important;
    width: 42px !important;
}


.md .searchbar-icon,
.md .searchbar .input-clear-button {
    height: 42px !important;
    width: 42px !important;
}


@media screen and (min-width: 768px) and (max-width: 1024px) {

    .menu-main,
    .menu-main2 {
        font-size: 15px;
    }
}


@media screen and (min-width: 768px) {

    .only-mobile-item {
        display: none;
    }

    .second-logo {
        margin-left: 10px;
    }

    .panel-open {
        display: none !important;
    }

    /* .navbar .left, .navbar .right { */
    /* align-items: flex-end; */
    /* } */

    .item-details .main-info .item-title {

        max-width: 400px;

    }

    .phone-mobile {
        display: none;
    }

    .shops {
        display: flex;
        align-items: baseline;
        margin-left: 20px;
    }

    .only-mobile {

        display: none;

    }



    #active-filters {

        margin-top: 10px;

    }

    .footer-box a {

        color: #000;

    }

    .subscribe-form .row {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .item-input-wrap {
        flex-grow: 1;
        margin-right: 10px;
    }

    .button {
        min-width: 120px;
    }

    .fixed-content {
        flex-grow: 1;
        width: 60%;

    }

    .item-detail-swiper {
        width: 420px;
        position: sticky;
    }

    .dz-banner-height {
        width: 40%;
        position: absolute;
    }

    .page-content.item-details .product {
        display: flex;
        max-width: 1340px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .item-detail-swiper {
        top: 30px;
    }

    .navbar .navbar-inner {
        max-width: 1200px;
        height: 90px;
    }

    /* .products-list .grid-cols-2 { */
    /* grid-template-columns: repeat(4, 1fr) !important; */

    /* } */

    #product-list {
        display: flex;
        flex-wrap: wrap;
    }

    #product-list li {

        flex: 1 0 calc(25% - 10px);
        /* Adjust the width and margin as needed */

        max-width: calc(25% - 10px);
        /* Limit maximum width to maintain 4 columns */

        transition: transform 0.3s ease-in-out;

        margin: 0 10px 10px 0;
        /* Adjust the margin as needed */

        border-right: none;

    }

    #search-r #product-list li {

        flex: 1 0 calc(100% - 10px);
        /* Adjust the width and margin as needed */

        max-width: calc(100% - 10px);
        /* Limit maximum width to maintain 4 columns */

        transition: transform 0.3s ease-in-out;

        margin: 0 10px 10px 0;
        /* Adjust the margin as needed */

        border-right: none;

    }



    .bordered-tr {

        margin-right: 0px !important;

    }



    .tabs .tab-active {

        margin-right: -10px;

    }

    /* #product-list li:nth-child(4n-3), */
    /* #product-list li:nth-child(4n-2), */
    /* #product-list li:nth-child(4n-1) { */
    /* border-right: 1px solid #eee; */
    /* } */
    #product-list li {
        border-bottom: 1px solid #eee;
    }

    #product-list-row li:last-child {
        border-bottom: none;
    }

    #product-list li.bordered-r {
        border-right: 1px solid #eee;
    }

    #product-list li.bordered-tr {

        border-right: 1px solid #fff;

    }

    #product-list-row li {
        border-bottom: 1px solid #eee;
    }

    #tab-1 .list li {

        border-bottom: 1px solid #eee;
    }

    #tab-1 .list li:last-child {
        border-bottom: none;
    }

    #products-list {
        display: flex;
        flex-wrap: wrap;
    }

    .main-box-cat {
        display: flex;
        max-width: 1340px;
        flex-direction: column;
    }

    .filters-box {
        width: 20%;
    }

    .products-list {
        /* width: 80%; */
        margin-left: 240px;
        /* margin-top: 30px; */
    }

    .filter-button-mobile {
        display: none;
    }

    .main-box-cat {
        max-width: 100%;
        margin: auto;
    }

    .item-bx img {

        width: 100%;
        height: auto;
        border-radius: 5px 5px 0 0;

    }

    .accordion-hidden {
        display: none;
    }

    .filters {
        position: absolute;
        width: 240px;
    }

    #category-info {
        text-align: end;
    }

    #category-info h2 {
        /* display: inline; */
        color: var(--f7-theme-color);
        margin: 0px;
        /* background: var(--f7-theme-color); */
        /* var(--f7-theme-color) */
        /* border-top-left-radius: 5px; */
        /* border-bottom-left-radius: 5px; */
        text-transform: uppercase;
        margin: 0px;
        font-size: 18px;
    }

    .cat-box {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .title-bar {
        justify-content: flex-end;
        margin-bottom: 0px;
    }

    .page-home .title-bar {

        justify-content: flex-start;



    }



    .page-home .title-bar h4 {

        color: #333;

        font-weight: 300 !important;

        font-size: 1.2rem;

    }



    .price-old,

    .difference {

        font-size: 11px !important;

    }



    .items-swiper swiper-slide {

        width: 223px;

        padding-right: 20px;

        border-right: 1px solid #ececec;

    }



    swiper-slide:last-child {

        border-right: 1px solid #fff;

    }



    .page-home .dz-meta ul,

    .product .dz-meta ul {

        flex-direction: column;

    }



    .page-home .dz-badge {

        margin-left: 10px;

    }

    .tabbar.tab-style-3 {
        width: 200px;
    }

    .login-reg {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 20px;
    }

    .checkbox-box {
        display: flex;
        gap: 50px;
    }

    .left-c {
        width: 60%;
    }

    .right-c {
        weight: 40%;
    }

    .search-mobile-icon {
        display: none !important;
    }

    .page-home .menubar-area,
    .page-home2 .menubar-area,
    .page-category .menubar-area,
    .page-subcategory .menubar-area {
        display: none;
    }



    .bottom-sp60:after {
        content: attr(data-company-name);
        /* No need for `&copy;`, the В© character can be directly used */
        display: block;
        height: 60px;
        /* This might not be necessary for text content */
        line-height: 60px;
        /* Optional, centers text vertically if needed */
        text-align: center;
        /* Center text horizontally */

    }

    /* Make the first image span 2 rows */
    .hero-images-four a:nth-child(1) {
        grid-row: span 2;
        /* Occupy two rows */
        grid-column: 1;
        /* Place in the first column */
    }

    /* Make the second image occupy the second column, first row */
    .hero-images-four a:nth-child(2) {
        grid-row: 1;
        /* Occupy the first row */
        grid-column: 2;
        /* Place in the second column */
    }

    /* Make the third image occupy the third column, first row */
    .hero-images-four a:nth-child(3) {
        grid-row: 2;
        /* Occupy the first row */
        grid-column: 2;
        /* Place in the third column */
    }

    /* Make the fourth image span 2 rows */
    .hero-images-four a:nth-child(4) {
        grid-row: span 2;
        /* Occupy two rows */
        grid-column: 3;
        /* Place in the third column */
    }

    .custom-toolbar-mobile {
        display: none;
    }

    .categorybox-main {

        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    /* .page-home .all { */
    /* display: block; */
    /* bottom: 0px; */
    /* background: transparent; */
    /* padding: 20px; */
    /* } */
    /* .menubar-area { */
    /* display: none; */
    /* } */

    /* .footer-desktop { */
    /* display: block; */
    /* } */
}

@media screen and (max-width: 767px) {

    .ios .navbar .left a+a,
    .ios .navbar .right a+a {
        margin-left: 0px;
    }

    .phone-mobile,
    .search-mobile-icon {
        margin-left: 10px !important;
    }

    .shops {
        display: none;
    }

    .item-detail-swiper swiper-slide img {
        object-fit: cover !important;
    }

    .fixed-content {
        position: static;
        padding-top: 90px;
    }

    #active-filters {
        display: none !important;
    }

    .item-details .fixed-content {
        position: static;
        padding-top: 65px;
    }

    .product .dz-meta ul {
        min-height: unset;
    }

    .product .badge-danger.dz-badge {
        top: 85px;
        right: 15px;
        z-index: 1;
    }

    .breadcrumbs {
        margin-top: 50px !important;
    }

    .item-detail-swiper {
        width: 100%;
        height: auto !important;
    }

    .item-detail-swiper swiper-slide {
        height: 420px;
    }

    .item-detail-swiper swiper-slide img {
        width: 100% !important;
        /* height: auto !important; */
    }

    .page-home .dz-meta ul,
    .product .dz-meta ul {
        flex-direction: column;
    }

    .item-description {
        display: none;
    }

    .only-mobile {
        display: list-item;
    }

    #product-list .item-title {
        min-height: 50px;
    }

    .tab .item-list {
        margin-left: 15px !important;
    }

    .categorybox-main {
        display: flex;
        flex-direction: column;
    }

    .price-old,
    .difference {
        font-size: 11px !important;
    }
    
    .items-swiper swiper-slide {

        width: 173px;

    }

    .panel {
        width: 90%;
    }

    .cat-title {
        font-size: small;
    }

    .searchbar.mobile {
        display: block;
        padding-bottom: 20px;
    }

    .searchbar.desktop {
        display: none;
    }

    .menu-main,
    .menu-main2 {
        display: none !important;
    }

    .page-content .searchbar.search-box .searchbar-inner {
        padding-left: 0px;
        padding-right: 0px;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    #product-list li {
        /* flex: 1 0 calc(50% - 10px); */
        max-width: calc(50%);
        transition: transform 0.3s ease-in-out;
        padding: 0 10px 10px 0;
        border-bottom: 1px solid #eee;
    }

    #product-list li:nth-child(odd) {
        border-right: 1px solid #eee;
    }

    #product-list li:nth-child(even) {

        border-right: 1px solid #fff;

    }

    #product-list-row li {

        border-bottom: 1px solid #eee;
    }

    #product-list-row li:last-child {
        border-bottom: none;
    }

    #product-list li.bordered-tr {
        border-right: 1px solid #fff;
    }

    #products-list {
        display: flex;
        flex-wrap: wrap;
    }

    .main-box-cat {
        display: flex;
        flex-direction: column;
    }

    .filters {
        display: none;
    }

    .products-list {
        width: 100%;
    }

    .cart-popup .view {
        width: 80%;
    }

    .cart-popup .frow {
        justify-content: center;
    }

    .item-head {
        display: none;
    }

    .cart-items-list {
        border-top: 1px solid #e9e9e9;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-product-box {
        width: 100%;
    }

    .cart-product-box-second {
        width: 100%;
    }

    .unit-price {
        display: none;
    }

    #color-filter-mobile button {
        height: 20px;
        border: none;
    }

    #filter-list {
        margin-left: unset;
        gap: 10px;
        padding: 15px 20px 0;
        flex-wrap: wrap;
    }

    .filter-tag {
        display: inline-flex;

    }

    .filter-button-mobile,
    .sort-button-mobile {
        display: inline-flex;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        height: 44px;
    }

    .tabbar.tab-style-3 .tab-link {
        height: 44px;
    }

    .pt-120 {
        padding-top: 70px !important;
    }

    .page-home .pt-120,
    .page-home2 .pt-120 {
        padding-top: 110px !important;
    }

    .tabbar.tab-style-3 {
        width: 100%;
    }

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

    #category-info h2 {
        margin: 0px;
        font-size: 1rem;
        color: #333;
        margin: 0px;
        padding: 5px 10px;
        text-transform: uppercase;
    }

    #category-count,
    #category-count-base {
        font-size: 18px;
    }

    .filter-button-mobile {
        background: #003b48;
        color: #fff !important;
        width: 50%;
        border-radius: 0px;
        border: 0px;
        height: 48px;
    }

    .sort-dropdown {
        width: 50%;
    }

    .sort-button {
        background: #5dcbcc;
        color: #fff !important;
        border-radius: 0px;
        border: 0px;

    }



    .filter-button-mobile i,
    .sort-button i {
        color: #fff;
    }

    .cat-box .clearfix {
        text-align: center;
        display: flex;
    }

    .tabbar.tab-style-3 .tab-link,
    .tabbar.tab-style-3 .tab-link.tab-link-active {
        display: none;
        /* background: #fff; */

        /* border-radius: 0px; */
        /* border: 1px solid #f46a1f; */
        /* height: 48px; */
    }

    .login-reg {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 10px;
    }

    .login-reg a {
        /* width: 48%; */
        padding: 15px 5px !important;
    }

    .login-reg a.sign-e {
        width: 100%;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .checkbox-box {
        display: flex;
        flex-direction: column;
    }

    .navbar .title {
        display: none;
    }

    .dz-banner-height {
        height: 410px;
    }

    .item-detail-swiper {
        top: 160px;
    }

    .navbar .navbar-inner {
        padding: 0 10px;
        border-bottom: 1px solid #ccc;
        background-color: #fff;
        top: 57px !important;
    }



    .navbar.navbar-style-1 .navbar-inner .link.panel-open {
        padding: 0px !important;
    }

    .navbar {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .title-bar {
        padding-top: 15px;
    }

    .auth-button {
        display: none;
    }

    .search-list-results {
        margin: 70px auto;
    }

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

    .cart-popup .popup-product-select {
        display: block;
    }

    #count-product-filter {
        margin-bottom: 20px;
        border: 1px solid var(--f7-theme-color);
    }

    #clear-filters-mobile {
        background: var(--f7-theme-color);
        color: #fff;
    }

    .page-home .menubar-area {
        display: block;
    }

    .page-home .all {
        display: none;
    }


    .hero-images-four {
        grid-template-columns: 1fr;
        /* One column layout for smaller screens */
        grid-template-rows: repeat(4, auto);
        /* Four rows */
        padding: 0px;
    }

    .hero-images-four img {
        grid-row: auto;
        /* Each image will occupy its own row */
    }

    .account-area {
        padding-top: 70px;
    }

    .custom-toolbar {
        display: none;
    }

    .custom-toolbar-mobile {
        /* background-color: #333; */
        display: flex;
        flex-direction: column;
    }

    .custom-toolbar-mobile .accordion-item {
        background: transparent;
        border-bottom: 1px solid var(--border-color);
    }

    .footer-mobile-bottom {

        padding: 0px 10px 20px;
    }

    .footer-mobile-bottom .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #subscribe-form input {
        background: #fff;
        border-radius: 5px;
        margin-bottom: 20px;
        height: 40px;
        padding: 5px;
    }

    .footer-box li {
        text-align: left;
        list-style: none;
        font-size: 16px;
        text-transform: none;
        font-weight: 400;
        line-height: 2;
    }

    .menubar-area .toolbar-inner .tab-link {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: unset;
        color: #adadad;
        letter-spacing: unset;
        position: relative;
        border: none;
        background: transparent;
    }

    .cat-box {

        justify-content: center;

    }

    .footer-box a {
        color: #333;
    }

    .header__panel {
        display: none;
    }

    .container.top-advertise-bar {
        padding: 10px;
    }

    .navbar-inner {
        top: 50px;
    }

    /* .footer-desktop { */
    /* display: none; */
    /* } */
    /* .menubar-area { */
    /* display: block; */
    /* } */
}

.price {

    color: #003b48;

}



.price.promo {

    color: #f46a1f !important;

}



.item-details .main-info .price {

    color: #333;

    font-size: 24px;

    line-height: 26px;

}



.item-details .main-info .price-old,
.item-details .main-info .difference {

    font-size: 12px !important;

}



.features-item-title,
.material-item-title,
.tech-info-item-title,

.description-item-title {

    color: #000;

}



.menubar-area .toolbar-inner .tab-link {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: unset;
    color: #adadad;
    letter-spacing: unset;
    position: relative;
    border: none;
    background: transparent;
}


.menu-main .f7-icons {
    font-size: 12px !important;
    /* Adjust size of the arrow */
    margin-left: 8px;
    transform: rotate(90deg);
    /* Rotate arrow on hover */
}

.sub-categories-container .f7-icons,
.sub-sub-categories-container .f7-icons {
    font-size: 12px !important;
    /* Adjust size of the arrow */
    margin-left: 8px;
    transform: rotate(0deg)
}

.card-overlay.style-1 {
    border-radius: 0px;
    /* border: 1px solid #f46a1f; */
    padding: 200px 20px 35px 20px;
    overflow: hidden;
    width: 315px;
    box-sizing: border-box;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 0px left;
    z-index: 1;
}

.bg-overlay3 {

    background-color: #fff;

}



.card-overlay.style-1 .title {

    color: #333;

}

.filter-box-d {

    margin: 10px 0px;

}

.card-overlay {
    font-size: 12px;
}


.button-yellow-dark {
    background-color: #fff;
    color: #333;
}

.filter-box-d .accordion-item span {
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 10px;
    color: var(--f7-theme-color);
    color: #333;
    font-weight: 500;
}

.filter-box-d .accordion-item .icon {
    font-size: 22px;
    padding: 0 10px;
    color: var(--f7-theme-color);
    line-height: 1.2 !important;
    color: #000;
}

.main-swiper {
    width: 100% !important;
}

.panel-right-10 {
    overflow-y: auto;
}

/* General styles */
.welcome-screen .page-content {
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #5dcbcc;
    /* Neutral background */
    padding-top: 5px;
}

/* Left and Right Section Styling */
.left-side,
.right-side {
    position: relative;
    width: 50%;
    height: calc(100vh - 5px);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.left-side:hover,
.right-side:hover {
    border: 2px solid #007aff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.welcome-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.left-side:hover img,
.right-side:hover img {
    transform: scale(1.01);
    /* Slight zoom-in on hover */
}

/* Overlay Styling */
.welcome-screen .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 59, 72, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.left-side:hover .overlay,
.right-side:hover .overlay {
    opacity: 1;
}

.welcome-screen .overlay span {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    text-shadow: -1px 0px 0 #ffffff, 0px 0px 0 #ffffff, 0px 2px 0 #33333399, 0px 2px 0 #33333399;
}

.stepper-raised.shopping-cart-stepper {
    box-shadow: none;
}

.contact-info-box {
    display: flex;
}

#invoiceFields {
    padding: 20px;
    border: 2px solid #ececec;
    border-radius: 5px;
}


.button-filter.button-group.check-box {
    padding: 5px;
}

.button-filter.button-group.check-box button {
    font-size: 12px;
}



/* Mobile Styles */
@media (max-width: 768px) {
    .welcome-screen .page-content {
        flex-direction: column;
        /* Stack the sections vertically */
        gap: 3px;
        /* Add spacing between sections */
        height: auto;
        /* Allow content to scroll if necessary */
        padding: 5px;
        background: #fff;

    }

    #catalog-widget,
    #product-catalog-widget {
        display: none !important;
    }


    .popup {
        top: 10%;
        width: 100%;
        height: 75%;
    }

    .popup .block {
        margin: 20px 0px !important;
    }

    .welcome-title {
        display: none;
    }

    .left-side {
        width: 100%;
        /* Full width */
        height: calc(45vh - 5px);
        /* Adjust height with gap compensation */
        border-radius: 10px;
    }

    .right-side {
        width: 100%;
        /* Full width */
        height: calc(55vh - 5px);
        /* Adjust height with gap compensation */
        border-radius: 10px;
    }

    .left-side:hover,
    .right-side:hover {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        /* Subtle shadow for smaller screens */
    }

    .welcome-screen .overlay {
        opacity: 1;
    }

    .welcome-screen .overlay span {
        font-size: 1.4rem;
        /* Slightly smaller text */
        opacity: 1;
        background: rgba(0, 59, 72, 1);
    }

    .welcome-screen .overlay {
        background: rgba(0, 59, 72, 0.1);
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {

    .left-side,
    .right-side {
        width: 100%;
        /* Full width */

    }

    .welcome-screen .overlay span {
        font-size: 1.2rem;
        /* Further reduce text size */
        padding: 10px;
    }
}

.unavailable {
    opacity: 0.5;
    color: #999;
    /* Gray color for text */
    text-decoration: line-through;
    /* Optional: strikethrough effect */
}

.dz-badge.discount {

    display: none;

}

#virtual-list-tab-1 .item-bx .dz-footer {

    position: absolute;

    bottom: 0;

    right: 20px
}



#virtual-list-tab-2 .item-bx .dz-footer {

    position: absolute;

    top: 0;

}

.fcol a {

    text-align: left;

    background: transparent;

    border: none;

    font-size: 14px;

    text-transform: capitalize;

    padding: 5px 0px;

    font-family: "Poppins", sans-serif;
    color: #000;

}

.button-group button.is-checked {

    background: #213e7f;

    color: #fff;

}

a.buy-now-button {

    line-height: 1.7 !important;

}

.filters-mobile button {
    min-height: 40px;
}

.item-bx .dz-media {
    padding: 10px;
}

.item-bx .dz-media img {
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;

}

.item-bx .dz-media a {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.notifications {
    text-align: center;
    color: red;
}







.swiper-button-prev,
.swiper-button-next {
    /* display: block; */
    /* background: rgba(0, 0, 0, 0.5); */
    /* color: #fff; */
    width: 15px !important;
    height: 15px !important;
    /* border-radius: 50%; */
    position: absolute;
    top: auto !important;
    /* transform: translateY(-50%); */
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 0px;
    bottom: -25px;
}

.swiper-button-next {
    left: 40px;
    bottom: -25px;
}


.hidden-content {
    display: none;
    /* Initially hide the extra content */
}

.btn-more {
    /* background: linear-gradient(90deg, #003b48, #f46a1f); */
    display: inline-block;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
}

.btn-more:hover {

    border: 1px solid #fff;
}

.about-content {
    text-align: left;
}

.subscribe-form h4 {
    color: #fff;
}

.subscribe-button {
    background: #fff;
    color: #333;
    text-transform: uppercase;
    display: inline-block;
}

.dz-meta p {
    margin: 0px;

    line-height: 18px;
}

.style-1 .dz-meta {
    min-height: 54px;
}

.tab .item-list {
    margin-left: 50px;
}

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

.title-f {
    color: #f46a1f;
    margin-top: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.item-detail-swiper swiper-slide img {
    object-fit: unset;
}


.sub-details {
    margin: 10px 0px !important;
}

.sub-details .item-content {
    padding-left: 0px !important;
    margin: 0px !important;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    border-radius: 0px !important;
}

.badge-danger {
    background-color: #f46a1f;
}

.product-code,
.product-brand {
    font-size: 12px;
}

.md .item-input:not(.item-input-outline).item-content::before {
    background: transparent;
}

.checkmark {
    display: none;
}

.page-home .title-bar,
.page-home2 .title-bar {
    justify-content: center;
}

.page-home .title-bar h4,
.page-home2 .title-bar h4 {

    font-weight: 400 !important;
}

swiper-container.main-swiper1 .swiper {
    position: static !important;
}

swiper-container.main-swiper1:::part(button-next) {
    right: var(--swiper-navigation-sides-offset, -10px) !important;
}

swiper-container.main-swiper1:::part(button-prev) {
    left: var(--swiper-navigation-sides-offset, -10px) !important;

}



.category-item .category-link.panel-close {
    position: relative;
    font-size: 16px;
    color: #333;
    top: 0px;

}

.top-product {
    position: absolute;
    top: 15px;
    left: 5px;
    background: #5dcbcc;

    color: #fff;
    padding: 5px;
    border-radius: 10px;
}

.welcome-title {
    position: absolute;
    z-index: 2;
    color: #333;
    font-size: clamp(1rem, 2vw, 2rem);
    top: 25px;
    margin: auto;
    padding: 10px;
    font-weight: 600;
    width: 100%;

}

.menu-main {
    background: #fff;
    color: #000;
}


.menu-main2 {
    background: #5dcbcc;
    color: #fff;
}

#econt-offices .item-content,
#econt-ekomats .item-content {
    justify-content: normal !important;
    font-size: 14px;
}

#econt-office-fields,
#econt-office-fields {
    margin: 20px 0px;
    display: flex;
}


#catalog-widget,
#product-catalog-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    /* background: white; */
    /* padding: 10px; */
    /* border-radius: 8px; */
    box-shadow: 0px 4px 6px rgba(0, 59, 72, 0.8);
    background: #003b48;

}

#catalog-widget img {
    width: 115px;
    height: auto;
    cursor: pointer;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(245, 133, 66, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(245, 133, 66, 1);
    }

    100% {
        box-shadow: 0 0 5px rgba(245, 133, 66, 0.5);
    }
}

#catalog-widget,
#product-catalog-widget {
    animation: glow 1.5s infinite alternate;
    /* border-radius: 10px; */
    padding: 2px;
}

.title-catalog {
    font-size: 14px;
    color: #fff;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-orientation: mixed;
    text-transform: uppercase;

    line-height: normal;
}

.breadcrumbs {
    margin-top: 10px;
    margin-left: 10px;
}

a.breadcrumb-link,
span.breadcrumb-link {
    color: #333;
    text-transform: uppercase;
    font-size: 10px;
}

.title-f {
    display: none;
}

.submenu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    padding: 15px 30px;
    min-width: 250px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 220px;
    width: 100%;
    box-sizing: border-box;
    height: auto;

    display: flex;
    /* Use flexbox to separate subcategories and image */
    justify-content: space-between;
    align-items: flex-start;
}

/* Container for subcategories */
.submenu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Always 3 columns for subcategories */
    gap: 10px;
    flex: 1;
    /* Makes sure it takes the available space */
}

.submenu a {
    color: #003b48;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 0px !important;
}

.menu-main a,
.menu-main2 a {
    position: relative;
    display: block;
    padding: 20px 8px;
    text-decoration: none;

}

.menu-main a.has-mega,
.menu-main2 a.has-mega {
    padding-right: 18px;
}

.menu-main a.has-mega::after,
.menu-main2 a.has-mega::after {
    content: "chevron_down";
    font-family: "framework7-core-icons";
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    text-transform: none;
    transition: transform 0.2s ease, color 0.2s ease;
    color: #222;
}

.menu-main a.has-mega.is-open::after,
.menu-main2 a.has-mega.is-open::after {
    transform: rotate(180deg);
    color: #e71b3f;
}

.menu-main a.is-open,
.menu-main2 a.is-open {
    color: #e71b3f;
}

.menu-main a:hover+.submenu,
.menu-main2 a:hover+.submenu {
    display: flex;
}

/* РћСЃС‚Р°РІСЏ РїРѕРґРјРµРЅСЋС‚Рѕ РѕС‚РІРѕСЂРµРЅРѕ РїСЂРё hover */
.menu-main .submenu:hover,
.menu-main2 .submenu:hover {
    display: flex;
}

.submenu {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.menu-main a:hover+.submenu,
.menu-main2 a:hover+.submenu,
.submenu:hover {

    opacity: 1;
    visibility: visible;
}

.menu-main a:hover,
.menu-main2 a:hover {
    background: white;
    color: #003b48;

    transition: background 0.3s ease-in-out;
}

.menu-main>a:hover,
.menu-main>a.active,
/* РђРєРѕ РёРјР° РєР»Р°СЃ active */
.menu-main>.submenu {

    color: #e71b3f;


}

.menu-main>.submenu {
    display: flex;
    /* РџРѕРґРјРµРЅСЋС‚Рѕ Рµ РїРѕРєР°Р·Р°РЅРѕ */
}

.submenu .menu-image-wrapper {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

#loading-spinner-category {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.spinner-category {
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.zoom-icon {
    position: absolute !important;
    top: 10px !important;
    right: 10px;
    font-size: 24px;

    color: #333;
    border-radius: 50%;
    padding: 5px;
    pointer-events: none;
    z-index: 10;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.even-feature {
    background-color: #f3f3f3;
    padding: 5px;
}

.odd-feature {
    background-color: #fff;
    padding: 5px;
}

.navbar-photo-browser a.link [fill] {
    fill: transparent;
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    z-index: 9999;
}

.sub-category-wrapper {
    padding: 5px 0;
}



.sub-link-row {
    display: flex;
    align-items: center;
    gap: 0px;
}

.toggle-sub-sub {
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    color: #f46a1f;
    width: 16px;
}

.toggle-sub-sub.empty-toggle {
    visibility: hidden;
    /* hides but keeps space */
}

.sub-sub-menu {
    padding-left: 30px;
    margin-top: 4px;
}

.count-color {
    color: #777;
    font-weight: 300;
}

.author {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 5px;
}

.blog-post-title {
    text-align: center;
}


/* Image link */
.submenu .menu-image-link {
    display: block;
    width: 100%;
}

/* Image */
.submenu .menu-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}


/* #catalog-widget-mobile { */
/* position: fixed; */
/* bottom: 20px; */
/* left: 20px; */
/* z-index: 10000; */

/* box-shadow: 0px 4px 6px rgba(0, 59, 72, 0.8); */
/* } */

#catalog-widget-mobile img,
#catalog-widget-mobile-2 img {
    width: 30px;
    height: auto;
    cursor: pointer;
}


:root {
    --container: 100%;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

/* TOP BAR */
.top-advertise-bar__outer {
    background: #000;
    font-size: 13px;
}

.top-advertise-bar {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.top-advertise {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-advertise-bar a {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}


/* HEADER PANEL */
.header__panel {
    background: #f6f7f8;
    border-bottom: 1px solid #e6e8eb;
}

.header__panel-content {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.benefits-header__list {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.benefits-header__list a {
    color: #111;
    text-decoration: none;
    font-size: 13px;
    opacity: .85;
}

.benefits-header__list a:hover {
    opacity: 1;
}


.navbar-inner {
    top: 76px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.benefit .f7-icons {
    font-size: 16px;
}

.material-icons {
    font-size: 16px;
    vertical-align: middle;
}



/* .main-swiper-hero .swiper-slide { */
/* width: 100% !important; */
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
/* } */

/* .main-swiper-hero .swiper-slide a { */
/* display: block; */
/* width: 100%; */
/* height: 100%; */
/* } */

.mega {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.mega.is-open {
    display: block;
}

.mega__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
}

.mega__left {
    border-right: 1px solid #eee;
    padding-right: 16px;
}

.mega__title {
    font-weight: 700;
    margin-bottom: 10px;
}

.mega__leftItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
}

.mega__leftItem:hover,
.mega__leftItem.is-active {
    background: #f5f6f7;
}

.mega__leftLetter {
    margin: 10px 8px 4px;
    font-size: 12px;
    font-weight: 700;
    color: #7b7b7b;
    text-transform: uppercase;
}

.mega__rightGrid {
    display: flex;
    /* grid-template-columns:repeat(4, minmax(160px, 1fr));  */
    flex-direction: column;
    gap: 4px;
}

.mega__rightGrid--cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mega__leftLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    border-radius: 8px;
    font-weight: 500;
}

.mega__leftLink:hover {
    background: #f5f6f7;
}

.mega__col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega__tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f6f7;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 600;
}

.mega__tileText {
    display: block;
}

.mega__colList {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega__colLink {
    font-size: 13px;
}

.mega__more {
    margin-top: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: underline;
}

/* Sport mega menu */
.mega--sport .mega__leftList {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

.mega--sport .mega__rightGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-height: 420px;
    overflow-y: auto;
}

.mega--sport .mega__rightGrid.mega__rightGrid--sport-single {
    display: block;
}

.mega__sportBlock {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega__sportTile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f6f7;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 600;
}

.mega__sportList {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.mega__sportList--cols {
    columns: 2;
    column-gap: 24px;
}

.mega__sportList--cols a {
    display: block;
    break-inside: avoid;
    padding: 2px 0;
}

.mega__sportHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.mega__sportTitle {
    font-size: 18px;
    font-weight: 700;
}

.mega__sportAll {
    font-size: 14px;
    text-decoration: underline;
    white-space: nowrap;
}

.mega__sportCols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.mega__sportColTitle {
    font-weight: 700;
    margin-bottom: 8px;
}

.mega__card {
    background: #f5f6f7;
    border-radius: 12px;
    padding: 12px;
}

.mega__cardTitle {
    font-weight: 700;
    margin-bottom: 8px;
}

.mega a {
    color: #111;
    text-decoration: none;
}

.mega a:hover {
    text-decoration: underline;
}


.mega__rightHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mega--sportano .mega__rightHeader {
    display: none;
}

.mega__rightTitle {
    font-size: 18px;
    font-weight: 600;
}

.mega__rightAll {
    font-size: 14px;
    text-decoration: underline;
    white-space: nowrap;
}

/* Brands mega menu */
.mega--brands .mega__inner {
    grid-template-columns: 1fr;
}

.mega--brands .mega__left {
    display: none;
}

.mega__brands {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega__brandsLetters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mega__brandLetter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex: 0 0 auto;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mega__brandLetter.is-active {
    border-color: #e71b3f;
    color: #e71b3f;
    font-weight: 700;
}

.mega__brandLetter.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.mega__brandsBody {
    min-height: 220px;
}

.mega__brandsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px 24px;
    align-items: center;
}

.mega__brandCard {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f7f8f9;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.mega__brandCard img {
    max-height: 28px;
    max-width: 120px;
    object-fit: contain;
}

/* Brands page */
.brands-page {
    max-width: 1200px;
    margin: 0 auto;
}

.brands-page__section {
    margin-top: 32px;
}

.brands-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.brands-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex: 0 0 auto;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.brands-letter.is-active {
    border-color: #e71b3f;
    color: #e71b3f;
    font-weight: 700;
}

.brands-letter.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.brands-group {
    margin-top: 24px;
}

.brands-group__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.brands-group__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px 18px;
}


.promo-swiper {
    width: 100%;
}

.promo-slide {
    position: relative;
    display: block;
}

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

.promo-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 520px;
}

.promo-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
}

.promo-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-top: 8px;
    opacity: .9;
}

.promo-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    font-weight: 700;
}

.promo-swiper .swiper-button-prev,
.promo-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
}

.promo-swiper .swiper-button-prev:after,
.promo-swiper .swiper-button-next:after {
    font-size: 16px;
    color: #000;
}

.cart-popup .navbar-inner {
    top: 0px
}

#tabA1 {
    padding-top: 30px;
}

#category-filter .link {
    justify-content: left;
}

.filters .list {
    margin: 0px;
}

.item-detail-swiper::part(pagination) {
    bottom: 0px !important;
    z-index: 999999;
}

.item-detail-swiper::part(container) {
    padding: 0 0 20px 0 !important;
}

.swiper {
    padding: 0 0 20px 0 !important;
}


