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

body {
    color: #161619;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55556;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 576px) {
    .desktop-hidden {
        display: none !important;
    }
}

@media screen and (max-width: 575px) {
    .mobile-hidden {
        display: none !important;
    }
}

.text-center {
    text-align: center;
}
.header-main {
    height: auto;
}

.header-main-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(243, 242, 242, 1);
    position: relative;
}

.header-main-top .site-branding {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-main-top-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
}

.search-wrapper,
.header-account {
    padding: 0 4px;
}

.header-main-top-controls a {
    transition: opacity 0.3s;
}

.header-main-top-controls a:hover {
    opacity: 0.7;
}

.gender-switch {
    display: flex;
    gap: 1.6rem;
}

@media (hover: hover) {
    .gender-switch:hover .gender-switch-option  {
        color: #666;
    }

    .gender-switch:hover .gender-switch-option:hover {
        color: black;
    }
}

.gender-switch-option {
    font-size: 0.75rem;
    font-weight: 500;
    color: black;
    background: transparent;
    padding: 0;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.gender-switch-option.active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    font-weight: 700;
}

.header-main-menu {
    padding: 0 3rem;
    border-bottom: 1px solid rgba(243, 242, 242, 1);
    position: relative;
}

.header-main-menu .menu-link {
    color: black;
}

.menu-block {
    opacity: 0;
    height: 0;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.75rem;
}

.menu-block.active {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.header-main-menu .menu {
    display: flex;
}
.nav-menu li li.level-2 {
    padding: 0;
    margin-bottom: 8px;
    font-size: 0.6875rem;
}
.nav-menu ul {
    box-shadow: none;
}

.nav-menu li.level-0 {
    padding: 1rem;
    width: auto;
    margin: 0;
    transition: opacity 0.1s;
}

.nav-menu li.level-0:first-child {
    padding-left: 0;
}

.nav-menu li li.level-1 {
    padding: 1rem 3rem;
}

.nav-menu li.level-0.hover {
    opacity: 1;
}

.nav-menu li.level-0:hover > ul {
    opacity: 0;
}

.nav-menu li.level-0.hover ul {
    opacity: 1;
    pointer-events: auto;
}

.menu-opened {
    overflow: hidden;
    padding-right: 15px;
}

@media screen and (min-width: 1200px) {
    .menu-opened {
        padding-right: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .menu-opened .campaign-bar {
        display: none;
    }
}

.menu-opened .header-main-menu:before {
    content: "";
    display: block;
    min-height: 500px;
    width: 100%;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background-color: #fff;
    z-index: 11;
}

.nav-menu li {
    position: static;
}

.nav-menu .archive-link {
    padding: 1.5rem 3rem;
    text-decoration: underline;
    opacity: 0;
    pointer-events: none;
}

.nav-menu .menu-item.hover .archive-link {
    opacity: 1;
    transition: 0.2s;
    pointer-events: all;
}

.nav-menu li.level-0 > .level-wrapper {
    width: 100vw;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 12;
    pointer-events: none;
}

.nav-menu li.level-0 > .level-wrapper > ul {
    position: initial;
    display: flex;
    width: 100%;
    padding: 0;
    transform: none;
    border-top: 1px solid rgba(243, 242, 242, 1);
}

.nav-menu li li ul {
    position: static;
    opacity: 1;
    transform: none;
    padding: 0;
}

.menu-item.level-1 > .menu-link {
    font-weight: 600;
    display: block;
    margin: 1rem 0;
}

.menu-item-image {
    margin-left: auto;
}

.menu-item-image img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 350px;
    opacity: 0;
    transition: opacity 0.7s;
    transition-delay: 0.5s;
}

.nav-menu li.level-0.hover > .level-wrapper ul .menu-item-image img {
    opacity: 1;
}

.menu-item.level-1.menu-item-image .menu-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-item-image .image-description {
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.menu-item-image .cta-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    text-decoration: underline;
}

.header-main-top-controls .svg-icon:not(.caret) svg,
.header-mobile-controls .svg-icon svg,
.kapsula-search-form .svg-icon svg {
    fill: none;
}

.close-btn .svg-icon svg {
    width: 14px;
}

.search-block {
    position: fixed;
    width: 560px;
    max-width: 100%;
    z-index: 1000000;
    background-color: #fff;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    transform: translateX(100%);
    transition: transform 0.5s;
}

.search-block.opened {
    transform: none;
}

body.search-opened {
    overflow: hidden;
}

body.search-opened:before {
    content: "";
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(5px);
}

.search-trigger {
    padding: 0;
    background-color: transparent;
    line-height: 1;
    font-size: 0.75rem;
    font-weight: 500;
    color: inherit;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.search-trigger:hover {
    opacity: 0.7;
}

.search-field {
    padding: 20px 24px;
    border-bottom: solid 1px #e5e5e5;
}

.kapsula-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

input.kapsula-search {
    border-bottom: 0;
    width: 100%;
    font-size: 1rem;
}

input.kapsula-search::placeholder {
    font-size: 0.75rem;
}

.search-popular-links {
    display: flex;
}

.search-popular-links-item {
    flex: 1;
    padding: 32px 24px;
    text-transform: uppercase;
}

.search-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
    text-transform: uppercase;
}

.search-popular-links-item .menu {
    display: flex;
    flex-direction: column;
}

.search-popular-links-item .menu li {
    padding: 8px 0;
    font-size: 0.6875rem;
    font-weight: 500;
}

.search-bestsellers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 2px;
}

.search-bestsellers.search-loading {
    display: flex;
}

.search-bestsellers-block {
    margin: 16px 0;
}

.search-bestsellers-block .search-title {
    padding: 10px 24px;
    margin: 0;
}

.search-bestsellers img {
    aspect-ratio: 0.75;
    width: 100%;
    object-fit: cover;
}

.search-bestsellers > a > p {
    font-size: 0.6875rem;
    text-transform: uppercase;
    padding: 0 12px;
    margin: 0;
    font-weight: 600;
}

.search-bestsellers > a > h3 {
    padding: 0 12px;
    font-size: 0.6875rem;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-bestsellers .woocs_price_code {
    font-size: 0.6875rem;
    padding-left: 12px;
    font-weight: 600;
}

.search-bestsellers.search-loading:after {
    margin: 16px auto;
}

.woocs_price_code {
    display: inline-flex;
    gap: 4px;
    font-weight: 600;
}

.woocs_price_code del {
    order: -1;
    color: #838889;
    font-weight: 500;
}

.woocs_price_code + .sale-percent {
    border-radius: 2px;
    background: #E22639;
    font-weight: 600;
    color: white;
    padding: 3px 4px;
    font-size: 0.6875rem;
    margin-left: 4px;
    line-height: 1;
}

.kapsula-search-results:not(:empty) {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 24px;
    text-transform: uppercase;
    font-size: 0.6875rem;
    font-weight: 500;
}

.kapsula-search-results.-empty {
    gap: 16px;
}

.kapsula-search-results.-empty > svg {
    flex-shrink: 0;
}

.kapsula-search-results.-empty p {
    font-size: 0.875rem;
    color: #697077;
    text-transform: none;
    font-weight: 400;
}

.kapsula-search-results.-empty .search-title {
    margin-bottom: 4px;
}

.kapsula-search-results.catalogue {
    flex-direction: row;
    gap: 11px;
}

.kapsula-search-results.catalogue .search-title {
    margin: 0;
}

.kapsula-search-results.catalogue p {
    margin: 0;
    line-height: 1.5rem;
    font-size: .75rem;
}

.search-loading:after {
    content: "";
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #514b82;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

.kapsula-search-form.search-loading:after {
    position: absolute;
    right: 32px;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }
    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }
    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }
    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }
    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}
@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg);
    }
    49.99% {
        transform: scaleY(1) rotate(135deg);
    }
    50% {
        transform: scaleY(-1) rotate(0deg);
    }
    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

.header-mobile-top {
    display: flex;
    align-items: center;
    padding: 16px;
}

.header-mobile-controls {
    display: flex;
    gap: 20px;
}

.header-mobile-logo {
    flex: 1;
    text-align: center;
}

.header-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    overflow: auto;
    background: white;
    z-index: 1111111;
    width: 100%;
    transform: translateX(-100%);
    padding: 16px;
    transition: transform 0.5s;
}

.header-mobile-menu.opened {
    transform: none;
    overflow-x: hidden;
}

.header-mobile-menu.submenu-opened {
    overflow: hidden;
}

.trigger-mobile-menu {
    width: 20px;
}

.header-mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.header-mobile-menu .gender-switch {
    border-bottom: solid 1px #e8e8e8;
    margin: 24px 0;
}

span.counter {
    display: none;
}

.title-h2,
.title-h3 {
    font-weight: 500;
}

.title-h2 {
    font-size: 40px;
}

.title-h3 {
    font-size: 30px;
}

.site-header.transparent {
    position: relative;
}

.site-header .site-branding .logo svg {
    width: 162px;
    height: 42px;
    max-width: 100%;
}

.logo-center .header-center-items .site-branding {
    min-width: 75px;
}

.focus-last-menu.main-navigation {
    width: 100%;
}

.focus-last-menu .nav-menu > li:last-child {
    flex: 1;
}

.nav-menu > li.hover > ul:not(.mega-menu) {
    transform: translate(0, -2px);
}

.main-navigation .mega-menu .hide-link > a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.menu-item.new-menu > a:after,
.menu-item.snowflake > a:after,
.menu-item.snowflake-black > a:after,
.menu-item.valentine-day > a:after {
    content: "NEW";
    font-size: 0.5em;
    vertical-align: text-top;
    margin-left: 4px;
    display: inline-block;
    position: static;
    width: auto;
    border-bottom: 0;
}

.menu-item.snowflake-black > a {
    text-transform: uppercase;
}

.menu-item.snowflake > a,
.menu-item.valentine-day > a {
    color: red;
    text-transform: uppercase;
}

.menu-item.snowflake > a:after,
.menu-item.snowflake-black > a:after {
    content: "\2744\FE0E";
    margin-left: 0;
    font-size: 1.15em;
    vertical-align: 0;
}

.menu-item.valentine-day > a:after {
    content: "";
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    background: url("../img/icon-heart.svg") no-repeat;
    margin-left: 0;
    vertical-align: -4px;
}

.menu-item.new-menu > a:before,
.menu-item.snowflake > a:before,
.menu-item.snowflake-black > a:before,
.menu-item.valentine-day > a:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 0;
    border-bottom: 1px solid;
    transition: width 0.3s;
}

.main-navigation .menu-item.new-menu a:hover:before,
.main-navigation .menu-item.snowflake a:hover:before,
.main-navigation .menu-item.snowflake-black a:hover:before,
.main-navigation .menu-item.valentine-day a:hover:before,
.main-navigation li.new-menu.menu-item-has-children:hover > a:before {
    width: 100%;
    left: 0;
}

.woocommerce div.product .variations_button .button {
    padding: 0;
}

.campaign-bar {
    padding: 0;
}

.campaign-bar .konte-container-fluid {
    margin: 0;
    padding: 0;
    width: 100%;
}

.campaign-bar__campaigns {
    margin: 0;
}

.konte-promotion.layout-inline .konte-promotion__tagline,
.konte-promotion.layout-inline .konte-promotion__text {
    font-size: 1.2em;
}

.konte-promotion.layout-inline .konte-promotion__text br {
    display: none;
}

.campaign-bar__campaigns .konte-promotion {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.konte-promotion.layout-inline .konte-button {
    text-transform: none;
    font-weight: 700;
    margin-left: 10px;
}

.textwidget p {
    max-width: 100%;
}

.header-switcher .list-dropdown .current {
    padding: 0;
    font-size: 0.75rem;
}

.header-switcher .list-dropdown .current:before,
.header-switcher .list-dropdown .current:after {
    border: none;
}

.breadcrumbs {
    font-size: 0.75rem;
    font-weight: normal;
    overflow: auto;
    white-space: nowrap;

    @media screen and (max-width: 768px) {
        a {
            max-width: 135px;
            overflow: hidden;
            display: inline-block;
            text-overflow: ellipsis;
            vertical-align: middle;
        }
    }
}

.breadcrumbs-separator {
    color: #e3e3e3;
    display: inline-block;
    margin: 0 4px;
    min-width: 15px;
    text-align: center;
}

.header-account .account-links {
    display: none;
}

.mobile-menu__cart-icon,
.mobile-menu__wishlist-icon {
    position: relative;
}

.header-mobile .logo-svg {
    max-width: 130px;
    display: inline-block;
}

.header-mobile .logo-svg svg {
    width: 100%;
}

.nav-menu > li {
    padding: 0 8px;
}

.main-navigation li li a {
    font-size: 13px;
}

.main-navigation li li li a {
    white-space: normal;
}

.main-navigation a {
    white-space: nowrap;
    font-size: 14px;
}

.currency.list-dropdown ul {
    left: auto;
    right: 0;
}

.header-right-items {
    font-size: 14px;
}

.header-account > a {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}

/* cart popup */
.widget_shopping_cart_content a.remove {
    top: 0;
    right: 0;
    margin: 0;
    color: #a0a5a6;
}

.widget_shopping_cart_content .woocommerce-mini-cart-item__thumbnail {
    width: 110px;
}

.widget_shopping_cart_content .woocommerce-mini-cart-item__summary {
    align-items: flex-start;
}

.cart-panel .hamburger-menu .menu-text {
    font-size: 16px;
}

.cart-panel .button-close.active .menu-text {
    display: none;
}

.cart-panel #add-gift-wrap-to-cart {
    display: none;
}

body .cart-panel .widget_shopping_cart_content .woocommerce-mini-cart-item__name {
    font-size: 20px;
    line-height: 25px;
    padding-right: 25px;
    width: 100%;
    min-height: 48px;
}

body .widget_shopping_cart_content .woocommerce-mini-cart-item__qty {
    font-size: 15px;
    margin-bottom: 12px;
    width: 100%;
}

body .widget_shopping_cart_content .woocommerce-mini-cart-item__qty .label {
    color: #808080;
    margin-right: 20px;
    line-height: 25px;
}

.widget_shopping_cart_content .woocommerce-mini-cart-item__qty select {
    border-bottom: none;
    line-height: 25px;
    padding-right: 15px;
}

body .widget_shopping_cart_content .woocommerce-mini-cart-item__qty .price {
    font-size: 15px;
    font-weight: normal;
    margin-top: 0;
    line-height: 25px;
    padding-top: 6px;
}

.cart-panel .in-showroom {
    display: inline-block;
    min-width: 170px;
    padding: 0 20px;
    border: 1px solid #e3e7e8;
    border-radius: 2px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #808080;
}

body .cart-panel .widget_shopping_cart_content .buttons .button {
    border-width: 2px;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: unset;
    min-width: unset;
}

body .cart-panel .widget_shopping_cart_content .buttons .button.checkout:hover {
    background-color: #ff5000;
}

body .cart-panel .widget_shopping_cart_content .buttons .button.button-close {
    padding: 0;
    border: 0;
    text-decoration: underline;
    min-height: 25px;
}

body .cart-panel .widget_shopping_cart_content .buttons .button.button-close:hover {
    background: transparent;
    color: #161619;
    text-decoration: none;
}

.cart-panel .woocommerce-mini-cart-item__summary .add-to-favorites {
    position: absolute;
    right: -1px;
    bottom: 0;
}

.cart-panel .woocommerce-mini-cart-item__summary .add-to-favorites .svg-icon {
    font-size: 20px;
}

.cart-panel .woocommerce-mini-cart-item__summary .add-to-favorites .button {
    background: none;
    padding: 0;
    color: #161619;
    line-height: 1;
    text-align: right;
}

.checkout-coupon {
    display: none;
}

.woocommerce-mini-cart-item__qty select.pa_size-select {
    border: 1px solid #bbbaba;
    padding: 5px 25px 5px 10px;
    background-position: calc(100% - 12px) center;
    background-size: 12px auto;
    cursor: pointer;
    background-color: transparent;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNHB4IiBoZWlnaHQ9IjE0cHgiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTQiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwb2x5Z29uIHBvaW50cz0iNywxMC43NzMgMS41MzEsNi4zOTggMi40NjksNS4yMjcgNyw4Ljg1MSAxMS41MzEsNS4yMjcgMTIuNDY5LDYuMzk4ICIvPjwvZz48cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMTQiIGhlaWdodD0iMTQiLz48L3N2Zz4=);
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
    border-bottom-width: 1px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 120px;
}

/* emd */

table.wishlist_table td.product-add-to-cart .button.add_to_cart_button:hover {
    background-color: #ff5000;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background-color: #c9c085;
    color: #000;
}

.woocommerce-message {
    padding: 24px 80px;
}

.woocommerce-message-inner {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 32px;
    font-size: 15px;
}

.woocommerce-info .button,
.woocommerce-error .button {
    color: #161619;
}

.woocommerce-message .button {
    color: #000;
    font-weight: 600;
    margin: 0;
}

.woocommerce-error {
    background-color: #ecb9cc;
}

.woocommerce-info {
    background-color: #f1dade;
}

.slick-dots li button {
    opacity: 1;
}

.slick-dots li button:before {
    opacity: 1;
    color: #cdcfd0;
    background: transparent;
}

.slick-dots li.slick-active button:before {
    color: #000;
    background: rgba(22, 22, 25, 0.1);
    opacity: 1;
}

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

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

.footer-widgets .widget .social {
    background: transparent;
    color: #000;
    font-size: 18px;
}

.footer-widgets .widget li:first-child {
    padding-top: 5px;
}

.wpcf7-form span.ajax-loader {
    height: 100%;
}

.footer-widgets,
.footer-main {
    width: 1600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-widgets-area-2,
.footer-widgets-area-3,
.footer-widgets-area-4 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-widgets-area-2,
.footer-widgets-area-3,
.footer-widgets-area-4,
.footer-widgets-area-5 {
    padding-top: 25px;
}

.footer-main .footer-right {
    flex-direction: row;
}

.footer-main .footer-right > * {
    margin: 0 20px 0 0;
}

.footer-main .footer-right > *:last-child {
    margin-right: 80px;
}

.slick-dotted.slick-slider {
    margin-bottom: 60px;
}

/* end */

.header-cart > a,
.header-wishlist > a {
    position: relative;
}

.counter {
    font-size: 0;
    width: 8px;
    height: 8px;
    background: #ff5000;
    padding: 0;
    min-width: 8px;
    position: absolute;
    right: 0;
    top: 0;
}

.header-right-items .header-search.icon .search-field.focused {
    background: #fff;
    padding-left: 10px;
}

.search-modal .search-form .search-field:focus {
    outline: none;
}

.search-modal .search-title {
    font-weight: 500;
    font-size: 20px;
}

.header-right-items .header-search .quick-links {
    top: -24px;
    right: 0;
}

.header-search.icon .quick-links {
    width: 295px;
}

.woocommerce div.product .single_add_to_cart_button,
.quick-buy-button {
    line-height: 18px;
    background: #161619;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    border: 1px solid #161619;
}

@media (hover: hover) {
    .woocommerce div.product .single_add_to_cart_button:hover,
    .quick-buy-button:hover {
        background-color: #535356;
        border-color: #535356;
    }
}

.woocommerce div.product .variations select,
.quick-buy-panel select {
    width: 100%;
    height: 44px;
    border: 1px solid #bbbaba;
    padding: 0 60px 0 19px;
    font-size: 14px;
    letter-spacing: 0.01em;
    background-position: calc(100% - 24px) center;
    background-size: 18px auto;
    cursor: pointer;
}

.woocommerce div.product .variations select:hover,
.woocommerce div.product .variations select:focus,
.quick-buy-panel select:hover,
.quick-buy-panel select:focus {
    border-color: #161619;
}

.woocommerce div.product .cart {
    margin-bottom: 12px;
}

.products-tools .products-filter-toggle {
    width: fit-content;
}

.products-tools .products-filter-toggle .toggle-filters {
    margin-right: 15px;
    white-space: nowrap;
}

ul.products.layout-carousel .loading-placeholder .spinner {
    display: flex;
    background: inherit;
}

.products-toolbar.layout-v2 .woocommerce-ordering {
    float: none;
    order: 1;
    margin-left: auto;
}

.konte-promotion a {
    margin-left: 10px;
}

.konte-promotion a:after {
    width: 100%;
}

.konte-promotion .close-banner {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.konte-promotion .close-banner:before,
.konte-promotion .close-banner:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translateY(7px);
}

.konte-promotion .close-banner:before {
    transform: rotate(135deg) translate(5px, -5px);
}

.konte-promotion .close-banner:after {
    transform: rotate(45deg) translate(4px, 4px);
}

body.logged-in .header-right-items .header-account a {
    width: 20px;
    height: 20px;
    background: url("../img/user.svg") center center no-repeat;
    background-size: 100% 100%;
    text-indent: -9999px;
    text-align: left;
}

.notifyjs-corner {
    display: none;
}

.footer-items.footer-left .copyright {
    margin-bottom: 0;
}

.footer-items.footer-left .custom-text {
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
    padding-top: 5px;
}

.price .sale-date-to {
    display: inline-block;
}

#tab-reviews .commentlist .meta em.woocommerce-review__verified.verified {
    display: none;
}

.cart-panel .widget_shopping_cart_content .buttons {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

body .cart-panel .widget_shopping_cart_content .buttons .button.checkout {
    line-height: 1.2;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin: 0 0 12px;
}

.cart-panel .widget_shopping_cart_content .buttons .button-close {
    position: static;
    font-weight: 400;
}

.select2-container .select2-search--dropdown .select2-search__field {
    background: #fff url("../img/search.svg") calc(100% - 15px) center no-repeat;
    border-radius: 0;
}

.konte-woocommerce-alert {
    z-index: 99999;
    visibility: hidden;
}

.konte-woocommerce-alert.active {
    visibility: visible;
}

.products-filter-widget .button {
    transition: 0s;
}

.products-filter-widget .filter-button {
    position: sticky;
    bottom: 0;
    z-index: 1;
}

.login-panel .panel-content .woocommerce-privacy-policy-text {
    margin: unset;
}

.anr_captcha_field_div {
    display: flex;
    justify-content: center;
}

.woocommerce-form.woocommerce-form-register.register .nsl-container.nsl-container-block .nsl-container-buttons,
.woocommerce-form.woocommerce-form-login.login .nsl-container.nsl-container-block .nsl-container-buttons,
.nsl-custom-login-form-main .nsl-container.nsl-container-block.nsl-container-login-layout-below .nsl-container-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item.highlight > .menu-link {
    color: #E54A29;
    font-weight: 600;
}

.express-shipping {
    color: #938b46;
    font-size: 15px;
    font-weight: 400;
}

@media (hover: hover) {
    .button.alt:hover,
    .button.alt:focus {
        background-color: #000;
        color: #fff;
        transition: 0.4s;
    }

    .buy-in-one-click-button.button.alt:hover {
        background-color: #ececec;
        color: #000000;
    }
}

.woocommerce.soo-wishlist .product-name {
    padding-right: 10px;
}

.woocommerce.soo-wishlist .product-price {
    padding-right: 10px;
}

.woocommerce.soo-wishlist .product-price .woocommerce-Price-amount,
.woocommerce.soo-wishlist .product-price .sale-percent {
    white-space: nowrap;
}

.woocommerce.soo-wishlist .product-stock-status {
    white-space: nowrap;
    padding-right: 10px;
}

.panel .woocommerce-mini-cart-item__name a {
    font-size: 15px;
}

.panel .woocommerce-mini-cart-item__name a:last-child {
    display: block;
    max-width: 200px;
    font-weight: 400;
}

.panel .mini-cart-fixed {
    padding-top: 6px;
    position: sticky;
    bottom: 0;
    border-top: 1px solid #e3e3e3;
    background: #fff;
}

.panel .shipping {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.panel .shipping > div:first-child {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.panel .shipping ul.woocommerce-shipping-methods {
    justify-content: flex-start;
    gap: 32px;
}

.panel .mini-cart-promo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15.33px 0 15.33px;
    border-bottom: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.panel .mini-cart-promo:has(.coupon-accordion-trigger.active) {
    height: unset;
}

.panel .mini-cart-promo .minicart-applied-coupons {
    margin-top: 12px;
    min-height: 22px;
}

.panel .mini-cart-promo .minicart-applied-coupons .coupon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 16px;
    background: #c9c085;
    line-height: 12px;
    font-size: 10px;
    color: #000;
    font-weight: 500;
}

.panel .mini-cart-promo .minicart-applied-coupons .coupon-item a {
    color: inherit;
    font-weight: 400;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

.woocommerce-mini-cart__subtotal.subtotal,
.woocommerce-mini-cart__discount.discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
}

.woocommerce-mini-cart__subtotal.subtotal bdi,
.woocommerce-mini-cart__subtotal.subtotal bdi span,
.woocommerce-mini-cart__discount.discount bdi,
.woocommerce-mini-cart__discount.discount bdi span {
    color: #161619 !important;
}

.woocommerce-mini-cart__subtotal.subtotal span:first-child,
.woocommerce-mini-cart__discount.discount span:first-child {
    color: #5a5a5a;
}

.woocommerce-mini-cart__discount.discount .woocommerce-Price-amount.amount bdi {
    position: relative;
}

.woocommerce-mini-cart__discount.discount .woocommerce-Price-amount.amount bdi::before {
    content: "-";
    width: 1px;
    height: 1px;
    transition: all 0.2s ease-in-out;
}

.woocommerce-checkout a.woocommerce-remove-coupon {
    position: relative;
    display: block;
    text-decoration: none;
    width: fit-content;
}

.woocommerce-checkout a.woocommerce-remove-coupon:hover {
    text-decoration: none;
}

.panel .mini-cart-promo .minicart-applied-coupons .coupon-item a:before,
.woocommerce-checkout a.woocommerce-remove-coupon:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: all 0.2s ease-in-out;
}

.panel .mini-cart-promo .minicart-applied-coupons .coupon-item a:hover:before,
.woocommerce-checkout a.woocommerce-remove-coupon:hover:before {
    transform: scaleX(0);
}

.coupon-accordion-trigger {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.coupon-accordion-trigger .coupon-icon-arrow {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-image: url("../img/coupon-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.coupon-accordion-trigger .coupon-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("../img/coupon-icon.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-right: 8px;
}

.coupon-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.coupon-accordion-trigger.active .coupon-icon-arrow {
    transform: rotate(180deg) translateY(50%);
}

.coupon-accordion-content.active {
    max-height: 300px;
    opacity: 1;
    padding-top: 8px;
}

.panel .mini-cart-promo .coupon {
    display: flex;
    gap: 20px;
    margin: 0;
}

.panel .mini-cart-promo .coupon input {
    flex: 1 1 auto;
    width: 100%;
    border: 1px solid #a9a9a9;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.panel .mini-cart-promo .coupon input:focus {
    border-color: #161616;
}

.panel .mini-cart-promo .coupon button {
    flex: 0 0 190px;
    line-height: 34px;
    font-size: 15px;
    padding: 0 8px;
    min-width: unset;
    letter-spacing: unset;
}

.offscreen-panel .panel .panel-header .cart-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.offscreen-panel .panel-header .sign-in-title {
    font-size: 18px;
    font-weight: 500;
}

table.woocommerce-table--order-downloads tbody .download-fil e,
table.my_account_orders tbody .woocommerce-orders-table__cell-order-actions .woocommerce-button.button {
    min-width: 170px;
    margin: 4px 0 0 4px;
}

table.woocommerce-table--order-downloads tbody td,
table.my_account_orders tbody td {
    padding: 17px 10px;
}

table.woocommerce-table--order-downloads thead th,
table.my_account_orders thead th {
    padding: 10px;
}

table.woocommerce-table--order-downloads tbody td:first-child,
table.my_account_orders tbody td:first-child,
table.woocommerce-table--order-downloads thead th:first-child,
table.my_account_orders thead th:first-child {
    padding-left: 0;
}

table.my_account_orders tbody .woocommerce-orders-table__cell-order-actions {
    padding: 17px 0;
}

.salesdrive-button-holder_open .salesdrive-brand {
    visibility: hidden !important;
    display: none !important;
}

.eb-scrollbarcnt .scrollbar,
.eb-scrollbarcnt-short .scrollbar {
    z-index: 10;
}

.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--wishlist .counter.wishlist-counter {
    display: none !important;
}

.woocommerce form .form-row .required {
    text-decoration: none;
    border-bottom: none;
}

.woocommerce-archive .guaven_woos_suggestion {
    position: fixed;
}

.footer-items .currency.list-dropdown ul {
    bottom: 32px;
}

.mobile-menu-panel .list-dropdown ul {
    bottom: 36px;
}

.guaven_woos_suggestion {
    box-shadow: 2px 3px 18px 0 rgba(0, 0, 0, 0.12);
}

.woocommerce-account-login .login-tabs-nav {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.woocommerce-account-login form.lost_reset_password .form-row {
    padding: 0;
}

.woocommerce-password-strength {
    text-align: left;
}

.woocommerce-account-login .login-tabs-nav .tab-nav {
    margin-right: 0;
}

.rules-area ol {
    list-style: none;
    counter-reset: li;
    padding-left: 20px;
    margin-top: 14px;
}

.rules-area ul {
    margin-top: 10px;
}

.rules-area ol li {
    position: relative;
    margin-bottom: 10px;
}

.rules-area ol li::before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    position: absolute;
    left: -2em;
}

.rules-area ul li::before {
    display: none;
}

.rules-area ol.rules-list li::before {
    font-weight: bold;
}

.rules-area ol.rules-list li ol li::before {
    font-weight: normal;
}

.swiper-tabs-container ul.products li.product .variations_form .variations {
    display: inline-table;
}

.swiper-tabs-container ul.products li.product .stock.out-of-stock {
    margin: 0;
    padding: 0 10px;
    height: 103px;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

#custom-chat-menu {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;
    z-index: 16777001;
    transition: all 0.3s;
}

#custom-chat-menu .menu-button {
    padding: 0;
    position: relative;
    box-sizing: border-box;
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px -1px 48.9px 0px rgba(0, 0, 0, 0.1);
    outline: 2px solid;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

#custom-chat-menu .menu-button svg {
    max-width: 100%;
    width: 20px;
    height: 20px;
}

#custom-chat-menu .menu-button.call-button {
    background-color: #24a235;
    outline-color: rgba(36, 162, 53, 0.2);
}

#custom-chat-menu .menu-button.chat-button {
    background-color: #ec5d2a;
    outline-color: rgba(236, 93, 42, 0.19);
}

#custom-chat-menu .menu-button.insta-button {
    outline: none;
    background: linear-gradient(
        315deg,
        #fbe18a 0.96%,
        #fcbb45 21.96%,
        #f75274 38.96%,
        #d53692 52.96%,
        #8f39ce 74.96%,
        #5b4fe9 100.96%
    );
}

#custom-chat-menu .menu-button.insta-button::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        315deg,
        rgba(251, 225, 138, 0.2) 0.96%,
        rgba(252, 187, 69, 0.2) 21.96%,
        rgba(247, 82, 116, 0.2) 38.96%,
        rgba(213, 54, 146, 0.2) 52.96%,
        rgba(143, 57, 206, 0.2) 74.96%,
        rgba(91, 79, 233, 0.2) 100.96%
    );
    border-radius: 50%;
    z-index: -1;
}

#custom-chat-menu .menu-button.tg-button {
    background-color: #50a3dd;
    outline-color: rgba(80, 163, 221, 0.2);
}

#custom-chat-menu .menu-button.viber-button {
    background-color: #6e65ea;
    outline-color: rgba(110, 101, 234, 0.2);
}

#custom-chat-menu.expanded .menu-button {
    display: flex;
}

#toggle-button {
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 9px 0 0 0;
    padding: 0;
    border: 1px solid #ec5d2a;
    background-color: #ec5d2a;
    position: relative;
    transition: all 0.5s;
    animation: fadeInUp 0.2s;
}

#toggle-button::after {
    content: "";
    position: absolute;
    display: block;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 50%;
    background-color: rgba(236, 93, 42, 0.08);
    transition: all 0.3s;
    z-index: -1;
    opacity: 1;
}

#toggle-button.expanded {
    background-color: #ffffff;
    outline: transparent;
    border: 1px solid #00000096;
}

#toggle-button.mobile-hidden {
    display: none;
}

#toggle-button.mask::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
}

#toggle-button.expanded::after {
    opacity: 0;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
}

@font-face {
    font-family: Kapsula;
    src:
        url("../fonts/KapsulaRegular.woff") format("woff"),
        url("../fonts/KapsulaRegular.ttf") format("ttf");
    font-display: swap;
}

.font-kapsula {
    font-size: 1.3em;
    font-family: "Kapsula", "Montserrat", sans-serif;
}

.buy-in-one-click-button {
    min-height: 48px;
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    padding: 0 8px;
    color: #161616;
    background-color: #ffffff;
    white-space: nowrap;
}

@media (hover: hover) {
    .buy-in-one-click-button:hover {
        background-color: #ececec;
    }
}

.site-branding .logo .kapsula-logo,
.textwidget .kapsula-logo:not(span) {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-family: Kapsula;
    font-size: 3.2em;
    margin: 0;
    line-height: 1;
}

.textwidget span.kapsula-logo {
    font-size: 1.4em;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-family: Kapsula;
    margin: 0;
    vertical-align: -0.11em;
    line-height: 1;
}

.footer-main span.kapsula-logo {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-family: Kapsula;
    font-size: 17px;
    margin: 0 0 0 2px;
    line-height: 1;
}

.mobile-menu-panel .panel {
    width: 100%;
}

.mobile-menu-panel .header-mobile {
    display: block;
}

.mobile-menu-hamburger .currency {
    display: none;
}

.header-search.header-mobile-search {
    position: absolute;
    left: 55px;
}

.quick-buy-panel .panel .panel-header .button-close {
    position: unset;
    top: unset;
    right: unset;
}

.quick-buy-panel .panel .panel-content:not(.form-wrapper) {
    padding: 36px !important;
    border-bottom: 1px solid #eeeeee;
    flex: unset !important;
}

.quick-buy-panel .panel .panel-content.form-wrapper {
    padding: 26px 36px !important;
    flex: unset !important;
}

.quick-buy-panel .product-summary-box .product-price {
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    margin: 0 0 5px;
    display: block;
}

.quick-buy-panel .product-summary-box .product-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 5px;
    text-align: left;
    display: block;
}

.quick-buy-panel .product-summary-box .product-image {
    max-width: 97px;
    width: 100%;
    min-height: 124px;
}

.quick-buy-panel .product-summary-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.quick-buy-panel .panel .panel-header {
    height: 90px;
    box-sizing: border-box;
    padding: 15px 36px !important;
    position: relative;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.quick-buy-panel .panel-header .buy-in-one-click-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 60px;
    text-transform: uppercase;
}

.quick-buy-number-label {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    color: #0b0f14cc;
}

input.quick-buy-number-input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 12px;
    width: 100%;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    background-color: #f6f6f6;
    border-radius: 6px;
    border: 1px solid transparent;
}

.iti--fullscreen-popup.iti--container {
    z-index: 9999;
}

.iti__country-container .iti__search-input,
.iti--container .iti__search-input {
    padding-left: 30px;
}

.iti__search-input-wrapper .iti__search-input {
    font-size: 16px;
}

.offscreen-panel .panel-content.quick-buy-form-wrapper {
    overflow: visible;
}

#quick-buy-form .quick-buy-number-input:focus {
    border: 1px solid #636363 !important;
    background-color: white;
}

.quick-buy-number-input::placeholder {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
}

.quick-buy-button {
    width: 100%;
}

.quick-buy-panel select {
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    max-width: 190px;
    margin-top: 5px;
    background-color: #ffffff !important;
    border: 1px solid #bbbaba !important;
    border-radius: 4px !important;
    padding: 7px 23px 10px 13px !important;
    font-weight: 500;
    font-size: 14px;
    height: 37px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-buy-panel-success {
    display: none !important;
}

.quick-buy-panel-success.active {
    display: block !important;
}

.quick-buy-panel-success.active .quick-buy-panel {
    display: none !important;
}

.quick-buy-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.quick-buy-success .thanks-for-order-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 60px;
    text-align: center;
    margin: 20px 0 0 0;
}

.quick-buy-success p {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    max-width: 362px;
    width: 100%;
    margin: 0 auto;
}

.quick-buy-success p.success-number {
    font-weight: 600;
    line-height: 60px;
}

.quick-buy-panel .panel .panel-content:has(.quick-buy-success) {
    padding: 100px 36px !important;
    border-bottom: none !important;
}

.button-container {
    display: inline-block;
    position: relative;
    text-align: center;
    cursor: pointer;
    width: 100%;
    min-width: unset !important;
    height: 60px;
    transition: background 0.3s;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 60px !important;
    text-transform: uppercase;
    margin-bottom: 24px;
}

#quick-buy-form-cart {
    display: none;
    align-items: center;
    justify-content: space-between;
    border: 1px solid black;
    padding: 6px 8px 6px 20px;
    height: 60px;
    width: 100%;
    margin-bottom: 24px;
}

#quick-buy-form-cart input {
    border: none;
    outline: none;
    flex-grow: 1;
}

#quick-buy-form-cart .quick-buy-button-cart {
    background: #ff5000;
    color: white;
    border: none;
    text-transform: uppercase;
    height: 48px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    max-width: 155px;
    width: 100%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    #quick-buy-form-cart .quick-buy-button-cart:hover {
        background: #161619;
        color: white;
    }
}

#formContainer .phone-error-message {
    position: absolute;
    bottom: 15px;
    left: 24px;
}

.form-row input[type="tel"]::selection {
    color: inherit;
    background-color: transparent !important;
}

#quick-buy-form-cart .quick-buy-number-input {
    margin-bottom: unset;
    background-color: transparent;
}

.quick-buy-panel-success.panel.active .panel-header .buy-in-one-click-text {
    display: none;
}

.quick-buy-panel-success.panel.active .panel-header {
    border-bottom: unset;
    padding-bottom: 0;
    justify-content: flex-end;
}

.form-container .phone-error-message {
    display: none;
}

.quick-buy-button.loading:before,
.quick-buy-button-cart.loading:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid;
    border-top-color: white;
    -webkit-animation: spin infinite 1s linear;
    animation: spin infinite 1s linear;
    flex-shrink: 0;
}

.quick-buy-button.loading,
.quick-buy-button-cart.loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.phone-error-message {
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    color: #c00c0c;
    position: absolute;
    left: 0;
    display: none;
}

#quick-buy-form {
    position: relative;
}

.quick-buy-button {
    margin-top: 30px;
}

.error404 .footer-widgets {
    display: block;
}

/*PAGE 404*/
.site-content:has(.error-404) {
    padding: 0;
}

.error404 .footer-widgets {
    display: block;
}

.container:has(.error-404) {
    width: 100%;
}

.error-404 {
    padding: 77px 24px 107px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.error-404::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    bottom: 0;
    background-color: #faf6f1;
    z-index: -1;
}

.error-404 .page-content h1 {
    font-weight: 500;
    font-size: 36px;
    line-height: 53px;
    text-align: center;
    color: #0b0f14;
    margin: 0 0 4px;
}

.error-404 .page-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #0b0f14;
    margin: 0 0 32px;
}

.error-404 .page-content .button {
    padding: 0;
    height: 54px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 192px;
    width: 100%;
    text-wrap: nowrap;
}

.error-404 .button-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.popular-categories {
    margin: 32px auto;
}

.popular-categories .swiper {
    width: 100%;
}

.popular-categories .swiper-slide {
    width: auto;
    flex-shrink: 0;
}

.popular-categories h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 15px;
}

.popular-categories .swiper-container {
    position: relative;
    overflow: hidden;
}

.popular-categories .swiper-wrapper {
    padding: 0;
}

.popular-categories .swiper-slide {
    position: relative;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    display: block;
}

.popular-categories .swiper-slide img {
    width: 100%;
    aspect-ratio: 458/520;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.popular-categories .category-overlay {
    position: absolute;
    bottom: 32px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.popular-categories .swiper-slide h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    text-wrap: nowrap;
    position: absolute;
    top: 40%;
    width: 100%;
}

.popular-categories .category-overlay .button {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 9px 0;
    background-color: transparent;
    letter-spacing: 2.8px;
    border-bottom: 2px solid #ffffff;
}

.popular-categories .swiper-button-next,
.popular-categories .swiper-button-prev {
    color: #000;
}

.popular-categories h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 42px;
    color: #161616;
    margin: 0 0 23px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.popular-header h2 {
    margin: 0;
}

.navigation-box {
    display: flex;
    gap: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 56px;
    height: 56px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.swiper-button-prev svg {
    rotate: 180deg;
}

.swiper-button-next.active,
.swiper-button-prev.active {
    background-color: #f5f5f5;
}

.error404 .site-footer.light {
    border-top: 1px solid #e3e7e8;
}

.error404 .footer-main .divider {
    display: block;
}

.product-quickview .buy-in-one-click-button {
    display: none !important;
}

.recommended-products__title {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.recommended-products__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 8px 71px 13px 0;
    position: relative;
}

.recommended-products__count {
    font-weight: 400;
    font-size: 11.81px;
    line-height: 16px;
    text-align: right;
    color: #697077;
}

.recommended-products__icon-arrow {
    width: 14px;
    height: 14px;
    display: flex;
    background-image: url("../img/recommended-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommended-products__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    position: absolute;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    right: 0;
}

.recommended-products__arrows .recommended-products__icon-arrow:nth-child(2) {
    transform: rotate(180deg);
}

.product-card__image {
    position: relative;
}

.product-card__image img:not(.product-card__cart-icon) {
    aspect-ratio: 170/210;
    width: 100%;
    height: auto;
}

.recommended-products {
    overscroll-behavior: contain;
}

.recommended-products__item {
    padding: 0 !important;
    height: auto !important;
}

.roll-up__recommended-products__pagination {
    width: 100% !important;
    margin-top: 10px;
    display: flex;
}

/*skeleton loader*/
.swiper-wrapper:has(.skeleton-slide) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.skeleton-slide {
    padding: 8px;
    box-sizing: border-box;
}

.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.skeleton-image {
    width: 100%;
    height: 120px;
    margin-bottom: 8px;
}

.skeleton-title {
    width: 80%;
    height: 20px;
    margin-bottom: 8px;
}

.skeleton-price {
    width: 50%;
    height: 16px;
}

.cart-panel .panel-header {
    padding: 16px 26px 24px;
}

.cart-panel .button-close {
    top: 17px;
    right: 24px;
}

.cart-panel .panel-content,
.cart-modal .panel-content {
    padding: 8px 0 0;
    overflow-x: hidden;
}

.cart-panel .swiper-container {
    margin-right: -26px;
}

.cart-modal .swiper-container {
    margin-right: -16px;
}

.cart-panel .widget_shopping_cart_content .cart_list,
.cart-modal .widget_shopping_cart_content .cart_list {
    padding: 0 26px 0;
}

.cart-panel .widget_shopping_cart_content .cart_list {
    list-style: none;
}

.cart-panel .product-card__cart-action,
.cart-modal .product-card__cart-action {
    position: absolute;
    display: flex;
    inset: auto 10px 10px auto;
}

.cart-panel .product-card__cart-action .woocommerce-variation.single_variation,
.cart-modal .product-card__cart-action .woocommerce-variation.single_variation {
    display: none !important;
}

.cart-panel .add-to-cart,
.cart-modal .add-to-cart {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #010101;
    position: relative;
}

.cart-panel .add-to-cart.loading .product-card__cart-icon,
.cart-modal .add-to-cart.loading .product-card__cart-icon {
    opacity: 0;
}

.cart-panel .add-to-cart.loading::after,
.cart-modal .add-to-cart.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -12px 0 0 -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

.cart-panel .product-card__content,
.cart-modal .product-card__content {
    padding: 0 4px;
}

.product-card__content-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin: 8px 0 4px;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 4px;
}

.cart-panel .product-card__price,
.cart-modal .product-card__price {
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    color: #161619;
    text-wrap: nowrap;
    margin: 0;
}

.cart-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.cart-loader::after {
    content: "";
    width: 60px;
    height: 60px;
    margin-left: 10px;
    border: 7px solid #161619;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1001;
}

.cart-loader.with-products {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background-color: white;
    z-index: 1000;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-panel .product-card__brand,
.cart-modal .product-card__brand {
    font-weight: 600;
    font-size: 12px;
    margin: 0;
    line-height: 16px;
    max-width: 100px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.cart-panel .product-card__title,
.cart-panel .product-card__title a,
.cart-modal .product-card__title,
.cart-modal .product-card__title a {
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    text-align: left;
    margin: 0;
    color: #3b444f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.cart-panel .recommended-products__pagination,
.cart-modal .recommended-products__pagination {
    margin-top: 13px;
    text-align: left;
    margin-bottom: 31px;
    width: 100% !important;
}

.cart-panel .swiper-pagination-bullet,
.cart-modal .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #cdcfd0;
    opacity: 0.4;
    margin: 0 15px 0 0;
    border-radius: 50%;
    transition: all 0.3s;
    border: none;
}

.cart-panel .swiper-pagination-bullet-active,
.cart-modal .swiper-pagination-bullet-active {
    background-color: #161619;
    opacity: 1;
}

.cart-panel .panel .mini-cart-fixed {
    z-index: 2;
    border-top: 1px solid #eeeeee;
    box-shadow: 0 -1px 11.7px 0 #0000000d;
    padding: 16px 24px;
}

.cart-panel .panel .mini-cart-promo {
    margin: 0 -24px 8px;
    padding-right: 24px;
    padding-left: 24px;
}

.cart-panel .woocommerce-mini-cart-item__qty span.label {
    display: none;
}

.cart-panel .woocommerce-mini-cart-item__qty {
    display: flex;
    flex-direction: column-reverse;
    gap: 9px;
}

.cart-panel .woocommerce-mini-cart-item__qty span.price {
    padding-top: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
}

.cart-panel .woocommerce-mini-cart-item__name,
.cart-panel .woocommerce-mini-cart-item__name a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    padding-right: 0 !important;
    gap: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    min-height: 49px;
    margin-bottom: 0;
}

.cart-panel .woocommerce-mini-cart-item__name a {
    align-items: center;
    padding-bottom: 4px;
}

.cart-panel .add-to-favorites,
.cart-panel .remove.remove_from_cart_button {
    position: unset !important;
}

.cart-panel .woocommerce-mini-cart-item__qty select.pa_size-select {
    border: 1px solid #dde1e6;
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
}

.cart-panel .woocommerce-mini-cart__action-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
}

.cart-panel .widget_shopping_cart_content .total,
.cart-panel .widget_shopping_cart_content .total strong {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 100%;
}

.cart-panel .remove-icon {
    width: 15px;
    height: 17px;
    margin-left: 6px;
}

.cart-panel .remove.remove_from_cart_button {
    padding-top: 2px;
}

.cart-panel .woocommerce-mini-cart-item__summary .add-to-favorites .button {
    width: 30px;
    text-align: center;
}

.cart-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 1300;
    pointer-events: none;
    transition: visibility 0.3s ease;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
}

.cart-modal .swiper-container,
.cart-panel .swiper-container {
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.cart-panel .panel-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.cart-modal.active {
    display: flex !important;
    align-items: flex-end;
    pointer-events: auto;
    visibility: visible;
}

.cart-panel .product-card__image:has(.product-card__cart-icon--in-cart) img:not(.product-card__cart-icon),
.cart-modal .product-card__image:has(.product-card__cart-icon--in-cart) img:not(.product-card__cart-icon) {
    opacity: 0.6;
}

.cart-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #161619;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.active .cart-modal__overlay {
    opacity: 0.5;
}

.cart-modal__content {
    width: 100%;
    background-color: #fdfdfd;
    border-radius: 12px 12px 0 0;
    padding: 21px 16px 18px;
    position: relative;
    z-index: 10;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.cart-modal.active .cart-modal__content {
    transform: translateY(0);
}

.cart-modal__handle {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 60px;
    background-color: #0b1215;
    opacity: 0.8;
}

.cart-modal__content .button {
    width: 100%;
    background-color: #1b1a1a;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    min-height: 49px;
    margin-bottom: 18px;
}

.cart-modal__title {
    font-weight: 700;
    font-size: 12px;
    line-height: 25px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    position: relative;
    margin: 0 0 16px;
}

.cart-modal__thumbnail {
    width: 86px;
    height: 116px;
    object-fit: cover;
    aspect-ratio: 86/116;
    flex-shrink: 0;
    display: flex;
}

.cart-modal__product {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

body.cart-panel-opened {
    overflow: hidden !important;
}

@media (pointer: fine) and (hover: hover) {
    body.cart-panel-opened {
        padding-right: 15px;
    }
}

.cart-modal__details-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 5px;
    text-align: left;
}

.cart-modal__price {
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    margin: 0;
}

.cart-modal__title::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("../img/added-icon.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.unavailable-cart-notice {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 8px;
    background-color: #fcf8eb;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    margin: 0 26px 22px;
}

.unavailable-cart-notice svg {
    flex-shrink: 0;
}

body .cart-panel .widget_shopping_cart_content .woocommerce-mini-cart-item__name {
    flex-direction: column;
    font-weight: 400;
    font-size: 14px;
    gap: 0;
    max-width: calc(100% - 60px);
    width: 100%;
    position: unset;
    min-height: unset;
    margin-bottom: 4px;
}

body
    .cart-panel
    .widget_shopping_cart_content
    .woocommerce-mini-cart-item__name
    .woocommerce-mini-cart__action-wrapper {
    position: absolute;
    right: 0;
}

.unavailable-item-message {
    font-weight: 400;
    font-size: 12px;
    color: #ff5000;
    margin-bottom: 3px;
}

.widget_shopping_cart_content .woocommerce-mini-cart-item__summary {
    position: relative;
}

body .cart-panel .woocommerce-mini-cart-item__name a:last-child {
    display: flex;
    min-width: unset;
    max-width: unset;
}

.unavailable-item-message-after-checkout {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff9e2;
    top: -36px;
    text-align: center;
    padding: 8px;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease-out forwards;
    z-index: -1;
}

.woocommerce-mini-cart-item.mini_cart_item.unavailable-item .woocommerce-mini-cart-item__thumbnail {
    opacity: 0.4;
}

.woocommerce-mini-cart-item.mini_cart_item.unavailable-item .svg-icon.icon-plus.size-normal.qty-button.increase,
.woocommerce-mini-cart-item.mini_cart_item.unavailable-item .svg-icon.icon-minus.size-normal.qty-button.decrease {
    opacity: 0.4;
    pointer-events: none;
}

body .cart-panel .button.checkout.wc-forward.loading,
body .cart-panel .button-container.button.alt.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

body .cart-panel .button-container.button.alt.loading {
    border: 1px solid #161619 !important;
    background-color: transparent !important;
    color: transparent !important;
}

body .cart-panel .button.checkout.wc-forward.loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -12px 0 0 -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

body .cart-panel .button-container.button.alt.loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -12px 0 0 -12px;
    border-radius: 50%;
    border: 2px solid rgba(22, 22, 25, 0.3);
    border-top-color: #161619;
    animation: spin 0.8s linear infinite;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cart-panel .product-card__cart-action form,
.cart-modal .product-card__cart-action form {
    margin-bottom: 0 !important;
}

.widget_shopping_cart_content .variation-attribute-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.widget_shopping_cart_content .quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: fit-content;
}

.widget_shopping_cart_content .quantity .qty-button {
    border: 1px solid #eeeeee;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-radius: 50%;
    color: #000000;
}

.widget_shopping_cart_content .quantity .qty-button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.widget_shopping_cart_content .quantity .input-text.qty.text {
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    color: #000000;
    pointer-events: none;
}

@media (hover: hover) {
    #custom-chat-menu .menu-button:hover {
        transform: translateX(-5px);
    }

    #toggle-button:hover {
        scale: 1.1;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: #ebebeb;
    }

    .popular-categories .swiper-slide:hover img {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }

    .error-404 .page-content .button.large:hover {
        background-color: #7f8487;
    }
}

.mega-menu-container.container-custom {
    max-width: 2000px;
    width: 100% !important;
}

.main-navigation ul.mega-menu-main li.mega-sub-menu > a {
    text-wrap: nowrap;
}

.main-navigation ul.mega-menu-main {
    justify-content: space-between;
}

#server-timing-wrapper {
    width: 1600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#server-timing-wrapper .server-timing-line {
    font-weight: 400;
    font-size: 12px;
    line-height: 24.89px;
    color: #757575;
    padding: 0 15px 12px;
    margin: 0 20px;
    width: auto;
}

.summary.entry-summary .woocommerce-variation-add-to-cart-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
}

.summary.entry-summary .woocommerce-variation-add-to-cart-wrapper._primir-deactivated {
    flex-direction: row-reverse;
}

.summary.entry-summary .woocommerce-variation-add-to-cart-wrapper .buy-in-one-click-button {
    width: 50%;
    text-wrap: nowrap;
}

.summary.entry-summary .woocommerce-variation-add-to-cart-wrapper .woocommerce-variation-add-to-cart.variations_button {
    width: 100%;
}

.summary.entry-summary
    .woocommerce-variation-add-to-cart-wrapper._primir-deactivated
    .woocommerce-variation-add-to-cart.variations_button {
    width: 50%;
}

.summary.entry-summary .woocommerce-variation-add-to-cart-custom-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary.entry-summary ._primir-deactivated .woocommerce-variation-add-to-cart-custom-buttons {
    flex: 0 1 50%;
}

.summary.entry-summary
    .woocommerce-variation-add-to-cart-wrapper
    .woocommerce-variation-add-to-cart-custom-buttons
    .buy-in-one-click-button {
    flex: 0 1 50%;
}

.summary.entry-summary
    .woocommerce-variation-add-to-cart-wrapper._primir-deactivated
    .woocommerce-variation-add-to-cart-custom-buttons
    .buy-in-one-click-button {
    flex: 1 1 auto;
}

.woocommerce-variation-add-to-cart-wrapper .single_add_to_cart_button {
    min-width: unset !important;
    max-width: unset !important;
}

.social-links-widget a {
    background-color: unset;
}

.product-summary .featured-label {
    margin-bottom: 4px;
}

li.product .featured-label {
    margin-top: 12px;
}

.featured-label {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background-color: #fdf9e5;
    border-radius: 3px;
    font-weight: 600;
    font-size: 10px;
    line-height: 19px;
    letter-spacing: 0%;
    vertical-align: middle;
    user-select: none;
    padding-right: 7px;
    padding-left: 2px;
}

.featured-label p.label {
    background-color: #c64206;
    padding: 3px;
    font-weight: 700;
    font-size: 10px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 0;
}

.featured-label p.label img {
    width: 9px;
    height: 9px;
}

.product-summary:has(.featured-label .label-wrapper) p.price {
    margin-bottom: 12px;
}

.featured-label:has(.label-wrapper) {
    background-color: #fffbeb;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 2px 6px 2px 2px;
    border-radius: 3px;
    color: #908352;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0%;
    text-transform: none;
}

.featured-label:has(.label-wrapper) p.label {
    text-transform: capitalize;
}

.featured-label:has(.label-wrapper) .images {
    display: flex;
    height: 18px;
    width: 42px;
    position: relative;
}

.featured-label:has(.label-wrapper) .images img {
    position: absolute;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.featured-label:has(.label-wrapper) .images img:nth-of-type(1) {
    left: 0;
    z-index: 1;
}

.featured-label:has(.label-wrapper) .images img:nth-of-type(2) {
    left: 12px;
    z-index: 2;
}

.featured-label:has(.label-wrapper) .images img:nth-of-type(3) {
    right: 0;
    z-index: 3;
}

.featured-label:has(.label-wrapper) .label-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.featured-label:has(.label-wrapper) .images-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.product-inner .top-placement {
    position: absolute;
    padding: 3px 8.5px;
    background-color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: -4%;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c64206;
    top: 0;
    left: 0;
}

/* TODO: Remove this after addding new pages with TOP100 label */
.featured-label:has(.label-wrapper) .images-wrapper svg,
.featured-label svg {
    display: none;
}

.list-dropdown.up ul {
    bottom: 100%;
}

@media (max-width: 600px) {
    .featured-label:not(.full-size-label) p.label {
        font-size: 8px;
    }

    .featured-label:not(.full-size-label) p.label img {
        width: 8px;
        height: 8px;
    }
}

.primir-ai-button-float {
    padding: 2px;
    overflow: hidden;
    position: relative;
    line-height: 1;
    min-height: 30px;
    box-sizing: border-box;
    width: fit-content;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    border: none;
    color: #161616;
    letter-spacing: 0.02em;
    background: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.primir-ai-button-float:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    aspect-ratio: 1;
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(
        106.19deg,
        #fda437 22.87%,
        #ff543a 32.23%,
        #fb519f 42.97%,
        #7f58ff 53.35%,
        #5bbbe1 70.53%,
        #60ebef 80.55%,
        #93de68 94.45%
    );
    animation: gradient-animation 4s linear infinite;
    animation-play-state: paused;
    z-index: 0;
    pointer-events: none;
}

.primir-ai-button-float.primir-ai-button-animate:before {
    animation-play-state: running;
}

@keyframes gradient-animation {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1.1) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) scale(1.1) rotate(360deg);
    }
}

.primir-ai-button-float span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    flex: 1 1 auto;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(
        119.21deg,
        #fdf7ef 21.8%,
        #fff9f8 32.58%,
        #fff3f8 44.94%,
        #f9f7ff 56.9%,
        #f9fdff 76.68%,
        #eafeff 88.21%,
        #f8fff4 104.22%
    );
    position: relative;
}

.primir-ai-button-float .primir-ai-button-float-small-text,
.primir-ai-button-float .primir-ai-button-float-full-text {
    pointer-events: none;
}

.primir-ai-button-float .primir-ai-button-float-small-text {
    display: none;
}

.primir-ai-button-float:disabled {
    opacity: 0.6;
    cursor: wait;
}

.product-thumbnail .primir-ai-button-float {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
}

@media (hover: hover) {
    .product-thumbnail .primir-ai-button-float:hover {
        transform: translateX(-50%) scale(1.1);
        color: #000000;
    }
}

.review-author {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    font-style: normal;
}

.review-author-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.review-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info {
    width: calc(100% - 44px);
    padding-left: 16px;
}

.review-author-info cite {
    display: block;
    margin-bottom: 2px;
}

.review-author-info time {
    font-size: 12px;
    font-weight: 300;
}

.review-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.review-rating .star .fill {
    clip-path: inset(0 100% 0 0);
}

.rating-one .star:first-child .fill {
    clip-path: inset(0 0 0 0);
}

.rating-one-half .star:first-child .fill {
    clip-path: inset(0 0 0 0);
}

.rating-one-half .star:nth-child(2) .fill {
    clip-path: inset(0 50% 0 0);
}

.rating-two .star:first-child .fill,
.rating-two .star:nth-child(2) .fill {
    clip-path: inset(0 0 0 0);
}

.rating-two-half .star:first-child .fill,
.rating-two-half .star:nth-child(2) .fill {
    clip-path: inset(0 0 0 0);
}

.rating-two-half .star:nth-child(3) .fill {
    clip-path: inset(0 50% 0 0);
}

.rating-three .star:first-child .fill,
.rating-three .star:nth-child(2) .fill,
.rating-three .star:nth-child(3) .fill {
    clip-path: inset(0 0 0 0);
}

.rating-three-half .star:first-child .fill,
.rating-three-half .star:nth-child(2) .fill,
.rating-three-half .star:nth-child(3) .fill {
    clip-path: inset(0 0 0 0);
}

.rating-three-half .star:nth-child(4) .fill {
    clip-path: inset(0 50% 0 0);
}

.rating-four .star:first-child .fill,
.rating-four .star:nth-child(2) .fill,
.rating-four .star:nth-child(3) .fill,
.rating-four .star:nth-child(4) .fill {
    clip-path: inset(0 0 0 0);
}

.rating-four-half .star:first-child .fill,
.rating-four-half .star:nth-child(2) .fill,
.rating-four-half .star:nth-child(3) .fill,
.rating-four-half .star:nth-child(4) .fill {
    clip-path: inset(0 0 0 0);
}

.rating-four-half .star:nth-child(5) .fill {
    clip-path: inset(0 50% 0 0);
}

.rating-five .star .fill {
    clip-path: inset(0 0 0 0);
}

@media screen and (max-width: 991px) and (orientation: landscape) {
    #custom-chat-menu {
        flex-direction: row-reverse;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*INSTAGRAM SECTION*/

.instagram-section {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
}

.instagram-section .title {
    margin-bottom: 0;
}

.instagram-section .description {
    margin: 0 0 35px 0;
}

.instagram-container {
    display: flex;
    flex-direction: row;
}

.instagram-container a {
    display: flex;
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
}

.instagram-box-wrapper {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.instagram-img-wrapper {
    aspect-ratio: 1/1;
    display: flex;
    width: 100%;
    height: 100%;
}

.instagram-img-wrapper a img,
.instagram-big-img-wrapper a img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    width: 100%;
    height: 100%;
}

.instagram-big-img-wrapper {
    display: flex;
    width: 40%;
}

.instagram-big-img-wrapper a {
    width: 100%;
    height: 100%;
    display: flex;
}

.instagram-column-wrapper {
    width: 20%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.instagram-section a.button-default {
    margin-top: 60px;
}

@media (hover: hover) {
    .instagram-big-img-wrapper a:hover img,
    .instagram-img-wrapper a:hover img {
        opacity: 0.7;
        -webkit-opacity: 0.7;
    }
}

@media screen and (min-width: 992px) {
    .page .page .entry-title {
        font-size: 4.5rem;
    }

    .page .page h2 {
        font-size: 3.5rem;
    }

    .page.woocommerce-checkout .page .entry-title {
        font-size: 35px;
    }
}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
    .header-right-items .header-search.icon .search-field.focused {
        top: -4px;
    }

    .header-right-items .header-search .quick-links {
        top: -28px;
    }
}

@media screen and (min-width: 1600px) {
    .main-navigation a {
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) {
    .main-navigation ul.mega-menu-main {
        min-height: 500px;
    }

    .konte-container-fluid {
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 15px;
        padding-right: 15px;
        width: auto;
    }

    #server-timing-wrapper .server-timing-line {
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1900px) {
    .main-navigation a {
        white-space: nowrap;
    }

    .logo-center .header-center-items .site-branding {
        margin: 0 14px 0 0;
    }

    .header-right-items {
        padding-left: 10px;
    }
}

@media screen and (min-width: 1600px) {
    .main-navigation a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1509px) {
    .showroom-services .img-block {
        width: calc(49% + 15px);
        margin-right: -15px;
    }
}

@media screen and (max-width: 1400px) {
    .main-navigation a {
        font-size: 12px;
    }

    .header-right-items .header-search.icon .search-field.focused {
        top: -5px;
    }

    .header-right-items .header-search .quick-links {
        top: -29px;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1600px) {
    .site-branding .logo .kapsula-logo {
        font-size: 2.2rem;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
    .site-branding .logo .kapsula-logo {
        font-size: 2rem;
    }

    .main-navigation a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1440px) {
    .header-right-items {
        padding-left: 10px;
    }
}

@media screen and (min-width: 1200px) {
    .header-left-items {
        order: 1;
    }

    .header-right-items {
        order: 1;
        flex: 0;
    }

    .header-switcher {
        white-space: nowrap;
    }
}

@media screen and (max-width: 1440px) and (min-width: 992px) {
    .woocommerce div.product .woocommerce-product-details__short-description {
        margin-bottom: 40px;
    }

    .header-contents {
        height: 90px !important;
    }

    .header-right-items .svg-icon {
        font-size: 1.1rem;
    }

    body.logged-in .header-right-items .header-account a {
        width: 16px;
        height: 16px;
    }

    .header-right-items > * {
        margin-left: 14px;
    }

    .header-right-items .header-cart {
        margin-left: 14px;
    }

    .header-account > a {
        font-size: 14px;
    }

    .header-switcher .list-dropdown .current {
        font-size: 14px;
    }

    .header-switcher .list-dropdown .current .svg-icon {
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .header-switcher .list-dropdown ul li a {
        padding: 6px 15px;
        font-size: 14px;
    }

    .counter {
        right: -2px;
        top: -2px;
    }
}

@media screen and (max-width: 1440px) {
    .nav-menu > li {
        padding: 0 8px;
    }

    .main-navigation li li a {
        font-size: 14px;
    }
}
@media screen and (min-width: 1200px) {
    .menu-opened .level-0 {
        opacity: 0.6;
    }
}
@media screen and (max-width: 1199px) {
    ul.products.swiper-wrapper {
        flex-wrap: nowrap;
    }

    .menu-block .menu {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .nav-menu > li {
        padding: 0;
    }
    .gender-switch-option {
        font-size: 0.8125rem;
    }
    .header-mobile-menu .gender-switch {
        margin: 12px 0 34px;
    }
    .nav-menu li.level-0 {
        padding: 0;
        margin: 0;
    }
    .menu-block {
        font-size: 0.875rem;
        font-weight: 600;
    }
    .nav-menu .sub-menu {
        position: fixed;
        z-index: 100;
        inset: 0;
        background-color: #fff;
        transform: translateX(100%);
        overflow: auto;
        transition: transform 0.5s;
    }
    .menu-item.level-0.opened .sub-menu {
        transform: none;
    }
    .nav-menu .sub-menu ul {
        position: static;
        opacity: 1;
        padding: 0;
        transform: none;
        pointer-events: auto;
    }

    .sub-menu-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }

    .sub-menu-back {
        cursor: pointer;
    }

    .sub-menu-back img {
        display: block;
    }

    .nav-menu li li.level-1 {
        padding: 22px 16px;
    }

    .nav-menu li li.level-1:not(.menu-item-has-children) {
        padding: 12px 16px;
    }

    .nav-menu li li.level-1:not(.nav-menu li li.level-1) {
        padding: 12px 16px;
    }

    .menu-item.level-1 > .menu-link {
        margin-top: 0;
        font-size: 0.875rem;
    }

    .menu-item.level-1:not(.menu-item-has-children) > .menu-link {
        margin-bottom: 0;
    }

    .menu-item.level-1 > .menu-link + ul {
        margin-top: 1rem;
    }

    .menu-item.level-1 > .menu-link.hidden + ul {
        margin-top: 0;
    }

    .nav-menu li li.level-2 {
        font-weight: 500;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .nav-menu li li.level-2:last-child {
        margin-bottom: 0;
    }

    .mobile-menu-controls .currency-selector {
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-common {
        padding: 24px 16px;
        margin: 24px -16px;
        border-top: 1px solid #f3f3f3;
        border-bottom: 1px solid #f3f3f3;
    }

    .mobile-menu-common ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu-control,
    .mobile-menu-common li {
        padding: 8px 0;
        text-transform: uppercase;
    }

    .mobile-menu-common li a {
        font-weight: 500;
        font-size: 0.75rem;
    }

    .menu-item-image img {
        opacity: 1;
        width: 100%;
    }

    .products-tools .products-filter.offscreen-panel .filter-widgets {
        padding-bottom: 20px;
    }

    .footer-main span.kapsula-logo {
        font-size: 23px;
    }

    .menu-item.snowflake > a:after,
    .menu-item.snowflake-black > a:after {
        font-size: 1em;
    }

    .mobile-menu-hamburger .currency {
        padding-left: 30px;
    }

    .mobile-menu-hamburger .currency .label {
        display: none;
    }

    .nav-menu .level-0.menu-item-has-children {
        display: flex;
        justify-content: space-between;
    }

    li.menu-item > a {
        position: relative;
    }

    li.menu-item > a:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -4px;
        width: 0;
        border-bottom: 1px solid;
        transition: width 0.05s;
    }

    @media (hover: hover) {
        li.menu-item:not(.new-menu):not(.snowflake):not(.snowflake-black):not(.valentine-day) > a:hover:after,
        li.menu-item:not(.new-menu):not(.snowflake):not(.snowflake-black):not(.valentine-day) > a:focus:after {
            width: 100%;
            left: 0;
        }
    }

    .level-0.menu-item-has-children:after {
        content: "";
        cursor: pointer;
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.77044 18L16 12L9.77044 6L9 6.75265L14.4481 12L9 17.2473L9.77044 18Z' fill='black' fill-opacity='0.8'/%3e%3c/svg%3e ");
        background-repeat: no-repeat;
    }

    .footer-widgets .footer-widgets-area {
        margin-bottom: 30px;
    }

    .footer-main {
        padding-top: 0;
        font-size: 18px;
    }

    .mobile-menu-panel .panel {
        width: 100%;
    }

    .mobile-menu-panel .header-mobile {
        display: block;
    }

    .mobile-menu-hamburger .currency {
        display: none;
    }

    .header-search.header-mobile-search {
        position: absolute;
        left: 55px;
    }
}

@media screen and (max-width: 991px) {
    .social-links {
        padding: 8px 0 32px 0;
    }

    .site-header .site-branding .logo svg {
        width: 130px;
        height: 35px;
    }

    .footer-items.footer-right .switchers .list-dropdown.up ul {
        bottom: 100%;
    }

    .footer-items.footer-left .custom-text {
        text-align: center;
    }

    .footer-main .footer-right > *:last-child {
        margin-right: 0;
    }

    .products-toolbar.layout-v2 .woocommerce-ordering {
        order: 0;
    }

    .contact-info-block.vc_col-sm-3 {
        width: 100%;
    }

    .konte-banner-middle.vc_hidden-sm {
        display: flex !important;
    }

    /*edit account*/
    form.edit-account .form-row {
        display: block;
    }

    form.edit-account .form-row-first,
    form.edit-account .form-row-last {
        width: auto;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
        float: none;
        margin-top: 0;
        margin-bottom: 40px;
        padding-bottom: 20px;
        padding-right: 0;
        overflow-x: scroll;
        border-bottom: 1px solid #e3e7e8;
    }

    .footer-widgets {
        font-size: 18px;
    }

    .woocommerce-MyAccount-navigation ul {
        white-space: nowrap;
        max-height: 30px;
    }

    .woocommerce-MyAccount-navigation li {
        display: inline-block;
        margin: 0 15px;
    }

    .woocommerce-MyAccount-content {
        width: 100%;
    }

    .form-row-first,
    .form-row-last {
        width: auto;
        float: none;
        padding-left: 0;
        padding-right: 0;
    }

    form.edit-account label {
        display: inline-block;
    }

    form.edit-account .input-text {
        width: 100%;
    }

    form.edit-account > .form-row > span {
        margin-left: 0;
    }

    .woocommerce-MyAccount-navigation li:first-child {
        margin-left: 0;
    }

    .woocommerce-MyAccount-navigation::-webkit-scrollbar {
        display: none;
    }

    form.edit-account .form-row-submit {
        padding-left: 0;
    }

    form.edit-account .form-row-submit .button {
        width: fit-content;
    }

    .woocommerce-address-fields .form-row-first,
    .woocommerce-address-fields .form-row {
        flex-direction: column;
        width: 100%;
    }

    .woocommerce-address-fields label {
        flex-basis: unset;
    }

    .woocommerce-address-fields .form-row-last {
        width: 100%;
    }

    .woocommerce-address-fields .button {
        margin: 40px auto 0 auto;
        width: fit-content;
    }

    .guaven_woos_suggestion,
    .search-modal .quick-links {
        display: none !important;
    }

    .menu-button:focus {
        transform: none !important;
    }

    .site-branding .logo .kapsula-logo,
    .textwidget .kapsula-logo:not(span) {
        font-size: 2.8em;
    }

    .navigation-box {
        padding-right: 20px;
    }

    .error-404 {
        padding: 40px 24px 50px;
    }

    .container:has(.error-404) {
        width: auto;
        margin: 0;
        padding: 0;
    }

    .popular-categories {
        padding: 0 20px;
    }

    .coupon-accordion-trigger {
        font-size: 14px;
    }

    .order-pay-form .shop_table {
        width: 100%;
        max-width: 100%;
        table-layout: auto;
        border-collapse: collapse;
    }

    .order-pay-form .shop_table td,
    .order-pay-form .shop_table th {
        word-wrap: break-word;
        white-space: normal;
    }

    .order-pay-form thead tr th:nth-child(2),
    .order-pay-form tbody tr td:nth-child(2) {
        padding-left: 10px;
        padding-right: 10px;
    }

    .order-pay-form tfoot tr th {
        padding-right: 10px;
    }

    .order-pay-form tfoot tr td {
        padding-left: 10px;
    }

    /*INSTAGRAM SECTION*/
    .instagram-section .description {
        font-size: 18px;
        margin-bottom: 30px;
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .summary.entry-summary .woocommerce-variation-add-to-cart-custom-buttons {
        flex: 0 1 50%;
    }

    .summary.entry-summary
        .woocommerce-variation-add-to-cart-wrapper
        .woocommerce-variation-add-to-cart.variations_button {
        flex: 0 1 50%;
        width: 50%;
    }

    .summary.entry-summary .woocommerce-variation-add-to-cart-wrapper {
        flex-direction: row-reverse;
    }

    .summary.entry-summary
        .woocommerce-variation-add-to-cart-wrapper
        .woocommerce-variation-add-to-cart-custom-buttons
        .buy-in-one-click-button {
        flex: 1 1 auto;
    }

    .primir-ai-button-float .primir-ai-button-float-small-text {
        display: flex;
    }

    .primir-ai-button-float .primir-ai-button-float-full-text {
        display: none;
    }

    .menu-item.valentine-day > a:after {
        min-width: 21px;
        max-width: 21px;
        height: 21px;
    }

    .contact-info-block.vc_col-sm-3 {
        width: 100%;
    }

    .textwidget span.kapsula-logo {
        font-size: 1.2em;
    }

    .navigation-box {
        display: none;
    }

    .popular-categories {
        padding: 0 0 0 10px;
    }

    .error-404 .page-content h1 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .error-404 .page-content p {
        font-size: 16px;
        line-height: 24px;
        max-width: 342px;
        margin: 0 auto 32px;
    }

    .error-404 .page-content .button {
        height: 44px;
        max-width: 163px;
    }

    .error-404 img {
        width: 120px;
        height: 52px;
    }

    .popular-categories h2 {
        font-size: 20px;
        line-height: 42px;
    }

    #server-timing-wrapper .server-timing-line {
        margin-left: 0;
        margin-right: 0;
    }

    #quick-buy-form-cart {
        height: 42px;
        padding: 3px 3px 3px 12px;
    }

    #quick-buy-form-cart .quick-buy-button-cart {
        height: 36px;
        width: auto;
        padding: 0 16px;
    }

    .cart-panel .offscreen-panel .panel .panel-header .sign-in-title,
    .cart-panel .offscreen-panel .panel .panel-header .cart-title {
        line-height: 1 !important;
    }

    .button-container {
        height: 42px !important;
        line-height: 42px !important;
        font-size: 12px !important;
    }

    .button-container.button {
        width: 100%;
    }

    .recommended-products__arrows {
        display: none;
    }

    .recommended-products__head {
        padding: 8px 0 13px 0;
    }

    .cart-panel .panel-header {
        padding: 16px;
    }

    .unavailable-cart-notice {
        margin: 0 16px 22px;
    }

    @supports (contain-intrinsic-size: 100px) {
        .panel .mini-cart-fixed {
            position: fixed;
            left: 0;
            right: 0;
        }

        .cart-panel .widget_shopping_cart_content .cart_list {
            padding-bottom: 200px;
        }
    }

    .cart-panel .hamburger-menu .hamburger-box {
        width: 16px;
    }

    .cart-panel .panel .mini-cart-fixed {
        padding: 16px;
        border-radius: 8px 8px 0 0;
    }

    .cart-panel .panel .mini-cart-promo {
        margin: 0 -16px 8px;
    }

    .cart-panel .swiper-container {
        margin-right: -16px;
    }

    .cart-panel .widget_shopping_cart_content .total {
        font-weight: 500;
        font-size: 16px;
    }

    #formContainer .phone-error-message {
        left: 16px;
    }

    .summary.entry-summary .woocommerce-variation-add-to-cart-wrapper {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        padding: 12px;
        border-top: 1px solid #eeeeee;
        z-index: 10;
        background-color: #ffffff;
        gap: 12px;
        flex-direction: row-reverse;
    }

    .summary.entry-summary .woocommerce-variation-add-to-cart-custom-buttons {
        gap: 8px;
    }

    .woocommerce-variation-add-to-cart-wrapper .buy-in-one-click-button,
    .woocommerce-variation-add-to-cart-wrapper
        .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled
        .single_add_to_cart_button {
        font-size: 12px;
    }

    .single-product .site-footer.light {
        padding-bottom: 100px;
    }

    .product-template-default.single.single-product #custom-chat-menu {
        bottom: 125px;
    }

    .woocommerce-variation-add-to-cart-custom-buttons {
        flex: 0 1 50%;
    }

    .woocommerce-variation-add-to-cart-custom-buttons .primir-ai-button {
        display: none;
    }

    .summary.entry-summary
        .woocommerce-variation-add-to-cart-wrapper
        .woocommerce-variation-add-to-cart.variations_button {
        flex: 0 1 50%;
    }

    .summary.entry-summary
        .woocommerce-variation-add-to-cart-wrapper
        .woocommerce-variation-add-to-cart-custom-buttons
        .buy-in-one-click-button {
        flex: 1 1 auto;
        width: 100%;
    }

    .product-inner .top-placement {
        font-size: 12px;
        line-height: 19px;
        text-align: center;
        text-transform: uppercase;
    }

    /*INSTAGRAM SECTION*/
    .instagram-section .button {
        width: calc(100% - 40px);
    }

    .instagram-box-wrapper,
    .instagram-column-wrapper {
        display: none;
    }

    .instagram-big-img-wrapper,
    .instagram-big-img-wrapper a img {
        width: 100%;
    }

    .instagram-big-img-wrapper a:hover img,
    .instagram-img-wrapper a:hover img {
        opacity: 1;
        -webkit-opacity: 1;
    }
}

@media (hover: none) and (pointer: coarse) {
    .eb-scrollbarcnt .viewport {
        overflow: auto;
    }

    .eb-scrollbarcnt .overview {
        top: 0 !important;
    }

    .eb-scrollbarcnt .scrollbar {
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .contact-info-block.vc_col-sm-3 {
        width: 100%;
    }

    .page .page .entry-title {
        font-size: 2.89rem;
    }

    .page .page h2 {
        font-size: 2rem;
    }

    .panel .shipping {
        margin-bottom: 10px;
    }

    .panel .mini-cart-promo .coupon {
        gap: 6px;
    }

    .panel .shipping ul.woocommerce-shipping-methods {
        gap: 2px 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .panel .shipping ul.woocommerce-shipping-methods li {
        margin-bottom: 0;
    }

    .panel .shipping ul.woocommerce-shipping-methods label {
        font-size: 12px;
    }

    .widget_shopping_cart_content .woocommerce-mini-cart-item__thumbnail {
        padding-right: 16px;
    }

    .panel .mini-cart-fixed {
        padding-top: 12px;
    }

    .woocommerce-mini-cart-item__qty select.pa_size-select {
        width: 80px;
    }

    .widget_shopping_cart_content .buttons .button,
    body .cart-panel .widget_shopping_cart_content .buttons .button.checkout {
        min-height: 40px;
    }

    .jobs-video {
        margin: -20px;
        width: calc(100% + 40px);
    }

    .mobile-br {
        display: block;
    }

    .mobile-menu-hamburger .currency {
        display: none;
    }

    .products-toolbar.layout-v2 .woocommerce-ordering {
        order: 0;
    }

    .products-toolbar.layout-v2 .woocommerce-result-count {
        padding: 5px 0 0;
    }

    .products-tools {
        padding: 10px 0 28px;
    }

    .products-toolbar.layout-v2 .woocommerce-result-count {
        padding: 5px 0 0;
    }

    .site-content {
        padding-top: 0;
    }

    .site-branding .logo img {
        width: 130px;
    }

    .slick-slide a {
        margin: 0;
    }

    .konte-container,
    .konte-container-fluid {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-widgets,
    .footer-main {
        font-size: 18px;
    }

    .footer-main {
        padding-bottom: 0;
    }

    .site-footer.light {
        border-top: none;
    }

    .footer-widgets .widget {
        margin-bottom: 30px;
    }

    .footer-widgets .footer-widgets-area {
        margin-bottom: 15px;
    }

    .footer-widgets .footer-widgets-area-1 {
        position: relative;
    }

    .footer-widgets .footer-widgets-area-1:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        border-bottom: 1px solid #eee;
    }

    .footer-widgets-area-2,
    .footer-widgets-area-3,
    .footer-widgets-area-4 {
        padding-top: 15px;
    }

    .textwidget {
        font-size: 18px;
        line-height: 24px;
    }

    .footer-widgets-area-4 .widget_text {
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .footer-widgets-area-4 .widget_text p {
        padding: 18px 0;
        margin: 0;
    }

    .footer-main.site-info hr {
        display: none;
    }

    .footer-main .footer-right {
        padding: 13px 0;
        flex-wrap: wrap;
    }

    .footer-main .footer-right .list-dropdown .current {
        font-weight: normal;
    }

    .footer-main .footer-right .list-dropdown .current:before {
        content: none;
    }

    .footer-main .footer-left {
        border-top: 1px solid #eee;
        padding: 19px 0;
    }

    .footer-items.footer-right .switchers {
        width: 100%;
    }

    .footer-items.footer-right .custom-text {
        font-size: 18px;
        font-weight: 400;
    }

    body .cart-panel .widget_shopping_cart_content .woocommerce-mini-cart-item__thumbnail img {
        width: 110px;
    }

    body .cart-panel .widget_shopping_cart_content .woocommerce-mini-cart-item__name {
        font-size: 16px;
        line-height: 22px;
    }

    body .cart-panel .widget_shopping_cart_content .woocommerce-mini-cart-item__qty {
        width: 100%;
        font-size: 14px;
    }

    body .widget_shopping_cart_content .woocommerce-mini-cart-item__qty .label {
        margin-right: 5px;
        font-size: 15px;
    }

    .widget_shopping_cart_content .woocommerce-mini-cart-item__qty select {
        font-size: 15px;
    }

    .panel .shipping > div:first-child {
        font-size: 12px;
    }

    .cart-panel .in-showroom {
        min-width: 130px;
        padding: 0 10px;
    }

    body .cart-panel .widget_shopping_cart_content .total {
        font-size: 15px;
    }

    .konte-promotion.layout-inline .konte-promotion__text {
        display: inline;
    }

    .konte-promotion.layout-inline .konte-promotion__text br {
        display: block;
    }

    .vc_section.founders-section {
        padding-left: 0 !important;
        padding-top: 65vw !important;
        right: -5px !important;
        width: 100vw !important;
        background-size: contain !important;
        background-position: top center !important;
    }

    .woocommerce-message {
        padding: 24px 48px;
    }

    .woocommerce-message-inner {
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .woocommerce-message .error-message li {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        justify-content: flex-start;
        align-items: center;
    }

    .panel .mini-cart-promo .coupon button {
        flex: 0 0 auto;
        width: fit-content;
    }

    .offscreen-panel .panel .panel-header .sign-in-title,
    .offscreen-panel .panel .panel-header .cart-title {
        font-size: 15px;
    }

    .panel .hamburger-menu.active .hamburger-inner {
        transform: rotate(45deg) scale(0.9);
    }

    table.woocommerce-table--order-downloads tbody .download-file,
    table.my_account_orders tbody .woocommerce-orders-table__cell-order-actions {
        display: block;
    }

    table.woocommerce-table--order-downloads tbody td,
    table.my_account_orders tbody td {
        padding: 10px 0;
    }

    table.woocommerce-table--order-downloads tbody .download-file,
    table.my_account_orders tbody .woocommerce-orders-table__cell-order-actions .woocommerce-button.button {
        min-width: unset;
        margin: 0 0 0 8px;
    }

    .konte-banner-middle.vc_hidden-sm {
        display: flex !important;
    }

    .header-search.header-mobile-search {
        position: absolute;
        left: 35px;
    }

    .quick-buy-panel-create.panel,
    .quick-buy-panel-success.panel.active {
        height: fit-content;
        top: unset !important;
        bottom: 0 !important;
        width: 100%;
    }

    .quick-buy-panel,
    .quick-buy-panel.offscreen-panel .backdrop {
        border-radius: 8px 8px 0 0;
        position: fixed !important;
    }

    .offscreen-panel .panel .panel-header .sign-in-title,
    .offscreen-panel .panel .panel-header .cart-title {
        font-weight: 600;
        font-size: 14px;
    }

    .quick-buy-panel .panel .panel-header {
        height: 60px;
        padding: 15px 16px !important;
    }

    .quick-buy-panel .panel .panel-content:not(.form-wrapper) {
        padding: 17px 16px !important;
    }

    .quick-buy-panel .panel .panel-content.form-wrapper {
        padding: 36px 16px !important;
    }

    .quick-buy-panel select {
        font-size: 14px !important;
        height: 37px;
    }
}

@media screen and (max-width: 560px) {
    .search-field {
        padding: 20px 16px;
    }
    .search-popular-links {
        flex-direction: column;
    }
    .search-popular-links-item,
    .kapsula-search-results:not(:empty) {
        padding: 16px;
    }
    .search-bestsellers-block .search-title {
        padding: 10px 16px;
    }
    .search-popular-links-item .menu {
        gap: 0;
    }
    .search-popular-links-item .menu li {
        padding: 4px 0;
    }
    .woocommerce div.product .variations select,
    .quick-buy-panel select {
        height: 43px;
        font-size: 16px !important;
        padding: 0 38px 0 12px !important;
        background-position: calc(100% - 12px) center;
        background-size: 14px auto;
    }

    .quick-buy-panel-success.panel.active .panel-content {
        padding: 0 16px 37px !important;
    }

    .quick-buy-panel-success.panel.active .panel-header {
        padding: 15px 16px 0 16px !important;
    }

    .footer-main span.kapsula-logo {
        font-size: 22px;
    }

    .woocommerce div.product .single_add_to_cart_button,
    .quick-buy-button {
        font-size: 13px;
    }

    .mobile-header-icons > * {
        margin-left: 15px;
    }

    .header-search.header-mobile-search {
        position: absolute;
        left: 35px;
    }

    .order-pay-form .shop_table * {
        font-size: 16px !important;
    }

    .woocommerce-order-pay .shop_table .product-total,
    .woocommerce-order-pay .shop_table .product-subtotal {
        font-size: 14px !important;
    }

    ul.products li.product .product-summary .in-showroom {
        line-height: 20px;
    }

    .footer-widgets-area.col-xs-6 {
        width: 100%;
    }

    .footer-items .copyright {
        text-align: left;
        font-size: 16px;
    }

    .footer-items.footer-left .custom-text {
        text-align: left;
    }

    .footer-widgets-area-4 .widget_text p {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-main .footer-right .list-dropdown {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-items.footer-right .custom-text {
        text-align: left;
    }

    div .b24-widget-button-position-bottom-right {
        bottom: 20px;
    }

    form.edit-account .form-row > span.password-input .input-text::placeholder {
        font-size: 0.6rem;
    }

    .site-branding .logo .kapsula-logo,
    .textwidget .kapsula-logo {
        font-size: 2.4em;
    }

    .buy-in-one-click-button {
        width: 100%;
        line-height: 18px;
        font-weight: 600;
        font-size: 14px;
        padding: 0 8px;
    }

    .instagram-section {
        margin-bottom: 40px;
    }

    /*INSTAGRAM SECTION*/
    .instagram-section .description {
        font-size: 13px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 399px) {
    .page .page .entry-title {
        font-size: 2.7rem;
    }

    .page .page h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 374px) {
    #quick-buy-form-cart {
        padding: 3px;
    }
}

@media screen and (max-width: 500px) {
    .page .page .entry-title {
        font-size: 2.5rem;
    }

    .page .page h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 360px) {
    .panel .mini-cart-promo .coupon {
        flex-direction: column;
        gap: 4px;
    }

    .panel .mini-cart-promo .coupon .button {
        flex: 1 1 auto;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1600px) {
    .header-switcher .list-dropdown .current {
        font-size: 14px;
    }

    .header-right-items .svg-icon {
        font-size: 1.1rem;
    }
}

.salesdrive-brand {
    display: none;
}

.salesdrive-button-holder_open .salesdrive-brand {
    display: block;
}

.recaptcha-error {
    border: 1px solid #dd4b39;
    padding: 5px;
    display: inline-block;
}

.recaptcha-error-message {
    color: #dd4b39;
    font-size: 12px;
    padding: 4px 0;
}

.mega-menu.open {
    opacity: 1;
    transform: translate(0, 0);
    pointer-events: initial;
}

.header-center-items:hover {
    background: white;
}

@font-face {
    font-family: Webspark;
    src:
        url("../fonts/Webspark-logo-Regular.woff2") format("woff2"),
        url("../fonts/Webspark-logo-Regular.woff") format("woff");
    font-display: swap;
}

.webspark-logo {
    font-size: 1em;
    font-weight: 400;
    color: #000;
}

.webspark-logo a {
    color: #000;
    text-decoration: none;
    font-family: Webspark;
    font-size: 2em;
    vertical-align: -0.11em;
}

.webspark-logo a:hover {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
}
