@charset "UTF-8";

/*
Theme Name: mysteryhaft
Author: Estima Group
Author URI: https://wordpress.org/
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 7.4
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mysteryhaft
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

mysteryhaft WordPress Theme, (C) 2023 Estima Group
mysteryhaft is distributed under the terms of the GNU GPL.
*/

/* Variables */
:root {
    /* Font Family */
	--font-primary: 'Lato', sans-serif;
	--font-secondary: 'Bungee', sans-serif;


    /* Colors */
    --main: #6A3093;
    --main-light: #E3D1F0;
    --black: #000000;
    --white: #FFFFFF;
    --grey: #656565;
    --mask-black: #00000080;
    --shadow-black: #00000040;
    --light-shadow-black: #00000014;
    --light-border: #E5E5E5;
    --red: #F33735;
}

.admin-bar {
    --global--admin-bar--height: 32px;
}

@media only screen and (max-width: 782px) {
    .admin-bar {
        --global--admin-bar--height: 46px;
    }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}
body * {
    box-sizing: border-box;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
    text-decoration-thickness: 1px;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration-style: dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    color: var(--main);
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

.above-header {
    background-color: var(--main-light);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0;
    text-align: left;
}

.above-header a {
    color: var(--black);
    text-decoration: none;
    transition-duration: .3s;
    white-space: nowrap;
}

.above-header a:hover {
    color: var(--main);
}

.above-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 17px;
    padding: 14px 10px 12px;
    flex-wrap: wrap;
}

.above-header__left,
.above-header__right {
    display: flex;
    gap: 26px;
}

.above-header__left {
    width: 100%;
    justify-content: space-around;
}

.above-header__right {
    display: none;
}

.above-header__right > div {
    position: relative;
    z-index: 1;
}

.above-header__middle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.above-header__middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    order: -1;
    width: 100%;
}

.above-header .wcml-dropdown-click {
    width: auto;
}

.above-header .wcml-dropdown-click .wcml-cs-submenu {
    box-shadow: 0 0 5px var(--light-shadow-black);
    border: 0;
    height: 100%;
    display: flex;
    align-items: center;
    transform: translateY(-30px);
    opacity: 0;
}

.above-header .wcml-dropdown-click .wcml-cs-submenu[style*="visible"] {
    animation: wcml-in .3s 1 forwards;
}

.above-header .wcml-dropdown-click .wcml-cs-submenu[style*="hidden"] {
    animation: wcml-out .3s 1 forwards;
}

@keyframes wcml-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes wcml-out {
    from {
        opacity: 1;
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

.above-header .wcml-dropdown-click li {
    background: transparent;
    border: 0;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;

}

.above-header .wcml-dropdown-click li a {
    text-align: center;
    background: var(--white);
    width: 100%;
}

.above-header .wcml-dropdown-click li li {
    border-radius: 5px;
    overflow: hidden;
}

.above-header .wcml-dropdown-click li li a {
    text-transform: uppercase;
}

.above-header .wcml-dropdown-click li li a:hover {
    color: var(--white);
    background: var(--main);
}

.above-header .wcml-dropdown-click a.wcml-cs-item-toggle {
    background: transparent;
    border: 0;
    padding: 3px 22px 3px 0;
}

.above-header .wcml-dropdown-click a.wcml-cs-item-toggle:after {
    content: '';
    display: inline-block;
    height: 6px;
    width: 6px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23666'/></svg>");
    background-position: 50%;
    background-size: 11px;
    background-repeat: no-repeat;
    border: 0;
}

.wcml-dropdown-click .wcml-cs-submenu {
    top: calc(100% + 9px);
    bottom: 0;
}

/*////////*/

.clear-button,
.button {
    padding: 0;
    border: 0;
    margin: 0;
    background-color: transparent;
    cursor: pointer;
}

.site-header {
    background-color: var(--main-light);
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid var(--main);
}

.primary-navigation,
.primary-navigation__content {
    display: flex;
    justify-content: space-between;
}

.primary-navigation .close {
    display: none;
}

.primary-navigation .close svg {
    width: 33px;
    height: 33px;
}

.primary-navigation.open .close {
    display: flex;
    transform: translateY(-2px);
}

.primary-navigation__content {
    display: flex;
    background-color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    justify-content: flex-start;
    left: -100%;
    flex-direction: column;
    z-index: 9999999;
    padding: 44px 20px;
    gap: 10px;
    transition: left .3s;
}

.open .primary-navigation__content {
    left: 0;
    background-color: var(--white);
}

.category-filters-filter-mask,
.primary-navigation__mask {
    background: var(--mask-black);
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    z-index: 99999;
    transition: opacity .3s;
    width: 0;
    opacity: 0;
}

.primary-navigation__mask {
    z-index: 9999999;
}

.category-filters-filter-mask {
    z-index: -1;
}

.open .category-filters-filter-mask,
.open .primary-navigation__mask {
    width: 100%;
    opacity: 1;
}

.primary-mobile-menu-close {
    display: none;
    position: fixed;
    background: var(--main);
    color: var(--white);
    z-index: 999999999999;
    border-radius: 5px;
    top: 20px;
    left: calc(100% - 50px);
    width: 35px;
    height: 35px;
    font-family: cursive;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 300;
}

.open .primary-mobile-menu-close > span,
.primary-mobile-menu-close > span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.open .primary-mobile-menu-close {
    display: flex;
}

.primary-navigation__right {
    display: flex;
    align-items: center;
    gap: 43px;
    padding-right: 5px;
}

.primary-navigation__right > * svg {
    width: 28px;
    height: auto;
}

.primary-navigation__right > .menu-button-container svg {
    width: 38px;
    height: auto;
}

.header__link-cart {
    height: 100%;
    display: none;
    align-items: center;
}

.header__link-cart--mobile {
    display: flex;
}

.woofc-cart-link .woofc-cart-link-inner {
    display: none;
}

.woofc-cart-link > a {
    position: absolute;
    width: 24px;
    height: 28px;
    right: 10px;
    bottom: 11px;
}

#mini-cart-count {
    position: absolute;
    right: 9px;
    font-family: var(--font-primary);
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--main);
    color: var(--white);
    text-align: center;
    line-height: 1.5;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    top: 14px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-navigation__right > .primary-navigation__ig {
    display: none;
}

.primary-navigation__right .search .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon {
    max-width: none;
}

.primary-navigation__right .search .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon svg {
    max-width: none;
    width: 23px;
    height: 23px;
    padding: 3px;
}

.primary-navigation__mobile-logo {
    display: block;
}

div.search .dgwt-wcas-search-wrapp {
    position: absolute;
    min-width: 0;
    left: -10px;
    bottom: 0;
    z-index: 1111;
    opacity: 0;
    width: calc(100% + 21px);
    border-radius: 0 0 5px 5px;
    max-width: none;
    transform: rotateX(90deg);
}

div.search .dgwt-wcas-search-wrapp.dgwt-wcas-search-focused {
    opacity: 1;
    bottom: -62px;
    transform: rotateX(0deg);
}

div.search .dgwt-wcas-meta {
    white-space: nowrap;
}

.search__mobile-icon {
    display: block;
    cursor: pointer;
}

.language-selector .gt_float_switcher .gt-selected .gt-current-lang {
    display: flex;
    align-items: center;
    padding: 0;
}

.language-selector .gt_float_switcher {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0;
    text-align: left;
    box-shadow: none;
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    overflow: visible;
}

.language-selector .gt_float_switcher .gt-selected {
    background-color: var(--main-light);
    padding: 2px;
}

.language-selector .gt_float_switcher .gt-selected svg {
    width: 24px;
    margin-right: 5px;
}

.language-selector .gt_float_switcher .gt_options {
    display: block;
    top: calc(100% + 9px);
    z-index: 1;
    background: var(--white);
    position: absolute;
    max-width: none;
    width: max-content;
    right: 0;
    box-shadow: 0 0 5px var(--light-shadow-black);
    border-radius: 5px;
    overflow: hidden;
}

.language-selector .gt_float_switcher .gt_options a {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: var(--black);
    width: 100%;
    transition: all .3s;
}

.language-selector .gt_float_switcher .gt_options a:hover{
    color: var(--white);
    background: var(--main);
}

.language-selector .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
    min-width: 6px;
    width: 6px;
    margin-left: 5px;
    transform: none;
}

.language-selector .gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.language-selector .gt_float_switcher img {
    width: 24px;
    margin-right: 5px;
}

.menu-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.menu-wrapper > .menu-item {
    display: flex;
    flex-direction: column;
}

.site-branding .site-logo img {
    width: 166px;
    height: auto;
    margin: 0;
}

div[class*="menu-container"]{
    display: flex;
    align-items: center;
    height: 100%;
}

.header-menu-wrapper {
    display: flex;
    align-items: center;
}

.header-menu-wrapper .sub-menu {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    background: white;
    left: 0;
    padding: 0;
    overflow: hidden;
}

.with-images-container .sub-menu-wrapper {
    display: flex;
    gap: 20px 40px;
    flex-wrap: wrap;
}

.with-images-container {
    display: flex;
}

.with-images-container .images {
    display: none;
}

.header-menu-wrapper  .menu-item:hover .sub-menu {
    display: flex;
}

.header-menu-wrapper.relative {
    position: relative;
}

.with-images-container .sub-menu-wrapper .menu-item > a {
    font-size: 16px;
    color: var(--grey);
}

.menu-item > a {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--black);
    white-space: nowrap;
    position: relative;
    transition-duration: .3s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.with-images-container .sub-menu-wrapper .menu-item > a:hover,
.menu-item > a:hover {
    color: var(--main);
}

.menu-item > a:after:hover {
    border-color: var(--main);
}

.menu-item.menu-item-has-children .sub-menu {
    display: none;
    position: static;
    left: 0;
    padding: 15px 0 10px;
    list-style: none;
    background: var(--white);
    z-index: 99;
    flex-direction: column;
    gap: 10px;
    border-radius: 5px;
}

.menu-item.menu-item-has-children .sub-menu .sub-menu {
    position: static;
}

.menu-item.menu-item-has-children:hover > .sub-menu {
    display: flex;
}

.menu-item.menu-item-has-children:hover > a:after {
    border-color: var(--main);
}

@keyframes delay-pointer-events {
    0% {
        pointer-events: none;
    }
    50% {
        pointer-events: none;
    }
    100% {
        pointer-events: initial;
    }
}

.menu-item.menu-item-has-children:hover > a {
    color: var(--main);
    animation: delay-pointer-events .6s 1 forwards;
}

.menu-item.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 7px;
    pointer-events: none;
}

.woocommerce-store-notice__dismiss-link {
    display: none;
}

.entry-text {
    font-family: var(--font-primary);
    font-weight: 400;
    text-align: center;
    max-width: 468px;
    line-height: 1.87;
}

.container-aboutus .wp-block-columns .wp-block-column .wp-block-image {
    margin: 0;
}

.title-h3-about-us {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.6px;
    margin: 0 0 17px;
}

.entry-content .text-about-us {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    max-width: none;
    margin: 0;
    color: var(--grey);
}

.entry-content .text-about-us:not(:last-child) {
    margin-bottom: 20px;
}

.wp-block-columns .wp-block-column .section-with-img__text,
.wp-block-column .section-with-img__text {
    padding: 20px;
    background-color: #fafafa;
    margin: 0;
}

.wp-container-core-columns-layout-3.wp-container-core-columns-layout-3.full-width-wy-shop-mysteryhaft-bg {
    min-height: 292px;
    margin: 0;
}

.wp-container-core-columns-layout-3.wp-container-core-columns-layout-3.full-width-wy-shop-mysteryhaft {
    margin: 0 auto;
    padding: 48px 0 8px;
}

.wp-block-columns .contact-form {
    margin: 0;
}

.contact-us-section {
    margin: 0;
    gap: 0;
}

.label-contact {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
}

.label-contact .wpcf7-textarea {
    width: 100%;
    border-radius: 37px;
    margin: 0;
    padding: 23px 18px;
    height: 180px;
    border: 0;
    background-color: #f1f1f1;
    text-transform: uppercase;
    font-size: 18px;
    resize: vertical;
}

.label-contact .wpcf7-text {
    width: 100%;
    border-radius: 100px;
    margin: 0;
    padding: 18px;
    height: 60px;
    border: 0;
    background-color: #f1f1f1;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2;
}

.label-contact-texarea .wpcf7-list-item-label {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: -0.01em;
}

.label-contact-texarea .wpcf7-list-item {
    margin: -18px 0 0 2px;
}

.label-contact-texarea input[type=checkbox] {
    width: 18px;
    height: 18px;
    border: solid 1px #727272
}

.contact-write .submit-contact input[type=submit]:hover {
    color: var(--black);
    background-color: transparent;
}

.contact-write .submit-contact {
    margin: 6px 0 20px;
}

.contact-write .submit-contact .wpcf7-spinner {
    display: none;
}

.contact-title {
    margin: 67px 3px 28px;
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: -0.02em;
    text-align: left;
}

.contact-left p {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.4;
}

.contact-left a {
    font-size: 20px;
    text-transform: none;
}

.contact-right {
    padding: 20px 0;
}

.contact-right > h2 {
    margin: 0;
    font-size: 22px;
    font-family: var(--font-secondary);
    letter-spacing: -.6px;
    margin-bottom: 20px;
}

.contact-right > p {
    margin: 0 0 20px;
    font-size: 18px;
    letter-spacing: -.3px;
}

.custom-form-row > p {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-right form p {
    margin: 0;
}

.contact-right form p.submit-contact .button {
    margin-left: 0;

}

.contact-right form label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    width: 100%;
}

.contact-right form .req {
    color: red;
}

.contact-row {
    min-height: 86px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 17px 0;
}

.contact-row:before {
    content: '';
    position: absolute;
    width: calc(100% + 22px);
    right: -11px;
    bottom: 0;
    height: 1px;
    background-color: var(--main);
}

.error-404-content-banner {
    padding: 30px 0;
    max-width: 890px;
    width: 100%;
    margin: 50px auto;
    background-image: url(./assets/images/404.svg);
    background-size: 100% 100%;
}

.error-404-content-banner--text-b {
    font-family: var(--font-secondary);
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -.7px;
    text-align: center;
    margin: 0 auto 20px;
    max-width: 547px;
}

.error-404-content-banner--text {
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    max-width: 375px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    letter-spacing: -.7px;
}

.site .error-404-content-banner--button {
    width: fit-content;
    color: var(--white);
    border: 1px solid var(--main);
    background-color: var(--main);
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.4;
    margin: 38px auto 0;
    padding: 10px 20px;
}

.site .error-404-content-banner--button:hover {
    color: var(--main);
    border-color: var(--main);
    background-color: var(--white);
}

.widget-area {
    margin-top: 38px;
    max-width: 1077px;
    column-gap: 0;
}

.widget-area .footer-widget h2{
	font-family: var(--font-primary);
	font-size: 22px;
	font-weight: 800;
	line-height: 29px;
	letter-spacing: 0;
	text-align: left;
	margin-bottom: 16px;
	margin-left: -5px;
}

.widget-area .footer-widget p{
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: 0;
	margin-top: 0;
	margin-left: -8px;
}

.widget-area .footer-widget p a {
    text-decoration: none;
}

.widget-area .footer-widget-icons {
    max-width: 147px;
    margin-left: -23px;
    margin-top: -15px;
}

.woocommerce-tabs .button-tab-product {
	border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    background-color: #F1F1F1;
    color: var(--black);
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    border-radius: 160px;
    padding: 9px 20px 10px;
    margin: 0 0 10px;
}

.woocommerce-tabs .button-tab-product svg {
    transition-duration: .3s;
    transform: rotate(180deg);
}

.woocommerce-tabs .button-tab-product.open svg {
    transform: rotate(0deg);
}

.woocommerce-tabs .wc-tab-wrapper {
    padding: 0 0 7px 20px;
    display: none;
}

.woocommerce-tabs .wc-tab-wrapper.open{
    display: block;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--grey);
    letter-spacing: -.14px;
    max-width: 380px;
}

.woocommerce div.product .woocommerce-tabs .panel .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-primary);
}

.woocommerce div.product .woocommerce-tabs .panel .desc p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--grey);
    letter-spacing: -.14px;
}

.woocommerce div.product .woocommerce-tabs .panel .desc p:empty  {
    display: none;
}

.woocommerce div.product .woocommerce-tabs .panel .desc > h3,
.woocommerce div.product .woocommerce-tabs .panel .desc > h2{
    margin: 40px 0 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
}

.woocommerce div.product .woocommerce-tabs .panel .desc > h3 {
    margin: 40px 0 30px;
}

.woocommerce div.product .woocommerce-tabs .panel .desc-section{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}

.woocommerce div.product .woocommerce-tabs .panel .desc-section strong{
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 20px;
    display: block;
}

.woocommerce div.product .woocommerce-tabs .panel .desc-section hr {
    border: 0;
    border-top: 1px solid var(--main-light);
    margin: 30px 0 28px;
    width: calc(100% + 50px);
}

.woocommerce div.product .woocommerce-tabs .panel .desc-section:nth-of-type(2n) strong {
    font-size: 20px;
    line-height: 23px;
    margin: 0 0 28px;
}

.woocommerce div.product .woocommerce-tabs .panel .desc-section > img {
    min-width: calc(43% - 2px);
    object-fit: contain;
}

.woocommerce .single-product .related .products {
	margin-top: 26px;
}

.woocommerce .single-product .related{
    margin: 40px 0 30px;
    overflow: hidden;
}

.woocommerce .single-product .related h4{
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: left;
    margin: 0 0 35px;
    font-size: 30px;
    line-height: 36px;
}

.woocommerce div.product .product_title{
	font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin: 12px 0;
	text-transform: unset;
}

.woocommerce .single-product div.product .price-wrapper {
    margin: 44px 0 0;
    padding: 0 3px;
}


.woocommerce .single-product div.product p.price > span,
.woocommerce .single-product div.product span.price,
.woocommerce .single-product div.product p.price {
	font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    margin: 11px 0 0;
	color: var(--black);
}

.woocommerce .single-product div.product p.price > span ins,
.woocommerce .single-product div.product span.price ins,
.woocommerce .single-product div.product p.price ins {
    text-decoration: none;
}

.woocommerce-product-gallery .product-swiper{
	overflow: hidden;
}

.woocommerce-product-gallery__thumbs {
    overflow: hidden;
    position: relative;
}

.woocommerce-product-gallery__thumbs .swiper-slide {
    max-width: 114px;
    aspect-ratio: 1 / 1;
}

.woocommerce div.product div.summary {
    margin: 0;
}

.woocommerce div.product div.images {
    margin-bottom: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__thumbs img {
    aspect-ratio: 1 / 1;
    width: 114px;
}

.woocommerce-product-gallery__slider {
    overflow: hidden;
}

.product-gallery {
    display: flex;
    padding: 0;
    gap: 20px;
    flex-direction: column;
}

.thumb-swiper-button {
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    padding: 15px;
    background: transparent;
    z-index: 1;
    cursor: pointer;
    left: 0;
    transform: translateY(-50%) rotate(-90deg);
    top: 50%;
}

.thumb-swiper-button.next {
    left: auto;
    right: 0;
}

.thumb-swiper-button:before {
    content: '';
    border: 4px solid var(--black);
    border-radius: 2px;
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(45deg);
    border-bottom: 0;
    border-right: 0;
}

.thumb-swiper-button.next:before {
    transform:  rotate(-135deg);
}

.woocommerce-tabs .toggle-icon {
	margin-right: 5px;
	float: right;
	color: var(--black);
}

.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce-tabs .wc-tab-wrapper .button-tab-product{
	width: 100%;
}

.woocommerce .single-product {
    margin-top: 3px;
}

.woocommerce-tabs .wc-tab-wrapper .button-tab-product .toggle-icon::before {
	content: '+';
}

.woocommerce-tabs .wc-tab-wrapper.open .button-tab-product .toggle-icon::before {
	content: '-';
}

.woocommerce-notices-wrapper,
.alignwide,
.woocommerce-account .site-main .page,
.container {
    max-width: 1382px;
    margin: 0 auto;
    padding: 0 11px;
    width: 100%;
}

.woocommerce-notices-wrapper {
    order: -1;
}

.alignwide #breadcrumbs,
.alignwide .container,
.alignwide .woocommerce-notices-wrapper,
.container #breadcrumbs,
.container .alignwide,
.container .woocommerce-notices-wrapper {
    padding: 0;
}

.woocommerce ul.products {
    margin: 0;
    display: grid;
    gap: 26px 20px;
    grid-template-columns: 1fr 1fr;
}

div:not(.homepage-products-slider) > .woocommerce ul.products > li {
    width: 100% !important;
}

.woocommerce .swiper-container ul.products {
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 26px 0;
}

.woocommerce ul.products:after,
.woocommerce ul.products:before {
    display: none;
}

.woocommerce #bestseller-products-in-cat ul.products:not(.swiper-wrapper) {
    display: flex;
    gap: 20px;
}

.woocommerce #bestseller-products-in-cat ul.products:not(.swiper-wrapper) > .product {
    min-width: 25%;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0;
    transition: box-shadow .3s;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    overflow: hidden;
}

.woocommerce ul.products li.product > .woocommerce-loop-product__link > .product-content {
    background-color: var(--white);
    transition-duration: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    box-shadow: 0 3px 3px 0 #0000001a;
}

.product-last-section-wrapper {
    display: none;
}

.woocommerce ul.products li.product > .product-last-section-wrapper .added_to_cart,
.woocommerce-page ul.products li.product > .product-last-section-wrapper .added_to_cart,
.woocommerce ul.products li.product > .product-last-section-wrapper .woocommerce-loop-product__link,
.woocommerce-page ul.products li.product > .product-last-section-wrapper .woocommerce-loop-product__link {
    display: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 5px;
    padding: 0px 1px;
    font-size: 20px;
    font-weight: 500;
}

.woocommerce ul.products li.product .product-size{
    padding: 5px 8px 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    color: var(--black);
}

.woocommerce ul.products li.product .price {
    /* margin: auto 0 0; */
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.woocommerce ul.products li.product .price span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black);
}

.woocommerce ul.products li.product .price > * {
    text-decoration: none;
}

.woocommerce ul.products li.product .price > del {
    display: block;
    opacity: 1;
}

.woocommerce ul.products li.product .price del span {
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0;
    text-align: left;
    text-decoration: line-through;
}

.woocommerce ul.products li.product .button{
    display: none;
}

.woocommerce-products-header__title {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left;
    padding: 18px 0 23px;
    border-bottom: 1px solid var(--black);
    color: var(--black);
    text-transform: uppercase;
}

.woocommerce-products-header__title--centered {
    text-align: center;
}

.woocommerce-products-header__title--secondary {
    border: 0;
    padding: 18px 0 34px;
}

.archive.woocommerce .entry-content {
    margin-top: 0;
}

.category-products-mobile-title {
    padding: 0;
    font-size: 20px;
    border: 0;
}

.dgwt-wcas-suggestions-wrapp {
    box-shadow: 0 5px 5px var(--light-shadow-black);
}

.dgwt-wcas-open-pirx .dgwt-wcas-details-inner,
.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp>.dgwt-wcas-suggestion {
    text-decoration: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    color: var(--white);
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 12px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 25px;
    font-weight: 800;
}

.swiper-button-next.main-slider__button-next,
.swiper-button-prev.main-slider__button-prev {
    display: none;
}

.woocommerce .entry-content{
    margin-top: 50px;
}

.product .product_meta {
    display: none !important;
}

.site-footer {
    font-family: var(--font-primary);
    background-color: var(--white);
}

.site-footer > .container > section:first-child .wp-block-column > .wp-block-columns {
    margin-bottom: 0;
}

.site-footer .widget > .footer-widget-images > .wp-block-group__inner-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.site-footer .widget > .footer-widget-images > .wp-block-group__inner-container p {
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
}

.site-footer .widget > .footer-widget-images figure.wp-block-gallery.has-nested-images {
    display: flex;
    flex-wrap: nowrap;
    gap: 21px;
    justify-content: flex-start;
}

.site-footer .widget > .footer-widget-images figure.wp-block-gallery.has-nested-images img {
    width: auto !important;
    flex: 0 !important;
}


.site-footer .wp-block-image {
    margin: 0;
}

.site-footer .widget > div {
    margin: 0;
}

.footer-widget-wrapper {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--main-light);
    background-color: var(--white);
}

.site-footer > .container {
    max-width: 1305px;
}

.no-border .footer-widget-wrapper {
    border-top: 0;
}

.footer-widget-wrapper > .wp-block-columns,
.footer-widget-wrapper > .footer-widget {
    width: 100%;
    margin: 0;
}

.footer-widget-wrapper > .footer-widget {
    margin-bottom: 10px;
}

.footer-widget-wrapper > .footer-widget:last-child a {
   text-decoration: underline;
}

.footer-widget-wrapper > .wp-block-columns {
    order: -1;
}

.footer-widget-wrapper > .wp-block-columns .wp-block-column {
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.footer-widget-wrapper .wp-block-heading,
.footer-widget-wrapper .widgettitle {
    margin: 0 0 26px;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    text-transform: uppercase;
}

.footer-widget-wrapper .widgettitle {
    margin: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-widget-wrapper .widgettitle.open {
    margin: 0 0 19px;
}

.footer-widget-wrapper .widgettitle:after {
    content: '';
    border-left: 2px solid;
    border-top: 2px solid;
    width: 7px;
    height: 7px;
    display: block;
    margin-left: 10px;
    transform: translateY(-5px) rotateZ(-135deg);
}

.footer-widget-wrapper .widgettitle + div {
    max-height: 0;
    overflow: hidden;
    transition-duration: .5s;
    padding-left: 10px;
}

.footer-widget-wrapper .widgettitle.open + div {
    max-height: 500px;
    overflow: hidden;
    margin-top: 18px;
    margin-bottom: 10px;
}

.footer-widget-wrapper .wp-block-heading {
    margin-bottom: 21px;
}

.footer-widget-wrapper .wp-block-group__inner-container > p {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 26px 0 0;
    text-transform: uppercase;
}

.footer-widget-wrapper .wp-block-group__inner-container > p.footer-contact {
    text-transform: none;
    margin-top: 13px;

}

.footer-widget-wrapper .wp-block-group__inner-container > p.footer-contact > a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 7px;
}

.footer-widget-wrapper .wp-block-group__inner-container > p > span {
    line-height: 37px;
}

.footer-widget-wrapper .wp-block-group__inner-container a {
    color: var(--black);
    transition-duration: .3s;
    text-decoration: none;
}

.footer-widget-wrapper .wp-block-group__inner-container a:hover {
    color: var(--main);
}

.footer-widget-wrapper .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-widget-wrapper .menu .menu-item a {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.footer-widget-wrapper .footer-widget-icons {
    margin-top: 12px;
    max-width: 122px;
    flex-wrap: nowrap !important;
    margin-bottom: 0;
}

.site-footer figure.wp-block-gallery.has-nested-images {
    display: flex;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer figure.wp-block-gallery.has-nested-images .wp-block-image {
    width: 64px;
    max-width: 64px;
}

.site-footer .footer-copyright p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    letter-spacing: .9px;
}

.site-footer .tnp-subscription-minimal form {
    text-align: left !important;
}

.site-footer > .alignwide > .widget:last-child {
    margin-top: 14px;
}

.site-footer .widget > div.footer-copyright,
.site-footer .footer-copyright {
    display: flex;
    flex-wrap: nowrap !important;
    flex-direction: column;
    padding: 26px 0;
    margin-top: 11px;
    border-top: 2px solid var(--light-border);
}

.footer-widget-images .footer-widget {
    margin: 0 0 0 auto !important;
}

.footer-widget-images .footer-widget > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color{
    border-radius: 50%;
    box-shadow: 3px 3px 4px rgb(0 0 0 / 30%);
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color[style*="#ffffff"]{
    border: 1px solid var(--black);
}

.woocommerce div.product form.cart .variations > tbody > tr:last-child {
    display: block;
    margin-top: 10px;
}

.woocommerce div.product form.cart .variations label{
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: left;
    margin: 10px 0;
    line-height: 1;
}

.woocommerce div.product form.cart {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item) {
    border-radius: 50%;
    padding: 0;
    width: 42px;
    height: 42px;
    margin: 0 23px 19px 3px;
    box-shadow: none;
}

.woo-variation-swatches.wvs-show-label .variations th .woo-selected-variation-item-name {
    display: none;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item:not(.radio-variable-item) {
    min-width: 46px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    padding: 0 10px;
    height: 35px;
    margin: 3px 13px 3px 0;
    box-shadow: 0 0 0 1px var(--mask-black);
}

.qty-input-wrapper{
    padding: 16px 29px;
    border: 1px solid #888888;
    margin: 7px 0 0 2px;
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
}

.qty-input-wrapper-button{
    border: none;
    background-color: var(--white);
    cursor: pointer;
}

.quantity .qty-input-wrapper .qty-input-wrapper-button:first-child {
    margin-top: -4px;
}

.qty-input-wrapper input[type='number'] {
    -moz-appearance:textfield;
    border: none;
}

.qty-input-wrapper input::-webkit-outer-spin-button,
.qty-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.woocommerce div.product form.cart .button{
    margin-left: 14px;
    margin-top: 7px;
    padding: 13px 14px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0;
    text-transform: uppercase;
    background-color: var(--black);
    width: 100%;
}

.woocommerce div.product form.cart .qib-button:not(#qib_id):not(#qib_id){
    height: 44px;
}

.woocommerce-variation-price{
    display: none;
}

.tabs {
    max-width: 100%;
    overflow: hidden;
}

.product-card-colors-wrapper,
.product-card-colors {
    display: flex;
}

.product-card-colors-wrapper {
    gap: 13px;
    padding: 0 3px;
}

.product-card-colors-wrapper.empty {
    opacity: 0;
}

.product-card-colors {
    gap: 4px;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
}

.product-card-colors > span:not(.product-card-count) {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    box-shadow: 1px 2px 3px 0 var(--shadow-black);
    gap: 6px;
}

.product-card-count {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
    color: var(--black);
    line-height: 1;
    padding-top: 3px;
    padding-left: 4px;
}

.homepage-tabs {
    padding-top: 29px;
}

.homepage-tabs-header {
    display: flex;
    justify-content: space-between;
    gap: 31px;
    align-items: center;
    padding-left: 0;
    margin-bottom: 37px;
    flex-direction: column;
}

.homepage-tabs-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 26px;
}

.mysteryhaft-title {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 29px;
    text-transform: uppercase;
}

.homepage-tabs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.custom-button,
.homepage-tab-button {
    padding: 8px 10px;
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    white-space: nowrap;
    min-width: 216px;
    max-width: 100%;
    border: 1px solid #D9D9D9;
    transition-duration: .3s;
    margin-right: -1px;
    cursor: pointer;
    text-decoration: none;
}

.homepage-tab-button {
    width: calc(50% - 20px);
    min-width: 0;
    flex-grow: 1;
    font-size: clamp(12px, 4.4vw, 16px);
}

.homepage-tab-button:last-child {
    flex-grow: initial;
    width: 50%;
}

.homepage-tab {
    position: relative;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.woocommerce_cart {
    display: flex;
    margin: 61px 0 68px;
    gap: 10px;
    flex-direction: column;
}

.woocommerce .shop_table {
    width: 100%;
    border: 1px solid var(--main-light);
    border-radius: 0;
    padding: 10px;
    margin-top: 15px;
}

.woocommerce .shop_table a{
    color: var(--black);
    text-decoration: none;
    display: flex;
}

.woocommerce-cart .woocommerce .quantity .qty {
    width: 49px;
}

.woocommerce-cart .woocommerce .quantity .qty-input-wrapper-button {
    padding: 10px
}

.woocommerce .shop_table a.remove {
    margin: 0 auto;
    height: auto;
}

.woocommerce .shop_table a.remove path {
    transition-duration: .3s;
}

.woocommerce .shop_table a.remove:active,
.woocommerce .shop_table a.remove:hover {
    background-color: transparent;
}

.woocommerce .shop_table a.remove:active > svg path,
.woocommerce .shop_table a.remove:hover > svg path {
    stroke: red;
}

.woocommerce-cart .woocommerce .quantity .qty-input-wrapper {
    padding: 0;
    margin: 0;
    min-height: 42px;
    overflow: hidden;
}

.woocommerce-cart .quantity  {
    display: flex;
    justify-content: center;
}

.woocommerce-cart-form {
    width: 100%;
}

.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img{
    width: 100%;
    max-width: 171px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.woocommerce-cart .entry-text-wrapper {
    max-width: 1362px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.woocommerce-cart .entry-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 29px;
    letter-spacing: 0;
    margin: 66px 0 0 0;
}

.post-9 .entry-text-wrapper {
    max-width: 1362px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.post-9 .entry-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 29px;
    letter-spacing: 0;
    margin: 66px 0 0 0;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    max-width: none;
    overflow: hidden;
    margin-top: 15px;
    width: 100%;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals{
    width: 100%;
    float: none;
}

.woocommerce_cart .woocommerce-shipping-totals.shipping {
    display: none;
}

.woocommerce .cart_totals .shop_table td {
    border-top: none;
    padding: 0;
}

.woocommerce .cart_totals .shop_table .coupon {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--main-light);
}

.woocommerce .cart_totals .shop_table .coupon__content {
    display: none;
    align-items: stretch;
    padding: 0 20px 20px;
}

.woocommerce .cart_totals .shop_table .coupon.open .coupon__content {
    display: flex;
}

.woocommerce .cart_totals .shop_table .coupon > p {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0;
    text-align: left;
    margin: 13px 0 0;
    color: #888888;
}

.woocommerce .cart_totals .shop_table .coupon .input-text{
    width: 100%;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    border: 1px solid;
    border-right: 0;
    max-width: 420px;
    outline: 1 solid var(--main-light);
}

.light-button {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0;
    white-space: nowrap;
    background-color: var(--main);
    color: var(--white);
    border-radius: 0 5px 5px 0;
    border: 1px solid var(--main);
    transition-duration: .3s;
    cursor: pointer;
    padding: 10px 15px;
}

.light-button:hover {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.woocommerce .cart_totals .shop_table .coupon .button {
    background-color: transparent;
    display: flex;
    justify-content: flex-start;
    font-family: var(--font-primary);
    text-align: center;
    cursor: pointer;
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    padding: 15px 50px 15px 20px;
    position: relative;
}

.woocommerce .cart_totals .shop_table .coupon .button > span {
    border: solid var(--black);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 7px;
    position: absolute;
    right: 34px;
    transform: rotate(45deg) translateY(-50%);
    top: calc(50% - 7px);
}

.woocommerce .cart_totals .shop_table .coupon.open .button > span {
    transform: rotate(-135deg) translateY(-50%);
    right: 24px;
}

.woocommerce .cart_totals .shop_table .order-total th{
    padding: 30px 0 30px 20px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0;
    border: 0;
}

.woocommerce .cart_totals .shop_table .order-total td{
    padding: 20px;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0;
    text-align: right;
    border: 0;
    vertical-align: middle;
    background-color: var(--white);
}

.woocommerce .cart_totals .shop_table .free-shipping-price th{
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    padding: 2px 20px 6px;
    border: 0;
}

.woocommerce_cart .cart-collaterals .cart_totals .cart-subtotal th{
    padding: 27px 0 28px 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.woocommerce_cart .cart-collaterals .cart_totals .cart-subtotal td{
    padding: 27px 0 28px 0;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0;
    text-align: left;
}

.woocommerce_cart .cart-collaterals .cart_totals .cart-subtotal td{
    text-align: right;
}

.woocommerce_cart .cart-collaterals .cart_totals h2 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    padding: 11px 0;
    border-bottom: 1px solid var(--black);
}

.woocommerce-cart .cart-collaterals .cart_totals{
    border: 1px solid var(--main-light);
    border-radius: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals table{
    width: 100%;
    border: 0;
}

.variation {
    position: relative;
}

.variation .variation-content {
    display: none;
    position: absolute;
    top: 0;
    list-style: none;
    left: 0;
    border-radius: 5px;
    border: 1px solid #888;
    box-shadow: 0 4px 5px var(--light-shadow-black);
    margin: 0;
    z-index: 99999;
    background: var(--white);
    padding: 7px;
}

.variation.open .variation-content {
    display: block;
}

.variation-content > li {
    display: flex;
}

.variation-content > li,
.variation-content > li p {
    font-family: var(--font-primary);
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
}

.var-button,
.variation-content > .close {
    padding: 3px 7px;
    background-color: transparent;
    border: 0;
    margin: 0;
    cursor: pointer;
}

.var-button {
    display: flex;
    gap: 5px;
    color: #888;
    align-items: center;
    font-size: 11px;
    margin-bottom: -19px;
    padding: 7px 8px 7px 0;
    transition-duration: .3s;
}

.var-button > svg path {
    fill: #888;
    transition-duration: .3s;
}

.var-button:hover {
    color: var(--black);
}

.var-button:hover > svg path {
    fill: var(--black);
}

.variation-content > .close {
    position: absolute;
    right: 0;
    top: 0;
}

.variation-content > .close > svg {
    transform: rotate(45deg);
    pointer-events: none;
}

.woocommerce-cart .woocommerce_cart .product-thumbnail{
    min-width: 100px;
    max-width: 174px;
    grid-area: img;
}

.woocommerce-cart .woocommerce_cart .product-thumbnail img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.woocommerce-cart .woocommerce_cart .product-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0;
    text-align: left;
    grid-area: title;
    width: calc(100% + 30px);
}

.woocommerce-cart .woocommerce_cart .product-price {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0;
    white-space: nowrap;
    grid-area: price;
}

.woocommerce-cart .woocommerce_cart .product-quantity {
    min-width: 100px;
    margin-top: auto;
    margin-right: 0;
    grid-area: qty;
}

.woocommerce-cart .woocommerce_cart .product-remove {
    margin: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.woocommerce-cart .woocommerce_cart .product-remove > svg {
    height: 37px;
}

.woocommerce .cart .actions {
    display: none;
}

.woocommerce-cart-form__cart-item {
    position: relative;
    display: grid;
    grid-template-areas:
        "img title"
        "img price"
        "img qty";
    padding-bottom: 20px;
    border-bottom: 1px solid var(--main-light);
    margin-bottom: 20px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-right: 40px;
}

.woocommerce-cart-form__cart-item.last {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
    display: block;
    width: 100%;
    margin-bottom: 19px;
    padding: 13px 10px;
    font-family: var(--font-primary);
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 5px;
    font-weight: 700;
    line-height: 19px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button + .checkout-button{
    margin: 0;
    padding: 12px 10px;
}

.save-shopping{
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: -17px;
}

.save-shopping p{
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0;
    text-align: left;
    color: #888888;
    text-transform: uppercase;
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 21px 18px;
}

.wp-block-woocommerce-checkout {
    margin: 0 auto !important;
}

.wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-totals-coupon a {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;
    color: var(--black);
    cursor: pointer;
    text-decoration: none;
}

.entry-header {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.entry-header .entry-header__background {
    width: 100%;
    height: auto;
    display: block;
}

.entry-header .entry-header__background >figure >img{
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-width: none !important;
    min-height: 320px !important;
}

.about-us-text-align-center-p {
    max-width: 905px;
    padding: 0 11px;
    margin: 64px auto 0;
    font-family: var(--font-primary);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
}

.about-us-text-align-center-p > strong {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 15px;
    display: inline-block;
}

.homepage-tab.active {
    visibility: visible;
    max-height: none;
}

.custom-button {
    color: #888888;
    margin: 0;
}

.custom-button.custom-button--outline {
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--black);
}

.custom-button.custom-button--dark {
    color: var(--white);
    background-color: var(--black);
}

.homepage-tab-button:active,
.homepage-tab-button:hover {
    background-color: #D9D9D9;
}

.custom-button:active,
.custom-button:hover {
    border-color: var(--black);
    background-color: var(--black);
    color: var(--white);
}

.custom-button.custom-button--dark:active,
.custom-button.custom-button--dark:hover {
    color: var(--black);
    border-color: var(--black);
    background-color: var(--white);
}

.custom-button.custom-button.custom-button--dark:focus,
.custom-button:focus {
    border-color: #D9D9D9;
    background-color: #D9D9D9;
    color: var(--black);
}

.custom-button:focus {
    border-color: #D9D9D9;
    background-color: #D9D9D9;
    color: var(--black);
}


#breadcrumbs {
    padding: 19px 0;
    width: 100%;
    border-bottom: 1px solid var(--main);
}

#breadcrumbs span,
#breadcrumbs a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #9d9d9d;
    transition-duration: .3s;
    text-transform: uppercase;
}

#breadcrumbs a:hover {
    color: var(--main);
    text-decoration: underline;
}

#breadcrumbs span >span:first-child > a {
    font-weight: 400;
}

#breadcrumbs div > span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 3px;
}

#breadcrumbs.absolute-breadcrumbs {
    position: absolute;
    top: 140px;
    left: 10px;
    color: var(--white);
    max-width: none;
    padding: 0;
    margin-left: 11px;
    width: calc(100% - 120px);
}

#breadcrumbs.absolute-breadcrumbs span {
    color: var(--white);
}

#breadcrumbs.absolute-breadcrumbs a {
    color: var(--white);
    font-weight: 700;
}

.homepage-tab-button.active {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.product > .alignwide {
    position: relative;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
    right: 14px;
    top: 14px;
    border: 0;
    border-radius: 6px;
    font-family: var(--font-primary);
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 300;
    line-height: 12px;
    letter-spacing: 0;
    text-align: left;
    text-transform: lowercase;
    color: var(--black);
    background: #D7DF2380;
    display: none;
}

.woocommerce span.onsale {
    left: 20px;
}

.woocommerce ul.products li.product a {
    /* display: flex; */
    flex-direction: column;
    height: 100%;
    /* pointer-events: none; */
}

.woocommerce ul.products li.product a img {
    margin-bottom: 17px;
    max-height: 420px;
    width: 100%;
    object-fit: contain;
}

.tab-swiper-button.swiper-button-disabled,
.swiper-button-disabled {
    cursor: default;
    opacity: .4;
}

.theme-mysteryhaft .wc-block-components-notice-banner>.wc-block-components-notice-banner__content {
    line-height: 1;
}

.theme-mysteryhaft .wc-block-components-notice-banner>.wc-block-components-notice-banner__content a,
.theme-mysteryhaft .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward {
    text-decoration: none;
    color: var(--black) !important;
    opacity: 1;
    display: inline-block;
    margin-left: auto;
    line-height: 1;
}

.theme-mysteryhaft .wc-block-components-notice-banner>.wc-block-components-notice-banner__content a:hover,
.theme-mysteryhaft .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover {
    background-color: transparent;
}

.theme-mysteryhaft .custom-page-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 31px;
    text-align: left;
    margin: 0;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
    color: var(--white);
    background-color: var(--black);
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
}

.related__content {
    position: relative;
}

.woocommerce .woocommerce-ordering__header {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    padding: 15px 0;
    position: relative;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.woocommerce .woocommerce-ordering__header:before {
    content: '';
    width: calc(100% + 22px);
    height: 1px;
    left: -11px;
    position: absolute;
    bottom: 0;
    background-color: var(--main);
}

.woocommerce .woocommerce-ordering__content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.woocommerce .woocommerce-ordering__content > span {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.woocommerce-ordering__filters {
    width: 100%;
}

.woocommerce .woocommerce-ordering {
    margin: 0;
    position: relative;
}

.woof_container {
    margin: 0;
    padding: 0;
}

.woof_container_inner {
    position: relative;
}

.woof_container select,
.woocommerce-ordering > select {
    padding: 10px 25px 10px 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--main);
    border-radius: 100px;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.4;
    width: fit-content;
    transition-duration: .3s;
    max-width: 165px;
}

.woof_container select:hover,
.woocommerce-ordering > select:hover,
.woof_container select:focus,
.woocommerce-ordering > select:focus {
    outline: 0;
    box-shadow: 0 0 5px var(--main);
}

.woof_block_html_items:after,
.woocommerce .woocommerce-ordering:after {
    content: '';
    position: absolute;
    right: 12px;
    width: 7px;
    height: 7px;
    pointer-events: none;
    top: calc(50% - 3px);
    transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.category-product-and-loop {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.category-filters-product-and-loop {
    overflow: hidden;
}

.category-product-and-loop__title {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 32px;
    letter-spacing: -.7px;
    padding: 10px 0;
    position: relative;
}

.category-product-and-loop__title:before {
    content: '';
    position: absolute;
    height: 1px;
    width: calc(100% + 22px);
    background: var(--main);
    bottom: 0;
    right: -11px;
}

.category-product-and-loop__left {
    width: 100%;
}

.category-product-and-loop__subcategories {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-product-and-loop__subcategories > li {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.category-product-and-loop__subcategories > li:before {
   content: '';
   width: calc(100% + 22px);
   height: 1px;
   right: -11px;
   position: absolute;
   bottom: 0;
   background-color: var(--main);
}

.category-product-and-loop__subcategories > li > a {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
}

.category-product-and-loop__right {
    width: 100%;
}

.category-product-and-loop__right .loop {
    margin-bottom: 40px;
}

.category-filters {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-filters-filter-p {
    display: none;
}

.category-filters .woof_redraw_zone {
    display: flex;
    gap: 15px;
    align-items: center;
}

.woof_submit_search_form_container {
    margin: 0;
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
    width: 100%;
    margin: 0;
}

.category-desc {
    padding: 65px 0;
    width: 100%;
}
.category-desc.category-desc--homepage {
    padding: 45px 0;
    max-width: 1321px;
}

.category-desc .text {
    margin-top: 11px;
}

.category-desc h5,
.category-desc h5 > span {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    margin: 0 0 23px;
}

.category-desc h2,
.category-desc h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    margin: 0;
}

.category-desc h2 {
margin: 20px 0;
}

.category-desc p + h3 {
    margin-top: 50px;
}

.category-desc h2 + p {
    margin-top: 14px;
}

.category-desc p strong {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin: 0;
    display: inline-block;
}

.category-desc p:not(.img) {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    margin: 20px 0 0 0;
    letter-spacing: 0;
}

.category-desc:not(.category-desc--homepage) p:not(.img) {
    margin: 14px 0 0 0;
}

.category-desc:not(.category-desc--homepage) p:not(.img):nth-child(3) {
    margin-top: 28px;
}

.category-desc ul {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}

.category-desc:not(.category-desc--homepage) ul {
    padding-left: 28px;
    margin: 28px 0;
}

.category-desc p.img {
    margin: 0;
}

.category-desc p:nth-child(3) {
    margin-top: 28px;
}


.category-desc .category-desc-btn {
    margin: 21px 0 0;
    border: none;
    background-color: transparent;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
    padding: 0;
    cursor: pointer;
}

.expanded-desc-category-page {
    /*margin-top: 35px;*/
}

.expanded-desc-category-page h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    line-height: 31px;
    text-transform: uppercase;
}

.expanded-desc-category-page p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}

.woocommerce .cart_totals .shop_table .cart-discount th {
    width: 100%;
    border: 0;
    padding: 20px 10px 0 20px;
    color: var(--black);
    text-transform: none;
}

.woocommerce .woocommerce-checkout-review-order .shop_table .cart-discount  {
    position: relative;
}

.woocommerce .woocommerce-checkout-review-order .shop_table .cart-discount td  {
    padding-right: 30px;
}

.woocommerce .cart_totals .shop_table .cart-discount td {
    min-width: 140px;
    vertical-align: middle;
    position: relative;
    padding: 20px 50px 20px 10px;
    border: 0;
}

.woocommerce-remove-coupon {
    width: 13px;
    display: block;
    position: absolute;
    right: 10px;
    overflow: hidden;
    top: calc(50% - 12px);
}

.woocommerce .cart_totals .shop_table .cart-discount .woocommerce-remove-coupon  {
    right: 20px;
}

.woocommerce-remove-coupon:before {
    content: '\2715';
    position: absolute;
    top: 0;
    font-weight: 900;
    background-color: var(--white);
    left: 0;
    font-size: 16px;
    transition-duration: .3s;
}

.woocommerce-remove-coupon:focus:before,
.woocommerce-remove-coupon:hover:before {
    color: var(--red);
}

.posts-pagination {
    text-align: center;
    margin: 0;
}

.woocommerce-pagination {
    display: none !important;
}

.lmp_load_more_button {
    margin: 40px 0;
}

.posts-pagination,
.posts-pagination a,
.posts-pagination .current,
.pagination .woocommerce-pagination .page-numbers {
    border: 0;
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    gap: 18px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--black) !important;
    padding: 2px 11px;
    text-align: center;
    align-items: center;
}

.posts-pagination a,
.pagination .woocommerce-pagination a.page-numbers {
    aspect-ratio: 1 / 1;
}

.posts-pagination .prev,
.posts-pagination .next,
.pagination .woocommerce-pagination .page-numbers.next,
.pagination .woocommerce-pagination .page-numbers.prev {
    color: #1D1D1B;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: 0;
    text-transform: capitalize;
    aspect-ratio: initial;
    transition-duration: 0.3s;
}

.posts-pagination .prev:hover,
.pagination .woocommerce-pagination .page-numbers.prev:hover,
.posts-pagination .next:hover,
.pagination .woocommerce-pagination .page-numbers.next:hover {
    color: var(--black);
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    margin: auto 0;
}

.posts-pagination a.page-numbers:hover,
.woocommerce nav.woocommerce-pagination a.page-numbers:hover {
    background-color: #EFF8E580 !important;
}

.posts-pagination .current,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: #EFF8E5 !important;
    aspect-ratio: 1/1;
}

.woocommerce-products-header {
    height: 47px;
    display: flex;
    align-items: center;
}

.woocommerce-products-header .woof_hide_mobile_filter,
.woocommerce-products-header .woof_show_mobile_filter {
    display: flex;
    align-items: center;
}

.woocommerce-products-header__button {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 999999;
}

.category-filters-button {
    display: flex;
    width: auto;
    min-width: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 4px;
    z-index: 999999;
}

.category-filters-button.open {
    position: fixed;
    right: 20px;
    top: 20px;
}

.category-filters-button > svg path {
    transition-duration: .3s;
}

.category-filters-button:hover {
    background-color: var(--black);
}

.category-filters-button:focus,
.category-filters-button:active {
    background-color: var(--white);
}
.category-filters-button:hover > svg path {
    fill: var(--white) !important;
}

.category-filters-button:focus > svg path,
.category-filters-button:active > svg path {
    fill: var(--black) !important;
}

.category-filters-button > svg {
    width: 25px;
    height: 25px;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    padding: 5px;
    border-radius: 0 0 5px 5px;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    border-radius: 5px !important;
    line-height: 22px !important;
    background-color: #F4F4F4 !important;
    padding: 13px 24px !important;
}

.dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon.dgwt-wcas-layout-icon-open .dgwt-wcas-search-icon {
    opacity: 1;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    opacity: 0;
}

.dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader) {
    top: calc(50% - 9px);
    height: 18px;
    margin: 0;
}

.dgwt-wcas-style-pirx .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader):hover path {
    fill: var(--black);
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    font-size: 19px;
    padding: 5px 10px;
    min-height: 0;
    width: auto;
    transition-duration: .3s;
    border: 1px solid var(--black);
    color: var(--black);
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
    color: var(--white);
    background-color: var(--black);
    border: 1px solid var(--black);
    transition: .3s;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):active {
    background-color: #D9D9D9;
}

.banner-with-slider {
    border-top: 8px solid var(--main);
    background-color: var(--main-light);
    padding: 0 10px;
    color: var(--main);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.banner-with-slider__content {
    margin-top: 16px;
}

.banner-content__texts-with-icons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.banner-content__texts-item {
    text-align: center;
    max-width: 108px;
}

.banner-content__texts-item > span {
    display: inline-block;
    max-width: 100px;
}

.banner-content__texts-item > svg {
    width: 52px;
    margin-bottom: 15px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-content.right {
    min-width: calc(100% + 20px);
    transform: translateX(-10px);
    overflow: hidden;
    margin-top: 11px;
}

.banner-content.right picture {
    display: flex;
    width: 100%;
}

.banner-content.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.banner-content-text > strong {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 31px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.banner-content-text > .banner-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0;
    font-family: var(--font-primary);
    text-align: center;
    margin: 22px 0 30px;
}

.banner-content-text > .custom-button {
    max-width: 172px;
    text-align: center;
    border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white);
    width: auto;
    margin: 0 auto;
    min-width: 0;
    display: block;
}

.banner-content-text > .custom-button:hover {
    background-color: var(--white);
    color: var(--black);
}
.banner-content-text > .custom-button:focus {
    border-color: #D9D9D9;
    background-color: #D9D9D9;
    color: var(--black);
}

.woocommerce td.product-name .wc-item-meta:last-child {
    padding: 0 10px 5px;
    font-size: 13px;
    line-height: 1;
}

.product-swiper .swiper-slide img.new {
    animation: fade-in .5s 0s 1 forwards;
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0;
    text-align: left;
    margin: 41px 0 0;
}

body .qib-container:not(#qib_id):not(#qib_id) {
    border: 1px solid var(--black);
    border-radius: 100px;
    overflow: hidden;
    width: 100%;
    display: flex;
    width: 95px;
}

body.woocommerce-cart .qib-container:not(#qib_id):not(#qib_id) {
    max-width: 133px;
}

body .qib-button:not(#qib_id):not(#qib_id) {
    height: 34px;
    width: 34px;
    color: var(--black);
    background: transparent;
    border: 0;
    font-size: 18px;
    transition: background .3s;
    cursor: pointer;
}

body .single .qib-button:not(#qib_id):not(#qib_id) {
    height: 44px;
}

body.woocommerce-cart .qib-button:not(#qib_id):not(#qib_id) {
    height: 35px;
}

body .qib-button:not(#qib_id):not(#qib_id):hover {
    background: var(--main-light);
}

body .qib-button.minus:not(#qib_id):not(#qib_id) {
    font-size: 28px;
    line-height: 1.1;
}

body .qib-button:focus:not(#qib_id):not(#qib_id) {
    border: 0;
}

body.woocommerce-cart .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    border: 0;
    width: 100%;
}

body.single .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    height: 44px;
}

body .qib-container div.quantity:not(#qib_id):not(#qib_id) {
    max-width: calc(100% - 68px);
    text-align: center;
    width: 100%;
}

body.woocommerce-cart  .qib-container div.quantity:not(#qib_id):not(#qib_id) {
    width: 100%;
}

body .qib-container .quantity input.qty:focus:not(#qib_id):not(#qib_id) {
    border: 0;
    background: var(--main-light);
}

body .add_to_cart_button:not(#qib_id):not(#qib_id):not(_) {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--black);
    height: 34px;
    padding: 0 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 5px;
    transition-duration: .3s;
    margin: 0;
}

body .add_to_cart_button:not(#qib_id):not(#qib_id):not(_):hover {
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
}

body.single .qib-container:not(#qib_id):not(#qib_id) {
}

body.single .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    width: 100%;
}

.product .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    border: 0;
}

.button__secondary {
    border: 1px solid var(--light-border);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    color: var(--grey);
    transition-duration: .3s;
    padding: 12px 30px;
    width: fit-content;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.button__secondary.button__secondary--white {
    border: 1px solid var(--white);
    color: var(--white);
}

.button__secondary:hover {
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
}

.button__secondary:not(.button__secondary--no-arrow):after {
    content: '';
    border-left: 1px solid;
    border-top: 1px solid;
    width: 4px;
    height: 4px;
    display: block;
    margin-left: 10px;
    transform: rotateZ(135deg);
}

.homepage-products-slider {
    margin-top: 16px;
    margin-bottom: 44px;
    overflow: hidden;
}

.homepage-products-slider__content {
    position: relative;
}

.homepage-products-slider .products-slider {
    margin-top: 15px;
}

.homepage-products-slider .button__secondary {
    margin: 27px auto 0;
}

@keyframes fade-in {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.zoom:not(:hover) {
    background-image: none !important;
}

.zoom {
    background-position: 50% 50%;
    background-size: 200%;
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
    background-repeat: no-repeat;
}

.zoom img {
    transition: opacity .5s;
    display: block;
    width: 100%;
}

.zoom img:hover {
  opacity: 0 !important;
}

.primary-navigation__content .site-branding {
    display: none;
}

.primary-navigation__content .site-branding .site-logo {
    padding: 9px 20px 6px;
    border: solid var(--main);
    border-width: 0 1px;
}

.menu-button-container {
    margin-right: auto;
}

.homepage-cards__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.homepage-cards {
    margin-top: 35px;
}

.homepage-card {
    display: flex;
    position: relative;
    flex-grow: 1;
    max-width: 720px;
}

.homepage-card__bg {
    width: 100%;
}

.homepage-card__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    width: 100%;
}

.homepage-card__text .button__secondary {
    margin: 0 auto;
}

.homepage-card__text > h3 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0;
    color: var(--white);
    text-align: center;
    margin: 0 0 30px;
}

.blog-posts__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: calc(100% + 22px);
    position: relative;
    left: -11px;
}

.blog-posts__content #infinite-handle,
.blog-posts__content #ctis-loading {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -73px;
    left: 50%;
    transform: translateX(-50%);
}

.woocommerce #infinite-handle {
    display: none;
}

.blog-posts__title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    text-align: left;
    padding: 20px 0;
    position: relative;
}

.blog-posts__title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50vw);
    width: 100vw;
    height: 1px;
    background-color: var(--main);
}

.post-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px 11px 0;
    border-bottom: 1px solid var(--main);
}

.blog .blog-posts {
    margin-bottom: 100px;
    border-bottom: 1px solid var(--main);
}

.blog .blog-posts__content > .post-card:first-child {
    display: none;
}

.ctis-finished-notice.infinite-loader.ctis-loader-elements {
    display: none;
}

.post-card:after {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 20px 0;
}

.post-card__text {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 20px 5px;
    height: 100%;
}

.post-card__text > h4 {
    margin: 0 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
}

.post-card > .img {
    width: 100%;
}

.post-card > .img .post-thumbnail {
    margin: 0;
    height: 100%;
}

.post-card > .img .post-thumbnail figure {
    margin: 0;
    height: 100%;
}

.post-card > .img .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 50 / 31;
}

.post-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    margin: 0;
}

.post-card__excerpt p {
    margin: 10px 0 0;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--grey);
}

.post-card__footer {
    margin-top: auto;
}

.post-card__footer > a {
    margin: 0 auto;
}

.post-card__excerpt {
    margin-bottom: 20px;
}

.newsletter {
    padding: 51px 0 48px;
    margin: 0;
    background-color: var(--main);
}

.home .newsletter {
    margin-top: 40px;
}

.newsletter__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter__right,
.newsletter__left {
    width: 100%;
}

.newsletter__left {
    padding: 11px 0;
}

.newsletter__title {
    font-size: 32px;
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    margin: 0 auto;
    color: var(--white);
}

.newsletter__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: left;
    margin: 0 auto;
    color: var(--white);
}

.newsletter .tnp-field.with-button {
    display: flex;
    background: var(--white);
    overflow: hidden;
    position: relative;
    padding: 5px;
}

.newsletter .tnp-email {
    width: 100%;
    border: 0;
    padding: 3px 21px;
    border-radius: 5px 0 0 5px;
}

.newsletter .tnp-email:focus {
    outline: 0;
}

.newsletter .tnp-submit {
    padding: 10px;
    border: 0;
    background-color: #e2e2e2;
    color: var(--white);
    border-radius: 2px;
    cursor: pointer;
    width: 56px;
    height: 40px;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter .tnp-submit path {
    transition-duration: .3s;
}

.newsletter .tnp-submit:hover {
    background-color: var(--main);
}

.newsletter .tnp-submit:hover path {
    stroke: var(--white)
}

.newsletter .tnp-privacy-field {
    margin-top: 14px;
}

.newsletter .tnp-privacy-field > label {
    display: flex;
    gap: 8px;
}

.newsletter .tnp-privacy-field > label .text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.newsletter .tnp-privacy-field > label .text,
.newsletter .tnp-privacy-field > label .text a {
    color: var(--white)
}

.newsletter .tnp-custom-checkbox {
    position: relative;
}

.newsletter .tnp-custom-checkbox > input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
}

.newsletter .tnp-custom-checkbox > span {
    width: 14px;
    display: block;
    height: 14px;
    border: 1px solid var(--grey);
    border-radius: 2px;
    background-color: var(--white);
    position: relative;
    transition-duration: .3s;
}

.newsletter .tnp-custom-checkbox > span:after {
    content: '\2713';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: var(--main);
    transition-duration: .3s;
    font-size: 14px;
    background-color: var(--white);
    line-height: 14px;
    text-align: center;
    border-radius: 2px;
    font-weight: 800;
}

.newsletter .tnp-custom-checkbox > input:checked + span {
    border: 1px solid var(--main);
    background-color: var(--white);
}

.newsletter .tnp-custom-checkbox > input:checked + span:after {
    opacity: 1;
}

body .wcml-dropdown-click.product,
.woocommerce .wcml-dropdown-click.product {
    margin: 0;
    padding-right: 15px;
    position: relative;
}

body .wcml-dropdown-click.product:after,
.woocommerce .wcml-dropdown-click.product:after {
    content: '';
    height: 20px;
    top: 50%;
    right: 0;
    border-right: 1px solid var(--black);
    position: absolute;
    transform: translateY(-50%);
    border-radius: 2px;
}

.product-images-wrapper {
    position: relative;
    width: 100%;
    grid-area: images;
}

.woocommerce .product-images-wrapper span.onsale {
    left: auto;
    top: 20px;
}

.woocommerce div.product .product-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.woocommerce form.cart .qib-container + button[type='submit']:not(#qib_id):not(#qib_id),
.woocommerce form.cart .qib-container + div:not(#qib_id):not(#qib_id):not(_) {
    margin: 10px 0 0;
    height: 45px;
    width: 100%;
    text-transform: uppercase;
    border-radius: 100px;
    transition-duration: .3s;
    border: 1px solid var(--main);
    color: var(--white);
    background-color: var(--main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce form.cart .qib-container + button[type='submit']:not(#qib_id):not(#qib_id):before,
.woocommerce form.cart .qib-container + div:not(#qib_id):not(#qib_id):not(_):before {
    content: '';
    background-image: url('data:image/svg+xml; utf8, <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.125 14.25H7.625V20.25H6.125V14.25ZM9.875 14.25H11.375V20.25H9.875V14.25ZM13.625 14.25H15.125V20.25H13.625V14.25ZM17.375 14.25H18.875V20.25H17.375V14.25Z" fill="white"/><path d="M22.7038 7.875L18.9717 0.75H17.2783L21.0105 7.875H3.98952L7.72166 0.75H6.02834L2.2962 7.875H1.25V13.1001L3.25887 23.25H21.7399L23.75 13.1993V7.875H22.7038ZM22.25 13.0507L20.5101 21.75H4.49112L2.75 12.9531V12.75H22.25V13.0507ZM22.25 11.25H2.75V9.375H22.25V11.25Z" fill="white"/></svg>');
    display: block;
    width: 25px;
    height: 25px;
    transition-duration: .3s;
}

.woocommerce form.cart .qib-container + button[type='submit']:not(#qib_id):not(#qib_id):hover,
.woocommerce form.cart .qib-container + div:not(#qib_id):not(#qib_id):not(_):hover {
    border: 1px solid var(--main);
    background-color: var(--white);
    color: var(--main);
}

.woocommerce form.cart .qib-container + button[type='submit']:not(#qib_id):not(#qib_id):hover:before,
.woocommerce form.cart .qib-container + div:not(#qib_id):not(#qib_id):not(_):hover:before {
    background-image: url('data:image/svg+xml; utf8, <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.125 14.25H7.625V20.25H6.125V14.25ZM9.875 14.25H11.375V20.25H9.875V14.25ZM13.625 14.25H15.125V20.25H13.625V14.25ZM17.375 14.25H18.875V20.25H17.375V14.25Z" fill="rebeccapurple"/><path d="M22.7038 7.875L18.9717 0.75H17.2783L21.0105 7.875H3.98952L7.72166 0.75H6.02834L2.2962 7.875H1.25V13.1001L3.25887 23.25H21.7399L23.75 13.1993V7.875H22.7038ZM22.25 13.0507L20.5101 21.75H4.49112L2.75 12.9531V12.75H22.25V13.0507ZM22.25 11.25H2.75V9.375H22.25V11.25Z" fill="rebeccapurple"/></svg>');
}

.woocommerce form.cart button[type='submit']:focus:not(#qib_id):not(#qib_id) {
    outline: none;
}

.product-payments {
    padding: 22px 0;
    display: flex;
    justify-content: center;
    border: 1px solid var(--main-light);
    border-left: 0;
    border-right: 0;
}

.product-payments  > img {
    max-width: 100%;
}

.product-summary-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    gap: 20px 55px;
}

.product-summary-info > span {
    display: flex;
    align-items: center;
    gap: 11px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.loading::after {
    top: 12px;
}

.woocommerce_cart__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce_cart__header .clear-cart-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 7px;
    background: transparent;
    border: 0;
    color: #3E3E3E;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.005em;
    cursor: pointer;
    transition-duration: .3s;
}

.woocommerce_cart__header .clear-cart-button:hover {
    color: var(--main);
}

.woocommerce_cart__header .clear-cart-button:hover > svg path {
    stroke: var(--main);
}

.woocommerce_cart__header .clear-cart-button > svg {
    width: 23px;
    height: 23px;
}

.woocommerce_cart__header .clear-cart-button > svg path {
    transition-duration: .3s;
}

.cart_info {
    display: flex;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    text-align: left;
    color: #808080;
}

.cart_info > svg {
    min-width: 32px;
}

.cart_info > span {
    padding: 6px 0 6px 15px;
}

.wc-block-components-checkbox label[for="subscribe-to-newsletter"] {
    align-items: center;
}

.wc-block-components-checkbox label[for="subscribe-to-newsletter"] svg {
    margin: 0;
    left: 3px;
}

.wc-block-components-checkbox label[for="subscribe-to-newsletter"] span {
    line-height: 1.5;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
}

.woocommerce table.shop_table ul#shipping_method li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.woocommerce table.shop_table ul#shipping_method li input[type="radio"] {
    margin-top: 0;
}

.woocommerce table.shop_table tr :nth-child(2),
.woocommerce-page table.shop_table tr :nth-child(2) {
    text-align: right;
}


.woocommerce-checkout .checkout-login,
.checkout-coupon {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--main-light);
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.woocommerce-checkout .showlogin,
.checkout-coupon .showcoupon {
    color: var(--main);
    display: inline-block;
    margin: 10px 0;
    text-decoration: none;
}

.woocommerce-checkout .showlogin:hover,
.checkout-coupon .showcoupon:hover {
    text-decoration: underline;
}

.woocommerce-checkout form.login,
.checkout-coupon form.checkout_coupon {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-checkout form.login {
    flex-direction: column;
    gap: 10px;
    flex-wrap: nowrap;
}

.woocommerce-checkout form.login .form-row,
.checkout-coupon form.checkout_coupon .form-row {
    padding: 0;
    margin: 0;
}

.woocommerce-account form .form-row {
    padding: 3px 0;
}

.select2-container--default .select2-selection--single,
.woocommerce form .form-row .input-text {
    padding: 10px;
    border: 1px solid var(--main);
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    height: auto;
}

.select2-container--default .select2-selection--single {
    padding:  6px 10px;
}

.checkout-coupon form.checkout_coupon .form-row.woocommerce-validated .select2-container,
.checkout-coupon form.checkout_coupon .form-row > input {
    border-radius: 5px 0 0 5px;
}

.checkout-coupon form.checkout_coupon [type='submit'].button {
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    padding: 9px 12px;
}

.checkout-coupon form.checkout_coupon [type='submit'].button:hover {
    border-left-color: var(--main)
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.form-checkout {
    display: flex;
    gap: 20px;
    margin: 30px 0 50px;
    flex-direction: column;
}

.form-checkout__col:first-child {
    border: 1px solid var(--light-border);
    border-radius: 5px;
    padding: 20px;
}

.woocommerce-billing-fields > h3 {
    margin: 0 0 10px;
}

.woocommerce-form__label {
    position: relative;
    padding-left: 30px
}

.woocommerce-form__label > input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.woocommerce-form__label > span {
    position: relative;
}

.woocommerce-form__label > span > a {
    color: var(--main);
    text-decoration: none;
}

.woocommerce-form__label > span > a:hover {
    text-decoration: underline;
}

.woocommerce-form__label > span:after {
    content: '';
    position: absolute;
    left: -24px;
    width: 15px;
    border: 1px solid;
    height: 15px;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    line-height: 16px;
    font-size: 15px;
    display: inline-flex;
}

.woocommerce-form__label > input:checked + span:after {
    content: '\2713'
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: var(--white);
    border-radius: 5px;
    border: 1px solid var(--light-border);
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    margin: 10px 0 0;
    background: var(--light-shadow-black);
    color: var(--black);
}

#add_payment_method #payment div.payment_box > p,
.woocommerce-cart #payment div.payment_box > p,
.woocommerce-checkout #payment div.payment_box > p {
    margin: 0;
}

.woocommerce-privacy-policy-text > p {
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.3;
}

.woocommerce-privacy-policy-text > p > a {
    text-decoration: none;
    color: var(--main);
}

.woocommerce-privacy-policy-text > p > a:hover {
    text-decoration: underline;
}

form .woocommerce-terms-and-conditions-wrapper .form-row label.checkbox {
    line-height: 1.3;
    font-size: 14px;
    display: flex;
    width: fit-content;
    justify-content: flex-start;
    padding-left: 20px;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

.woocommerce-checkout-review-order .order-button {
    padding: 13px;
    font-size: 19px;
    color: var(--white);
    border: 1px solid var(--main);
    background-color: var(--main);
    text-align: center;
    transition-duration: .3s;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1;
    margin-top: 20px;
    cursor: pointer;
}

.woocommerce-checkout-review-order .order-button:hover {
    color: var(--main);
    background-color: var(--white);
}

.wc-block-components-notice-banner__content li {
    margin-bottom: 7px;
}

.theme-mysteryhaft .irs--round .irs-from:before,
.theme-mysteryhaft .irs--round .irs-to:before,
.theme-mysteryhaft .irs--round .irs-single:before,
.theme-mysteryhaft .irs--round .irs-handle {
    border-color: var(--main);
}

.theme-mysteryhaft .irs--round .irs-handle,
.theme-mysteryhaft .irs--round .irs-bar,
.theme-mysteryhaft .irs--round .irs-from,
.theme-mysteryhaft .irs--round .irs-to,
.theme-mysteryhaft .irs--round .irs-single {
    background-color: var(--main);
}

.theme-mysteryhaft .irs--round .irs-grid {
    display: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    padding: 6px 13px;
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0;
    text-decoration: none;
    align-self: flex-start;
    border: 1px solid var(--main);
    background-color: var(--main);
    text-align: center;
    transition-duration: .3s;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)).woocommerce-account .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)).woocommerce-account .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)).woocommerce-account .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)).woocommerce-account .woocommerce input.button {
    line-height: 40px;
    padding: 3px 24px;
    text-align: center;
    justify-content: center;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
    color: var(--black);
    border-color: var(--black);
    background-color: var(--white);
}

.ovh-mobile {
    overflow: hidden;
}

.category-filters-content {
    display: flex;
}

.category-filters-content > div {
    width: 100%;
}

.container-aboutus > .alignwide {
    max-width: none;
    padding: 0;
}

.container-aboutus {
    background-image: url(./assets/images/bg.svg);
    background-position-y: -1px;
}

.container-aboutus .about-us-col {
    padding: 20px 0;
    margin: 0;
    gap: 0;
}

.container-aboutus .about-us-col.mobile-column-reverse {
    flex-direction: column-reverse;
}

.container-aboutus .about-us-col:last-child {
    padding-bottom: 41px;
}

.container-aboutus .about-us-col .button {
    margin: 17px 0 0;
}

.container-aboutus .container div {
    margin: 0;
}

.post .post-thumbnail {
    margin: 21px 0;
}

.post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-container {
    max-width: 868px;
    margin: 0 auto;
    padding: 0 11px;
}

.post .post-meta {
    display: flex;
    align-items: center;
    gap: 10px 65px;
}

.post .post-author {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-align: left;
    color: var(--main);
}

.post .post-author > b {
    color: var(--black);
    font-weight: 400;
}

.post .post-date {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 26px;
}

.post .entry-title {
    margin: 20px 0;
    font-family: var(--font-secondary);
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
}

.post .entry-content h2 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.4px;
    text-align: left;
    margin: 23px 0 0;
}

.post .entry-content p {
    margin: 14px 0 27px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.1px;
    text-align: left;
    color: var(--grey);
}

.post .entry-content p + p {
    margin-bottom: 24px;
}

.post .entry-content p + figure {
    margin: 44px 0 35px;
}

.post .entry-content blockquote {
    margin: 26px 0 45px;
}

.post .entry-content blockquote > p {
    margin: 0;
    font-style: italic;
    font-size: 20px;
    letter-spacing: -.65px;
    line-height: 1.3;
    color: var(--black);
}

.post .entry-content blockquote > cite {
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0.005em;
    text-align: left;
    color: #C98C31;
}

.post .simplesocialbuttons {
    position: relative;
}

.post .simplesocialbuttons:before {
    content: 'Nie zapomnij się podzielić!';
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
}

.post .simplesocialbuttons.simplesocialbuttons_inline.simplesocial-round-icon button {
    color: var(--main);
    border-color: var(--main);
}

.post .simplesocialbuttons.simplesocialbuttons_inline.simplesocial-round-icon button:hover {
    border-color: transparent;
    color: var(--white);
}

.post .simplesocialbuttons.simplesocialbuttons_inline.simplesocial-round-icon button.simplesocial-email-share:hover {
    background-color: var(--main);
}

.blog-pagination {
    margin: 32px 0 40px;
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 0;
    list-style: none;
    margin: 20px 0;
    max-width: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    padding: 0;
    display: flex;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--main);
    color: var(--main);
    border-bottom: 0;
    width: 100%;
    transition-duration: .3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--main-light);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a {
    border-bottom: 1px solid var(--main);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--main);
    color: var(--white);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    float: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
    padding: 10px;
}

.woocommerce-account:not(.page-id-10) .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
    display: flex;
    align-items: center;
}

.swiper-wrapper {
    display: flex;
}

.dgwt-wcas-sp * {
    white-space: nowrap;
}

.woocommerce ul.products[class*=columns-] li.product,
.woocommerce-page ul.products[class*=columns-] li.product {
    margin: 0;
}

.primary-navigation__left {
    display: flex;
    align-items: center;
}

.children-list {
    padding: 0;
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.children-list .menu-item > a {
    font-size: 14px;
    color: var(--grey);
    transition-duration: .3s;
}

.children-list .menu-item > a:hover {
    color: var(--main);
}

.top-section {
    margin-top: 39px;
}

.top-section__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-section__right,
.top-section__left {
    width: 100%;
}

.top-section__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.top-section__right > img {
    display: none;
}

.top-section__right > img,
.top-section__left > img {
    width: 100%;
    max-width: 100%;
}

.top-section__right-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px 20px;
    width: 100%;
    margin-top: 20px;
}

.top-section__right-text {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
}

.top-section__right-bottom .button {
    margin-left: auto;
    margin-right: auto;
}

.container-aboutus .about-us-col .about-us-button > a,
.blog-posts__content #infinite-handle span button,
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    border: 1px solid var(--main);
    color: var(--main);
    background-color: transparent;
    text-transform: uppercase;
    padding: 12px 20px;
    margin-left: auto;
    gap: 10px;
    transition: .3s;
    font-size: clamp(13px, 1.3vw, 16px);
    width: fit-content;
}

.container-aboutus .about-us-col .about-us-button > a {
    margin: 0;
}

.button-text {
    padding: 5px;
    border-radius: 0;
    border: 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.button-arrow {
    gap: 10px;
}

.button-arrow path {
    transition-duration: .3s;
}

.button--pseudo-arrow {
    content: '';
    background-image: url('data:image/svg+xml; utf8, <svg width="26" height="16" viewBox="0 0 26 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 7C0.447715 7 0 7.44772 0 8C0 8.55228 0.447715 9 1 9V7ZM25.7071 8.70711C26.0976 8.31658 26.0976 7.68342 25.7071 7.29289L19.3431 0.928932C18.9526 0.538408 18.3195 0.538408 17.9289 0.928932C17.5384 1.31946 17.5384 1.95262 17.9289 2.34315L23.5858 8L17.9289 13.6569C17.5384 14.0474 17.5384 14.6805 17.9289 15.0711C18.3195 15.4616 18.9526 15.4616 19.3431 15.0711L25.7071 8.70711ZM1 9H25V7H1V9Z" fill="white" /></svg>');
    display: block;
    height: 15px;
    width: 26px;
    transition-duration: .3s;
}

.container-aboutus .about-us-col .about-us-button > a:hover,
.blog-posts__content #infinite-handle span button:hover,
.blog-posts__content #infinite-handle span button:focus,
.button:not(.button-text):focus,
.button:not(.button-text):hover {
    border: 1px solid var(--white);
    color: var(--white);
    background-color: var(--main);
}

.container-aboutus .about-us-col .about-us-button:hover > a path,
.button:not(.button-text):focus path,
.button:not(.button-text):hover path {
    fill: var(--white);
}

.button-text:focus,
.button-text:hover {
    text-decoration: underline;
}

.cat-with-gallery {
    margin-top: 35px;
    background-image: url(./assets/images/bg.svg);
    background-size: auto 100%;
}

.cat-with-gallery__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 40px 0 52px;
}

.cat-with-gallery__text {
    background-color: var(--white);
    padding: 10px;
    margin-bottom: 19px;
}

.cat-with-gallery__text h2 {
    font-family: var(--font-secondary);
    font-size: 40px;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.cat-with-gallery__text p {
    text-transform: uppercase;
    font-size: 18px;
    margin: 0 0 42px;
    line-height: 1.4;
}

.cat-with-gallery__text .button {
    margin-left: auto;
    width: fit-content;
}

.cat-with-gallery__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 100% !important;
}

.cat-with-gallery__left {
    display: flex;
    align-items: center;
}

.cat-with-gallery__right {
    display: flex;
    align-items: center;
    position: relative;
}

.cat-with-gallery__gallery {
    overflow: hidden;
}

.cat-with-gallery__image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    transform: translateY(-19px);
    transition-duration: .3s;
    cursor: pointer;
}

.swiper-button-prev-custom path,
.swiper-button-next-custom path {
    transition-duration: .3s;
}

.swiper-button-next-custom {
    right: 0;
    left: auto;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: var(--main);
    border: 1px solid var(--main);
}

.swiper-button-prev-custom:hover path,
.swiper-button-next-custom:hover path {
    fill: var(--white);
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
    pointer-events: none;
}

.products-slider__wrapper {
    margin-top: 39px;
}

.products-slider__header {
    border: solid var(--main);
    border-width: 1px 0 1px 0;
    width: 100%;
}

.products-slider__header-content {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-slider__title {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 32px;
    width: calc(100% + 20px);
    padding: 20px 10px 10px;
    border-bottom: 1px solid var(--main);
}

.products-slider__text {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0;
}

.products-slider__wrapper .products  {
    counter-reset: my-counter;
}

.products-slider__wrapper .products .product > a {
    counter-increment: my-counter; 
}

.products-slider__wrapper .products .product > a:before {
    content: counter(my-counter, decimal-leading-zero);
    font-size: 18px;
    color: var(--grey);
    display: block;
    margin-bottom: 13px;
}

.products-slider__wrapper.products-slider__wrapper--related .products-slider__header-content {
    min-height: 0;
}

.products-slider__wrapper.products-slider__wrapper--related .products-slider__header-content .products-slider__title {
    max-width: none;
    border: 0;
    padding: 19px 0;
}

.products-slider__wrapper.products-slider__wrapper--related .products .product > a:before {
    display: none;
}

.homepage-products-slider__content .swiper-button-prev-custom,
.homepage-products-slider__content .swiper-button-next-custom {
    transform: translateY(-75px);
}

.home-about-us {
    margin-top: 32px;
    background-image: url(./assets/images/bg.svg);
    background-size: auto 100%;
}

.home-about-us__content {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    align-items: center;
}

.home-about-us__img {
    width: auto;
}

.home-about-us__img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about-us__text {
    background-color: #FAFAFA;
    padding: 0;
}

.home-about-us__text > h5 {
    margin: 0 0 20px;
    font-family: var(--font-secondary);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.2;
}

.home-about-us__text > p {
    margin: 0 0 35px;
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 500;
}

.type-post .entry-header .container {
    max-width: 1088px;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    grid-area: vars;
    width: 100%;
    float: none;
    order: 1;
}

.product-info {
    border: 1px solid var(--main);
    top: 20px;
    grid-area: info;
    order: 1;
}

.product-name-and-price {
    padding: 20px;
    border-bottom: 1px solid var(--main);
}

.product-name-and-price > h1 {
    margin: 0 0 20px;
    line-height: 1.1;
    font-family: var(--font-secondary);
    font-size: clamp(32px, 3vw, 40px);
    letter-spacing: -.8px;
}

.product-name-and-price > .product-price {
    margin: 0;
}

.product-name-and-price > .product-price span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 9px;
    align-items: flex-start;
}

.fpf-fields {
    margin: 0 0 20px;
    width: 100%;
}

.fpf-fields .fpf-field {
    padding: 20px 20px 17px;
    border: 1px solid var(--main);
    border-bottom: 0;
}

.fpf-fields .fpf-field:last-of-type {
    border-bottom: 1px solid var(--main);
    padding-bottom: 21px;
}

.fpf-fields .fpf-field .form-row {
    margin: 0;
    padding: 0;
    border: 0;
}

.woocommerce .fpf-fields .fpf-field:not(.fpf-radio) label {
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.woocommerce .fpf-fields .fpf-radio-colors .woocommerce-input-wrapper {
    margin: 0;
    gap: 16px;
    justify-content: flex-end;
}

.woocommerce .fpf-fields .fpf-radio-colors input[type="radio"]+label {
    margin: 0;
    width: auto !important;
}

.fpf-radio-colors input[type="radio"]+label > .fpf-radio-preview {
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.fpf-radio-colors input[type="radio"]+label > span:not(.fpf-radio-preview) {
    display: none;
}

.fpf-fields .fpf-field.fpf-radio {
    padding-bottom: 18px;
}

.fpf-fields .fpf-field.fpf-radio .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
}

.fpf-fields .fpf-field.fpf-radio .form-row:after,
.fpf-fields .fpf-field.fpf-radio .form-row:before {
    display: none;
}

.fpf-fields .fpf-field.fpf-radio legend {
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.fpf-fields .fpf-field.fpf-radio .form-row > label {
    line-height: 1;
    cursor: pointer;
    display: flex;
}

.fpf-fields .fpf-field.fpf-radio .form-row > label input {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.fpf-fields .fpf-field.fpf-radio .form-row > label input + span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--grey);
    transition-duration: .3s;
}

.fpf-fields .fpf-field.fpf-radio .form-row > label input:checked + span {
    color: var(--black);
}

.fpf-fields .fpf-field.fpf-select {
    position: relative;
}

.fpf-fields .fpf-field.fpf-select svg {
    position: absolute;
    right: 40px;
    bottom: 26px;
}

.woocommerce .fpf-fields .fpf-field.fpf-select select {
    appearance: none;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: 500;
    padding: 12px 24px 11px;
    border-radius: 100px;
    border: 1px solid var(--black);
}

.fpf-file .fpf-file-draggable {
    appearance: none;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: 500;
    padding: 12px 24px 11px;
    border-radius: 100px;
    border: 1px solid var(--black);
}

.fpf-file .fpf-file-item {
    padding: 0;
}

.fpf-file .fpf-file-draggable-error,
.fpf-file .fpf-file-draggable-loading,
.fpf-file .fpf-file-draggable-placeholder {
    display: flex;
    align-items: center;
    grid-area: 10px;
    justify-content: space-between;
}

.woocommerce .fpf-fields .fpf-field.fpf-file label {
    margin-bottom: 12px;
}

.fpf-file-items .fpf-file-draggable-placeholder {
    display: flex !important;
}

.fpf-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -35px;
    background: #fff;
    position: relative;
}

.fpf-preview:has([hidden]) {
    margin: 0;
}

.fpf-file-draggable-preview {
    font-size: 18px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

h2.yikes-custom-woo-tab-title {
    display: none;
}

.woocommerce div.product form.cart .button.fpf-file-draggable-delete {
    width: auto;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 20px;
    line-height: 1.4;
    border-radius: 50px;
    background-color: var(--main);
}

.woocommerce div.product form.cart .button.fpf-file-draggable-delete:hover {
    background-color: var(--white);
    color: var(--main);
}

.woofc-area.woofc-style-01 .woofc-no-item,
.woofc-area.woofc-style-01 .woofc-error {
    color: var(--black);
}

.woofc-area.woofc-style-01 .woofc-area-top {
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: var(--white);
    border-bottom: 1px solid var(--main);
    color: var(--black);
}

.woofc-area.woofc-style-01 .woofc-area-top .woofc-area-heading {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 3vw, 40px);
    line-height: 1;
    height: auto;
    display: flex;
    align-items: flex-end;
}

.woofc-area.woofc-style-01 .woofc-area-top .woofc-area-heading .woofc-area-count {
    font-family: var(--font-primary);
    font-size: 18px;
    display: inline-block;
    margin-bottom: 7px;
    line-height: 1;
    height: auto;
}

.woofc-area.woofc-style-01 .woofc-area-top .woofc-close {
    font-size: 29px;
    top: 20px;
    right: 20px;
    transform: none;
    color: var(--black);
}

.woofc-area.woofc-style-01 .woofc-area-mid {
    padding: 0;
    flex-grow: 0;
    margin: 0;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item {
    padding: 10px;
    border-bottom: 1px solid var(--main);
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item:last-child {
    border-bottom: 0;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item.woofc-item-has-remove:hover .woofc-item-inner,
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner,
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item.woofc-item-has-remove:hover {
    transform: none;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner {
    padding: 0 !important;
    gap: 10px;
    position: relative;
    align-items: flex-start;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove,
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-special,
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item:hover .woofc-item-inner .woofc-item-remove,
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item:hover .woofc-item-inner .woofc-item-special {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-thumb {
    width: 95px;
    flex: 0 0 95px;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner > div {
    margin: 0;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.4;
    padding-right: 20px;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info {
    display: flex;
    flex-direction: column;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-data {
    order: 1;
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    max-height: 40px;
    margin: 20px 0 0;
    overflow: auto;
    color: var(--grey);
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-data::-webkit-scrollbar {
    width: 3px;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-data::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-data::-webkit-scrollbar-thumb {
    background: #888; 
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-data::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-price,
.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-price span {
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-price {
    padding-left: 75px;
}

body .woofc-item-qty .qib-container:not(#qib_id):not(#qib_id) {
    width: auto;
    border: 0;
    position: relative;
    border-radius: 0;
    display: flex;
    align-items: center;
}

body .woofc-item-qty .qib-container:not(#qib_id):not(#qib_id):before {
    content: 'ilość:';
    font-size: 18px;
    line-height: 1.4;
}

body .woofc-item-qty .qib-container div.quantity:not(#qib_id):not(#qib_id) {
    max-width: none;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty {
    position: absolute;
    bottom: 70px;
    left: 105px;
}

body .woofc-item-qty .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
    width: 25px;
    font-size: 18px;
    line-height: 1.4;
    border: 0;
    color: var(--black);
    pointer-events: none;
    height: auto;
}

.woofc-area.woofc-style-01 .woofc-area-bot {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-data, .woofc-area.woofc-style-01 .woofc-area-bot .woofc-total {
    padding: 20px;
    border-bottom: 1px solid var(--main);
    color: var(--black);
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action {
    padding: 20px 20px 0;
    order: 1;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-continue {
    order: 0;
    padding: 20px 20px 0;
    margin: 0;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-continue span {
    color: var(--main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    width: 100%;
    border: 1px solid var(--main);
    display: block;
    border-radius: 100px;
    padding: 12px;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-continue span:hover {
    color: var(--white);
    background-color: var(--main);
    opacity: 1;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner .woofc-action-full {
    margin: 0;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner > div a.woofc-action-checkout {
    color: var(--white);
    background-color: var(--main);
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    padding: 12px;
    height: auto;
    line-height: 1.1;
    border: 1px solid var(--main);
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 9px;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner > div a.woofc-action-checkout:before {
    content: '';
    background-image: url('data:image/svg+xml; utf8, <svg width="26" height="16" viewBox="0 0 26 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 7C0.447715 7 0 7.44772 0 8C0 8.55228 0.447715 9 1 9V7ZM25.7071 8.70711C26.0976 8.31658 26.0976 7.68342 25.7071 7.29289L19.3431 0.928932C18.9526 0.538408 18.3195 0.538408 17.9289 0.928932C17.5384 1.31946 17.5384 1.95262 17.9289 2.34315L23.5858 8L17.9289 13.6569C17.5384 14.0474 17.5384 14.6805 17.9289 15.0711C18.3195 15.4616 18.9526 15.4616 19.3431 15.0711L25.7071 8.70711ZM1 9H25V7H1V9Z" fill="white" /></svg>');
    display: block;
    height: 15px;
    width: 26px;
    transition-duration: .3s;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner > div a.woofc-action-checkout:hover {
    color: var(--main);
    background-color: var(--white);
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner > div a.woofc-action-checkout:hover:before {
    background-image: url('data:image/svg+xml; utf8, <svg width="26" height="16" viewBox="0 0 26 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 7C0.447715 7 0 7.44772 0 8C0 8.55228 0.447715 9 1 9V7ZM25.7071 8.70711C26.0976 8.31658 26.0976 7.68342 25.7071 7.29289L19.3431 0.928932C18.9526 0.538408 18.3195 0.538408 17.9289 0.928932C17.5384 1.31946 17.5384 1.95262 17.9289 2.34315L23.5858 8L17.9289 13.6569C17.5384 14.0474 17.5384 14.6805 17.9289 15.0711C18.3195 15.4616 18.9526 15.4616 19.3431 15.0711L25.7071 8.70711ZM1 9H25V7H1V9Z" fill="rebeccapurple" /></svg>');
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    color: var(--black);
}

.woocommerce td.product-name dl.variation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.2;
}

.woocommerce td.product-name dl.variation p {
    margin: 0;
}

.woocommerce td.product-name dl.variation > dt {
    text-align: left;
}

.woocommerce td.product-name dl.variation a {
    display: inline-block;
}

.blog .site-main {
    overflow: hidden;
}

.page-id-6388 .category-desc {
    padding: 20px 0 65px;
}

.woofc-area .woofc-area-mid .woofc-undo .woofc-undo-inner a,
.woofc-area .woofc-area-mid .woofc-undo .woofc-undo-inner {
    color: var(--black);
}

.woofc-area .woofc-area-mid .woofc-undo .woofc-undo-inner {
    padding: 10px 0 0;
}

.blog .post-card__title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.blog .post-card__excerpt p {
    font-size: 18px;
    line-height: 1.2;
}

.first-post {
    background-image: url(./assets/images/bg.svg);
    background-size: auto calc(100% + 2px);
    background-position-y: -2px;
    background-repeat: no-repeat;
}

.first-post .post-card {
    display: grid;
    gap: 20px;
    align-items: center;
    padding: 37px 0;
    grid-template-columns: 1fr;
    box-shadow: none;
}

.first-post .post-card:before {
    display: none;
}

.first-post .post-card > .img .post-thumbnail img {
    aspect-ratio: 50 / 29;
}

.first-post .post-card__title {
    font-size: 22px;
    margin: 0 0 20px;
}

.first-post .post-card__text {
    background: #FAFAFA;
    height: auto;
    padding: 20px;
}

.first-post .post-card__excerpt {
    font-size: 18px;
    line-height: 1.4;
    color: var(--grey);
    margin: 0 0 34px;
}

.first-post .post-card__footer > a {
    margin-left: 0;
}

.first-post .post-card > .img {
    height: 100%;
}

.primary-navigation__content .site-logo + .site-branding {
    display: none;
}

@media screen and (max-width: 767px) {
    body.single-product .qib-container:not(#qib_id):not(#qib_id) {
        width: 100%;
        max-width: none;
    }

    body.single-product .qib-container div.quantity:not(#qib_id):not(#qib_id) {
        max-width: none;
    }

    body.single-product  .swiper-container .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
        width: 100%;
        height: 34px;
    }

    body.single-product  .qib-container .qib-button:not(#qib_id):not(#qib_id) {
        width: 54px;
    }
}

@media screen and (min-width: 524px) {
    .woocommerce div.product form.cart .button{
        width: calc(100% - 179px);
    }

    .homepage-cards__content {
        flex-direction: row;
    }

    .woocommerce .woocommerce-ordering__header {
        flex-direction: row;
        align-items: initial;
    }
    
    .woocommerce .woocommerce-ordering__content {
        margin-left: auto;
    }

    .category-filters .woof_redraw_zone {
        gap: 20px;
    }

    .error-404-content-banner {
        padding: 77px 0;
        margin: 100px auto;
    }
    
    .error-404-content-banner--text-b {
        font-size: 40px;
        line-height: 42px;
    }

    .blog-posts__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .post-card {
        box-shadow: 0px 0px 0 1px var(--main);
        border-bottom: 0;
    }

    .custom-form-row > p {
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .woocommerce div.product .product-top {
        display: grid;
        grid-template-areas:
            "images info"
            "images vars";
        grid-template-columns: 1fr 1fr;
    }

    .alignwide #breadcrumbs,
    .alignwide .woocommerce-notices-wrapper {
        padding: 0;
    }

    .swiper-button-next.main-slider__button-next,
    .swiper-button-prev.main-slider__button-prev {
        display: flex;
        align-items: center;
        justify-content: center;
        right: 12px;
        top: calc(50% - 50px);
    }

    .swiper-button-next.main-slider__button-next.swiper-button-disabled,
    .swiper-button-prev.main-slider__button-prev.swiper-button-disabled {
        opacity: .4;
        cursor: default;
    }

    .swiper-button-prev.main-slider__button-prev {
        right: auto;
        left: 6px;
    }

	.woocommerce #content div.product div.images,
    .woocommerce div.product div.images,
    .woocommerce-page #content div.product div.images,
    .woocommerce-page div.product div.images {
        max-width: none;
		width: 100%;
		margin-bottom: 0;
	}

	.woocommerce-product-gallery .product-swiper{
		overflow: hidden;
	}

	.woocommerce-tabs .dropdown-parent {
		position: relative;
		cursor: pointer;
	}

	.woocommerce-tabs .dropdown-toggle {
		display: flex;
		align-items: center;
	}

	.woocommerce-tabs .toggle-icon {
		margin-right: 5px;
	}

	.woocommerce-tabs .dropdown {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: var(--white);
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
		z-index: 1;
	}

	.woocommerce-tabs .dropdown.show {
		display: block;
	}

	.woocommerce-tabs  .dropdown-parent.open .toggle-icon::after {
		content: "-";
	}

    p.demo_store,
    .woocommerce-store-notice {
        padding: 0;
        line-height: 2;
    }

    .site-footer .widget > div.footer-copyright,
    .site-footer .footer-copyright {
        padding: 39px 0;
        flex-direction: row;
    }

    .site-footer figure.wp-block-gallery.has-nested-images {
        justify-content: flex-end;
    }

    .site-footer .footer-copyright p {
        text-align: left;
    }

    .site-footer .footer-copyright > div:nth-child(2) > p {
        text-align: right;
    }

    .site-footer figure.wp-block-gallery.has-nested-images .wp-block-image {
        width: 86px;
        max-width: 86px;
    }

    .woocommerce div.product form.cart .button{
        width: 100%;
    }

    .homepage-tabs {
        padding-top: 40px;
    }

    .homepage-tabs-header {
        flex-direction: row;
        gap: 10px;
        padding-left: 10px;
        margin-bottom: 46px;
    }

    .woocommerce ul.products li.product a {
        pointer-events: initial;
    }

    .product-card-colors > span:not(.product-card-count) {
        width: 13px;
        height: 13px;
        gap: 4px;
    }

    .product-card-count {
        padding-left: 10px;
    }

    .homepage-tabs-footer {
        margin-top: 30px;
    }

    .tab-swiper-button {
        display: block;
        position: absolute;
        width: 42px;
        height: 42px;
        padding: 15px;
        background: transparent;
        top: calc(50% - 59px);
        z-index: 1;
        left: 0;
        cursor: pointer;
    }

    .tab-swiper-button.next {
        right: 0;
        left: auto;
    }

    .tab-swiper-button:before {
        content: '';
        border: 4px solid var(--black);
        border-radius: 2px;
        width: 100%;
        height: 100%;
        display: block;
        transform: rotate(-45deg);
        border-bottom: 0;
        border-right: 0;
    }

    .tab-swiper-button.next:before {
        transform: rotate(135deg);
    }

    #breadcrumbs.absolute-breadcrumbs {
        left: 70px;
    }

    .homepage-banner-with-slider {
        margin-top: 39px;
    }

    .banner-with-slider {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 36px;
        border-top: 10px solid var(--main);
        min-height: 440px;
    }

    .banner-content-text > strong {
        font-size: clamp(18px, 2vw, 24px);
    }

    .category-desc p strong {
        font-size: 26px;
    }

    .section-why-shop-mysteryhaft{
        margin-top: 41px;
    }

    .primary-navigation {
        max-height: 100px;
        flex-direction: row;
        padding-bottom: 0;
        background-color: transparent;
    }

    .above-header__middle {
        order: 0;
        width: 28%;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .above-header__left {
        width: auto;
        justify-content: flex-start;
    }

    .above-header__right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 22px;
        min-height: 30px;
    }

    .above-header__wrapper {
        gap: 20px;
        padding: 7px 0;
    }

    .menu-button-container {
        order: 4;
        margin-left: 10px;
        margin-right: 0;
    }

    .search .dgwt-wcas-search-wrapp {
        position: static;
        min-width: 230px;
        opacity: 1;
    }

    .search__mobile-icon {
        display: none;
    }

    div.search {
        max-width: 309px;
        width: 100%;
    }

    div.search .dgwt-wcas-search-wrapp {
        position: static;
        opacity: 1;
        max-width: 600px;
        transform: rotateX(0deg);
    }

    .primary-navigation__mobile-logo {
        margin-left: 0;
    }

    .section-title {
        margin: 54px 0 0;
        font-size: 36px;
        line-height: 42px;
    }

    .homepage-products-slider {
        margin-top: 42px;
        margin-bottom: 20px;
    }

    .woocommerce ul.products li.product .product-size{
        padding: 3px 20px 0;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product{
        padding-bottom: 15px;
    }

    .product-last-section-wrapper {
        bottom: 20px;
        padding: 0 20px;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .product .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
        width: 25px;
        height: 42px;
    }

    .single .product .qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
        height: 44px;
    }

    .product .add_to_cart_button:not(#qib_id):not(#qib_id):not(_) {
        width: calc(100% - 85px);
        height: 44px;
    }

    .product .qib-button:not(#qib_id):not(#qib_id) {
        height: 42px;
    }

    .single .product .qib-button:not(#qib_id):not(#qib_id) {
        height: 44px;
    }

    .product .qib-container div.quantity:not(#qib_id):not(#qib_id) {
        max-width: calc(100% - 48px);
    }

    .homepage-card__text > h3 {
        margin: 0 0 45px;
    }

    .homepage-card__text.homepage-card__text--middle > h3 {
        margin-bottom: 30px;
    }

    .homepage-card__text {
        margin-top: 9px;
    }

    .homepage-products-slider .products-slider {
        margin-top: 35px;
    }

    .page .woocommerce ul.products li.product,
    .page .woocommerce-page ul.products li.product {
        padding-bottom: 15px;
    }

    .homepage-products-slider .button__secondary {
        margin-top: 34px;
    }

    .banner-content.right {
        transform: translateX(10px);
        overflow: visible;
        margin: calc(-9vw + 6px) 0 0;
        width: 33%;
        justify-content: flex-end;
        min-width: 500px;
    }

    .banner-content-text {
        transform: translateX(53px);
        min-width: calc(100% + 40px);
    }

    .banner-content.right picture {
        height: 100%;
    }

    .banner-content__texts-item {
        max-width: 208px;
    }

    .banner-content__texts-item > span {
        max-width: 150px;
    }

    .category-desc > .short {
        display: flex;
        margin-bottom: 43px;
    }

    .category-desc p.img {
        width: calc(50% + 10px);
    }

    .category-desc .text {
        width: calc(50% - 30px);
        margin-left: 15px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 48px;
    }

    .category-desc h5,
    .category-desc h5 > span {
        font-size: 36px;
        font-weight: 600;
        line-height: 42px;
        margin: 0;
    }

    .category-desc .category-desc-btn {
        font-size: 13px;
        margin-top: 23px;
    }

    .blog-posts__title {
        font-size: 40px;
    }

    .post-card__title {
        font-size: 26px;
        line-height: 33px;
    }

    .banner-content__texts-with-icons {
        width: calc(100% + 18px);
        position: relative;
        z-index: 1;
    }

    .footer-widget-wrapper {
        gap: 32px;    
        padding: 45px 0 26px;
    }
    
    .footer-widget-wrapper .widgettitle {
        cursor: default;
        margin-bottom: 19px;
    }

    .footer-widget-wrapper .widgettitle + div {
        max-height: none;
    }

    .footer-widget-wrapper .widgettitle:after {
        display: none;
    }

    .footer-widget-wrapper .widgettitle.open + div {
        max-height: none;
        margin-top: 0;
        margin-bottom: 0;
    }

    .site-footer .widget > .footer-widget-images > .wp-block-group__inner-container {
        flex-direction: row;
        gap: 88px;
    }

    .footer-widget-wrapper > .footer-widget {
        width: calc(50% - 20px);
        margin-bottom: 0;
    }

    .woocommerce-product-gallery__slider {
        overflow: hidden;
        width: 80%;
        max-width: 524px;
    }

    .woocommerce-product-gallery__thumbs {
        width: 20%;
        max-width: 114px;
    }

    .thumb-swiper-button {
        top: 8px;
        left: calc(50% - 3px);
        transform: translateX(-50%);
    }

    .thumb-swiper-button.next {
        top:auto;
        bottom: 8px;
    }

    .woocommerce-tabs-header {
        margin-top: 68px;
        justify-content: center;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc > h3,
    .woocommerce div.product .woocommerce-tabs .panel .desc > h2{
        margin: 98px 0 46px;
        text-align: center;
        font-size: 36px;
        line-height: 42px;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc-section {
        flex-direction: row;
        align-items: center;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc{
        align-items: center;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc > h3 {
        margin: 80px 0 31px;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc-section:nth-of-type(2n) > div {
        padding-top: 51px;
        padding-right: 100px;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc-section > div{
        padding-right: 50px;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc-section:nth-of-type(2n){
        align-items: flex-start;
        padding-left: 7px;
        gap: 40px;
        padding-right: 10px;
    }

    .woocommerce div.product .product_title{
        font-size: 36px;
        line-height: 42px;
    }

    .theme-mysteryhaft .custom-page-title {
        font-size: 36px;
        line-height: 37px;
    }

    .woocommerce .cart_totals .shop_table .order-total td{
        font-size: 26px;
        font-weight: 700;
        line-height: 23px;
    }

    .woocommerce-cart-form__cart-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-right: 0;
    }

    .woocommerce-cart .woocommerce_cart .product-remove {
        position: static;
        margin-left: auto;
        margin-right: 21px;
    }

    .woocommerce-cart .woocommerce_cart .product-quantity {
        width: 21%;
        margin-top: initial;
        margin-right: 32px;
    }
    .woocommerce-cart .woocommerce_cart .product-price {
        font-size: 26px;
        width: 22%;
        text-align: center;
    }

    .woocommerce-cart .woocommerce_cart .product-thumbnail {
        width: 100%;
    }

    .woocommerce-cart .woocommerce_cart .product-name {
        min-width: 164px;
        max-width: 164px;
        width: 164px;
    }

    body.woocommerce-cart .qib-container:not(#qib_id):not(#qib_id) {
        margin: 0 auto;
    }

    .woocommerce .shop_table a.remove {
        width: auto;
    }

    body.woocommerce-cart .qib-container .quantity input.qty:not(#qib_id):not(#qib_id),
    body.woocommerce-cart .qib-button:not(#qib_id):not(#qib_id) {
        height: 45px;
    }

    .woocommerce-cart .woocommerce_cart .product-remove > svg {
        height: auto;
    }

    .woocommerce .cart_totals .shop_table .coupon .button {
        font-size: 20px;
        padding: 32px 50px 32px 20px;
    }

    .form-checkout {
        flex-direction: row;
    }

    .form-checkout__col:last-child {
        max-width: 436px;
    }

    .form-checkout__col {
        width: 100%;
    }

    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
        font-size: 16px;
        padding: 12px 30px;
    }

    .wp-block-columns .wp-block-column .no-gap > div {
        flex-basis: auto;
        flex-grow: 0;
        width: 50%;
    }

    .about-us-text-align-center-p {
        font-size: 17px;
    }

    .contact-us-section {
        flex-wrap: nowrap !important;
        margin: 0 0 40px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        margin: 15px 20px 15px 0;
    }

    .woocommerce-account:not(.page-id-10)  .woocommerce {
        flex-direction: row;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        max-width: 200px;
    }

    .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
        border-radius: 10px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .woocommerce .single-product .related{
        margin: 98px 0 77px;
    }

    .woocommerce .single-product .related h4{
        font-size: 36px;
        line-height: 42px;
    }

    .woocommerce-account.logged-in .container > .woocommerce {
        display: flex;
    }

    .top-section__content {
        flex-direction: row;
        gap: 0;
    }

    .top-section__right,
    .top-section__left {
        width: 50%;
    }

    .top-section__right {
        padding-left: 40px;
    }

    .top-section__right > img {
        display: block;
    }

    .top-section__right-text {
        margin: 0;
    }

    .cat-with-gallery__content {
        flex-direction: row;
    }

    .cat-with-gallery__left {
        width: 45%;
        max-width: 580px;
    }

    .cat-with-gallery__right {
        max-width: 55%;
    }

    .cat-with-gallery__text {
        padding: 40px;
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 60px;
        height: 60px;
        transform: translateY(-29px);
    }

    .home-about-us__content {
        flex-direction: row;
    }

    .home-about-us__text {
        width: calc(70% - 40px);
        padding: 20px;
    }

    .home-about-us__text > p {
        margin-bottom: 93px;
    }

    .newsletter__content {
        flex-direction: row;
    }

    .newsletter__right,
    .newsletter__left {
        width: 50%;
    }

    .newsletter__title {
        font-size: 40px;
        max-width: 450px;
    }
    
    .newsletter__text {
        max-width: 450px;
    }

    .newsletter form {
        max-width: 555px;
    }

    .products-slider__header-content {
        flex-direction: row;
        min-height: 152px;
    }

    .products-slider__title {
        max-width: 283px;
        border-right: 1px solid var(--main);
        border-bottom: 0;
        width: auto;
        padding: 37px 20px 38px 0;
        font-size: 40px;
    }

    .products-slider__text {
        max-width: 412px;
        padding: 0;
    }

    .woocommerce ul.products li.product .price {
        gap: 25px;
    }

    .post-card {
        padding: 40px 20px 14px;
    }

    .post-card__text {
        padding: 20px;
    }

    .woocommerce form.cart .qib-container + button[type='submit']:not(#qib_id):not(#qib_id),
    .woocommerce form.cart .qib-container + div:not(#qib_id):not(#qib_id):not(_) {
        margin: 0 0 0 20px;
        width: calc(100% - 115px);
    }

    .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item {
        padding: 20px;
    }

    .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner {
        gap: 20px;
    }

    .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-price {
        padding-left: 95px;
    }

    .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty {
        bottom: 63px;
        left: 115px;
    }

    .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title {
        font-size: 19px;
    }

    .first-post .post-card {
        grid-template-columns: 1fr 1fr;
    }

    .first-post .post-card__title {
        font-size: 30px;
    }
    
    .first-post .post-card__text {
        padding: 40px;
    }

    .first-post {
        background-size: 100% auto;
    }

    .custom-form-row > p {
        gap: 28px;
    }
    
    .contact-right form {
        gap: 18px;
    }

    .contact-left {
        max-width: 301px;
        border-right: 1px solid var(--main);
    }

    .contact-row:before {
        width: 100vw;
        right: 0;
    }

    .contact-right {
        padding: 38px 20px;
        border-right: 1px solid var(--main);
        border-bottom: 1px solid var(--main);
    }

    .container-aboutus .wp-block-columns .wp-block-column .wp-block-image {
        height: 100%;
    }
    
    .container-aboutus .wp-block-columns .wp-block-column .wp-block-image > img {
        height: 100%;
        object-fit: cover;
    }

    .wp-block-columns .wp-block-column .section-with-img__text,
    .wp-block-column .section-with-img__text {
        margin-left: 0;
        margin-right: 20px;
        max-width: calc(50% - 20px);
    }
    
    
    .wp-block-columns .wp-block-column .section-with-img__text.right,
    .wp-block-column .section-with-img__text.right {
        margin-left: 20px;
        margin-right: 0;
    }

    .container-aboutus .about-us-col {
        padding: 42px 0;
    }

    .container-aboutus .about-us-col.mobile-column-reverse  {
        flex-direction: row;
    }

    .wp-block-columns {
        flex-wrap: nowrap !important;
    }

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

@media screen and (min-width: 1024px) {
    .menu-button-container,
    .primary-navigation__mobile-logo {
        display: none;
    }

    .primary-navigation__content .site-branding {
        display: flex;
    }

    .primary-navigation__right > .primary-navigation__ig {
        display: flex;
    }

    .primary-navigation__left {
        display: none;
    }

    .primary-navigation__right {
        display: none;
    }

    .primary-navigation__content {
        position: static;
        justify-content: center;
        top: 0;
        max-width: none;
        height: auto;
        flex-direction: row;
        padding: 0;
        width: 100%;
        background-color: transparent;
        gap: 20px;
        padding-right: 70px;
    }

    .primary-navigation__right .search .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon svg {
        width: 28px;
        height: 28px;
    }

    .category-filters-button,
    .category-filters-filter-mask,
    .primary-navigation__mask {
        display: none;
    }

    .menu-wrapper {
        flex-direction: row;
        gap: 1.75vw;
    }

    .woocommerce div.product form.cart .button{
        width: calc(100% - 179px);
    }

    .homepage-tabs-buttons {
        flex-wrap: nowrap;
        gap: 0;
    }

    .homepage-tab-button {
        flex-grow: initial;
        width: 100%;
        min-width: 216px;
    }

    .category-desc.category-desc--homepage {
        padding: 65px 0 55px;
    }

    .product-last-section-wrapper {
        gap: 10px 20px;
    }

    .product .add_to_cart_button:not(#qib_id):not(#qib_id):not(_) {
        width: calc(100% - 115px);
    }

    .product .qib-container div.quantity:not(#qib_id):not(#qib_id) {
        max-width: calc(100% - 68px);
    }

    .banner-content__texts-item {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-content__texts-item > span {
        font-size: 20px;
        font-weight: 400;
        line-height: 23px;
        letter-spacing: 0;
        text-align: center;
        max-width: 200px;
    }

    .banner-content__texts-item > svg {
        width: 60px;
        margin-bottom: 23px;
    }

    .banner-content-text > .banner-title {
        font-size: 46px;
        font-weight: 700;
        line-height: 54px;
        text-align: left;
        margin: 12px 0 70px;
    }

    .banner-content {
        width: calc(50% - 10px);
        min-width: 580px;
    }

    .banner-content.right {
        width: 65%;
        min-width: 600px;
    }

    .menu-item.menu-item-has-children > a {
        pointer-events: initial;
    }

    .menu-item.menu-item-has-children:hover > a {
        animation: none;
    }

    .woocommerce div.product .woocommerce-tabs .panel .desc-section {
        gap: 90px;
    }

    .menu-item.menu-item-has-children > a {
        pointer-events: initial;
    }

    .woocommerce_cart {
        flex-direction: row;
    }

    .woocommerce-cart-form {
        width: 70%;
        max-width: 905px;
    }

    .woocommerce .cart-collaterals,
    .woocommerce-page .cart-collaterals {
        max-width: 438px;
        overflow: hidden;
        margin-top: 52px;
        width: 40%;
    }

    .woocommerce .shop_table {
        width: calc(100% - 7px);
        padding: 25px 10px 21px;
    }

    .woocommerce .cart_totals .shop_table .order-total td{
        padding: 27px 18px 30px 0;
    }

    .woocommerce-products-header {
        height: auto;
    }

    .ovh-mobile {
        overflow: visible;
    }

    .open .primary-navigation__content {
        background-color: transparent;
    }

    .site-header {
        padding: 0;
    }

    .menu-wrapper > .menu-item {
        flex-direction: row;
        align-items: center;
    }

    .with-images-container .images {
        display: flex;
        gap: 20px;
        width: 50%;
        justify-content: flex-end;
    }

    .with-images-container .images > img {
        aspect-ratio: 1 / 1;
        max-width: 324px;
        width: 50%;
    }

    .header__link-cart {
        display: flex;
        position: absolute;
        right: -75px;
        border-left: 1px solid var(--main);
        padding: 14px 11px 0 20px;
    }

    .with-images-container .sub-menu-wrapper .menu-item > a {
        font-size: 12px;
    }

    .menu-item.menu-item-has-children .sub-menu {
        position: absolute;
        padding: 40px 0;
    }

    .menu-item > a {
        font-size: 14px;
    }

    .with-images-container {
        gap: 20px;
        justify-content: space-between;
    }

    .with-images-container .sub-menu-wrapper {
        gap: 20px 123px;
    }

    .children-list {
        margin-top: 44px;
        gap: 18px;
    }

    .menu-item.menu-item-has-children:hover > .sub-menu {
        box-shadow: 0px 2px 16px var(--light-shadow-black);
    }

    .top-section__right-bottom {
        flex-direction: row;
        align-items: center;
        margin-top: 67px;
    }

    .top-section__right-text {
        text-align: left;
        max-width: 289px;
    }

    .top-section__right-bottom .button {
        margin-right: 0;
    }

    .top-section__right {
        padding-bottom: 44px;
    }

    .category-product-and-loop {
        flex-direction: row;
    }
    
    .category-product-and-loop__left {
        width: 25%;
        min-width: 245px;
        max-width: 326px;
        border-right: 1px solid var(--main);
    }

    .category-product-and-loop__title {
        font-size: 40px;
        padding: 20px 20px 20px 0;
    }
    
    .category-product-and-loop__title:before {
        width: calc(100vw + 100%);
        right: 0;
    }

    .category-product-and-loop__subcategories > li > a {
        padding: 20px 20px 20px 0;
    }

    .category-product-and-loop__subcategories > li:before {
       width: 100vw;
       right: 0;
    }

    .category-product-and-loop__right {
        width: 80%;
    }

    .woocommerce .woocommerce-ordering__header {
        margin-bottom: 38px;
        padding: 22px 0 20px 20px;
    }
    
    .woocommerce .woocommerce-ordering__header:before {
        width: 100vw;
        left: 0;
    }

    .category-product-and-loop__right .loop {
        padding: 0 0 0 19px;
    }

    .category-filters-filter-p {
        display: inline-block;
        margin: 0;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
    }

    .woof_container select,
    .woocommerce-ordering > select {
        padding: 10px 48px 9px 20px;
        font-size: 16px;
        max-width: 210px;
    }
    
    .woof_block_html_items:after,
    .woocommerce .woocommerce-ordering:after {
        right: 27px;
    }

    .blog-posts__content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 41px;
        width: 100%;
        left: 0;
    }

    .post-card {
        padding: 40px 0 14px;
        box-shadow: none;
    }

    .post-card:before {
        content: '';
        height: 100%;
        width: 1px;
        background-color: var(--main);
        position: absolute;
        right: -21px;
        top: 0;
    }

    .post-card:nth-child(2):after,
    .post-card:nth-child(4n + 1):after {
        content: '';
        height: 1px;
        width: 200vw;
        background-color: var(--main);
        position: absolute;
        left: -50vw;
        bottom: -1px;
        padding: 0;
    }

    .post-card:nth-child(3n + 1):before {
        display: none;
    }

    .woocommerce div.product .product-top {
        grid-template-columns: 1fr 60%;
    }

    .top-section__right > img {
        width: auto;
    }

    .first-post .post-card {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-right > p {
        margin: 0 20px 40px;
    }

    .wp-block-columns .contact-form {
        margin: 0 20px;
    }

    .contact-right > h2 {
        font-size: 30px;
        margin-bottom: 31px;
    }
}

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

    .footer-widget-wrapper {
        flex-wrap: nowrap;
        padding: 64px 0 26px;
        justify-content: space-between;
    }

    .footer-widget-wrapper > .footer-widget {
        width: auto;
    }

    .footer-widget-wrapper > .wp-block-columns,
    .footer-widget-wrapper > .footer-widget {
        width: auto;
        order: 0;
    }

    .site-footer > .alignwide > .widget:last-child {
        margin-top: 14px;
    }

    .tab-swiper-button.next,
    .tab-swiper-button.swiper-button-next-best-in-cat {
        right: 104px;
    }

    .swiper-button-next-related.next {
        right: 0;
    }

    .homepage-card__text.homepage-card__text--middle {
        margin-top: 17px;
    }

    .homepage-card__text.homepage-card__text--middle > h3 {
        margin-bottom: 30px;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .archive.woocommerce ul.products {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .primary-navigation__content .site-branding .site-logo {
        padding: 9px 40px 6px;
    }

    .menu-item > a {
        font-size: 16px;
    }

    .home-about-us__img {
        width: 50%;
    }
    
    .home-about-us__text {
        width: calc(50% - 40px);
    }

    .home-about-us__text > h5 {
        font-size: 40px;
    }

    .home-about-us__content {
        padding: 40px 0;
        gap: 40px;
    }

    .home-about-us__text {
        padding: 40px;
    }

    .woocommerce div.product .product-top {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }

    .product-info {
        width: 33.3%;
        position: sticky;
        order: 0;
    }

    .product-images-wrapper {
        width: 33.4%;
    }

    .woocommerce #content div.product div.summary,
    .woocommerce div.product div.summary,
    .woocommerce-page #content div.product div.summary,
    .woocommerce-page div.product div.summary {
        width: 33.3%;
        top: 20px;
        position: sticky;
        order: 0;
    }

    .wp-block-columns .wp-block-column .section-with-img__text,
    .wp-block-column .section-with-img__text {
        padding: 27px 42px;
        margin-right: 40px;
        max-width: calc(50% - 40px);
    }
    
    
    .wp-block-columns .wp-block-column .section-with-img__text.right,
    .wp-block-column .section-with-img__text.right {
        margin-left: 40px;
    }
}

@media screen and (min-width: 1440px) {
    .menu-wrapper {
        gap: 38px;
    }

    .banner-with-slider {
        justify-content: flex-end;
    }

    .banner-content.left {
        max-width: 580px;
    }

    .banner-content.right {
        width: calc(60vw - 80px);
    }

    .banner-content-text {
        transform: translateX(33px);
    }

    .primary-navigation__content {
        gap: 60px;
        padding-right: 111px;
        justify-content: space-between;
    }

    .header__link-cart {
        right: -108px;
        padding: 14px 11px 0 38px;
    }

    #mini-cart-count {
        right: -2px;
    }

    .swiper-button-prev-custom {
        left: -30px;
    }

    .swiper-button-next-custom {
        left: auto;
        right: -30px;
    }
}

@media screen and (min-width: 1600px) {
    .banner-content-text {
        transform: translateX(53px);
    }

    .banner-content.right {
        width: calc(60vw - 103px);
    }
}
.wpb_category_n_menu_accordion ul>li,
.wpb_wmca_accordion_wrapper_theme_dark>ul ul,
.wpb_wmca_accordion_wrapper_theme_dark>ul>li>a:hover, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current_page_ancestor>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current_page_parent>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current_page_item>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-menu-parent>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-menu-ancestor>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-menu-item>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.current-cat>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.wpb-wmca-current-cat-parent>a, .wpb_wmca_accordion_wrapper_theme_dark>ul>li.wpb-submenu-indicator-minus>a{
    background-color: #fff;
}
.wpb_category_n_menu_accordion ul li a,
.wpb_wmca_accordion_wrapper_theme_dark ul ul li a{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;   
    color: #000000 !important;
}
.wpb_category_n_menu_accordion>ul>li{
    padding: 20px 20px 20px 0;
}
.childer_ul{
    display: none;
}
.childer_ul.active{
    display: block;
    padding-left: 10px;
    width: 100%;
}
.parent_li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
/* .parent_li > a:after{ */
.parent_li .arrdown{
    /* content: ''; */
    position: relative;
    width: 14px;
    height: 14px;
    top: calc(50% - 3px);
    transform: translateY(-50%) rotate(45deg);
    margin-right: 10px;
    border-right: 1px solid #3E3E3E;
    border-bottom: 1px solid #3E3E3E;
}
.parent_li .arrdown:hover{
    cursor: pointer;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}
.parent_li .arrdown.active{
    border-left: 1px solid #3E3E3E;
    border-top: 1px solid #3E3E3E;
    border-right: 0px solid #000;
    border-bottom: 0px solid #000;
}
.parent_li .arrdown.active:hover{
    border-right: 0px solid #000;
    border-bottom: 0px solid #000;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
}
.parent_li > a{
    width: calc(100% - 35px) !important;
}
.parent_li .allowClick::after{
    /* display: none; */
}
.childer_ul li a{
    padding: 15px 15px 15px 0;
    font-size: 15px;
}
.section__title.marki__title{
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
}
.marki__logos .marki__item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
}
.marki__logos .marki__item a{
    font-size: 18px;
    font-weight: bold;
}
.marki__logos .marki__item a:hover{
    text-decoration: underline;
}

.prefootue{
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-section__left {
    width: 500px;
    max-width: 100% !important;
}
.top-section__left svg,
.top-section__left img{
    max-width: 100% !important;
}