@charset "UTF-8";

/*
Theme Name: altopharma
Author: Estima Group
Author URI: https://wordpress.org/
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: altopharma
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

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

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

    /* Colors */
    --first: #2E2E2E;
    --second: #9D825A;
    --third: #F0F0F0;
    --fourth: #D9D9D9;
    --fifth: #F9F9F9;
    --sixth: #727272;
    --seventh: #FFB3BF;
    --eighth: #646637;
    --ninth: #E1D3C8;
    --tenth: #969696;
    --white: #FFFFFF;
    --shadow: #0000004d;
}

.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 {
    width: 100%;
    height: auto;
    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(--first);
    text-decoration: none;
}

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

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

.woocommerce-notices-wrapper,
.container {
    padding: 0 10px;
    max-width: 1298px;
    margin: 0 auto;
}

.woocommerce-notices-wrapper {
    margin-top: 28px;
}

.container .woocommerce-notices-wrapper {
    padding: 0;
    margin: 0;
}

.logo img {
    width: 100%;
    height: auto;
}

.button {
    padding: 0;
    background: transparent;
    border: 0;
}

.text-button {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    transition-duration: .3s;
    padding: 2px;
}

.basic-button {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    padding: 5.5px 14px;
    background-color: var(--second);
    color: var(--white);
    border: 1px solid var(--second);
    display: flex;
    align-items: center;
    width: fit-content;
    transition-duration: .3s;
    cursor: pointer;
}

.basic-button:hover {
    background-color: var(--white);
    color: var(--second);
}

.basic-button--outline {
    background-color: var(--white);
    color: var(--second);
}

.basic-button--outline:hover {
    background-color: var(--second);
    color: var(--white);
}

.text-block-button {
    background-color: transparent;
    color: var(--eighth);
    border: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    transition-duration: .3s;
    margin: 0;
    text-transform: uppercase;
}

.text-block-button:hover {
    color: var(--first);
}

.header__categories,
.header__bottom .lang,
.header__bottom .menu,
.header__bottom .logo,
.header__bottom .my-account,
.header__top .menu,
.header__top .phone {
    display: none;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.header__top .logo {
    max-width: 188px;
}

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

.header__bottom .cart {
    position: relative;
    display: flex;
}

.header__bottom .cart svg {
    width: 41px;
}

.header__bottom #mini-cart-count {
    position: absolute;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-color: var(--second);
    right: 0;
    top: 7px;
}

.header__bottom #mini-cart-count > span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.header__bottom .phone svg {
    width: 26px;
    height: auto;
}

.header__bottom .search {
    margin: 0 25px 0 auto;
}

.header__bottom .buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 3px 0;
}

.header__bottom .buttons > span {
    display: none;
}

.header__bottom .favorites {
    display: none;
}

.menu-button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 32px;
    cursor: pointer;
    border: 0;
    padding: 0;
    background-color: transparent;
}

.menu-button > span {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--first);
    transition-duration: .3s;
}

.menu-button.open > span {
    transform: rotate(45deg);
}

.menu-button.open > span:first-child {
    opacity: 0;
    transform: translate(0px, 12px) rotate(45deg);
}

.menu-button.open > span:last-child {
    transform: translate(0px, -12px) rotate(-45deg);
}

.dgwt-wcas-search-icon {
    width: auto;
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon {
    max-width: 100%;
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-icon.js-dgwt-wcas-search-icon-handler svg {
    transition-duration: .3s;
}

html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon:hover .dgwt-wcas-search-icon.js-dgwt-wcas-search-icon-handler {
    color: var(--second);
}

.sub-menu,
.menu-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sub-menu {
    gap: 0;
    padding-left: 20px;
    transition-duration: .3s;
}

.sub-menu .menu-item {
    max-height: 0;
    overflow: hidden;
    transition-duration: .3s;
}

.menu-item-has-children > a {
    pointer-events: none;
    position: relative;
}

.menu-item-has-children > a:after {
    content: url('data:image/svg+xml; utf8, <svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.34668 1L4.01001 4.08L0.673347 1" stroke="currentColor"/></svg>');
    transform: translateY(-2px);
    transition-duration: .3s;
}

.menu-item-has-children:hover > a {
    animation: click-time .3s 1 forwards;
}

.menu-item-has-children:hover > a:after {
    transform: translateY(4px) rotate(180deg);
}

@keyframes click-time {
    0% {
        pointer-events: none;
    }
    70% {
        pointer-events: none;
    }
    100% {
        pointer-events: initial;
    }
}

.menu-item-has-children:hover > .sub-menu {
    margin: 10px 0;
    gap: 5px 0;
}

.menu-item-has-children:hover #secondary-menu-list > .menu-item:not(.menu-item-has-children),
.menu-item-has-children:hover > .sub-menu > .menu-item:not(.menu-item-has-children) {
    max-height: 100px;
}

.menu-item-has-children:hover #secondary-menu-list > .menu-item.menu-item-has-children,
.menu-item-has-children:hover > .sub-menu > .menu-item.menu-item-has-children {
    max-height: 100svh;
}

.mobile-menu {
    position: fixed;
    top: 0;
    padding: 20px;
    background: var(--white);
    height: 100svh;
    overflow: auto;
    transform: translateX(-100%);
    opacity: 0;
    z-index: 9999;
    transition: .3s .1s;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateX(-10px);
}

.menu-mask {
    z-index: 9998;
    position: fixed;
    width: 100svw;
    height: 100svh;
    background: var(--shadow);
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: .3s .3s;
    opacity: 0;
}

.open + .menu-mask {
    transition-delay: 0s;
    transform: translateX(0);
    opacity: 1;
}

.menu-item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    transition-duration: .3s;
    color: var(--first);
    text-transform: uppercase;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    gap: 5px;
}

.menu-item a:hover {
    color: var(--second);
}

.mobile-menu .lang {
    margin-bottom: 20px;
}

.mobile-menu .menu-button  {
    position: absolute;
    right: 20px;
    top: 20px;
}

.gtranslate_wrapper {
    display: flex;
    gap: 22px;
}

.gtranslate_wrapper img {
    transition-duration: .3s;
    width: 24px;
}

.gt-current-lang {
    position: relative;
}

.gt-current-lang:before  {
    content: "";
    position: absolute;
    width: calc(100% + 14px);
    height: calc(100% + 12px);
    transform: translate(-8px, -6px);
    border: 1px solid var(--third);
    left: 0;
    top: 0;
}

.primary-menu-container + .menu-item {
    margin: 5px 0;
}

.menu.cats {
    margin-top: 25px;
}

.categories-button {
    display: none;
}

.header__bottom .buttons .text-button > span {
    display: none;
}

.top-banner-slider {
    margin-top: 18px;
}

.top-banner-slider__wrapper {
    overflow: hidden;
}

.top-banner-slider__slides {
    position: relative;
    min-height: 289px;
}

.top-banner-slider__picture {
    display: flex;
}

.top-banner-slider__content-text-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 23px;
}

.top-banner-slider__title {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 4px;
    color: var(--white);
}

.top-banner-slider__desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.005em;
    margin: 0 0 12px;
    color: var(--white);
}

.top-banner-slider__pagination {
    position: static;
    margin-top: 7px;
}

.top-banner-slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets > .swiper-pagination-bullet {
    margin: 0 10px;
}

.top-banner-slider__pagination .swiper-pagination-bullet {
    background-color: var(--fourth);
    transition-duration: .3s;
}

.top-banner-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--first);
}

.top-banner-slider__img {
    width: 100%;
    object-fit: cover;
    min-height: 289px;
    height: 45svw;
}

.quote {
    margin: 39px 0 48px;
    font-family: var(--font-secondary);
}

.quote__text {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.005em;
    text-align: center;
    color: var(--second);
}

.quote__author {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 37px;
    letter-spacing: 0.005em;
    text-align: center;
    color: var(--sixth);
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    margin: 0;
    height: auto;
}

.woocommerce ul.products:not(.swiper-wrapper) li.product,
.woocommerce-page ul.products:not(.swiper-wrapper) li.product {
    width: auto !important;
}

.products:not(.swiper-wrapper),
.products__list {
    display: grid;
    grid-template-columns:  repeat(2, minmax(0, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
    grid-gap: 10px;
}

.product {
    display: flex;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product a img,
.woocommerce-loop-product__link img {
    object-fit: contain;
    padding: 33px 20px;
    aspect-ratio: 305 / 264;
    max-width: 305px;
    width: 100%;
    height: auto;
    margin: 0;
    min-height: 150px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-loop-product__title {
    font-family: var(--font-secondary);
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    padding: 0;
}

.product-package {
    font-size: 10px;
    font-weight: 300;
    line-height: 12px;
    margin-bottom: 5px;
    color: var(--sixth);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price,
.woocommerce ul.products li.product .price,
.woocommerce-loop-product__link .price {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding: 0;
    gap: 11px;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price bdi,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price bdi,
.woocommerce-loop-product__link .price bdi {
    color: var(--second);
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price ins,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price ins,
.woocommerce-loop-product__link .price ins {
    text-decoration: none;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price del bdi,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price del bdi,
.woocommerce-loop-product__link .price del bdi {
    font-size: 10px;
    font-weight: 400;
    line-height: 23px;
    color: var(--sixth);
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    opacity: 1;
}

.woocommerce div.product p.price del .woocommerce-Price-amount,
.woocommerce div.product span.price del .woocommerce-Price-amount {
    display: flex;
}   

.product .woocommerce-loop-product__link {
    height: 100%;
    border: 1px solid transparent;
    transition-duration: .3s;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product .button,
.product .add_to_cart_button {
    position: absolute;
    bottom: 1px;
    opacity: 0;
    z-index: 11;
    transition-duration: .3s;
    width: 100%;
    padding: 9px;
    background-color: var(--second);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    text-align: center;
    border: 1px solid var(--second);
    border-radius: 0;
}

.added_to_cart  {
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--sixth);
    padding: 10px 0;
}

.product span.sale {
    position: absolute;
    top: 7px;
    font-size: 8px;
    padding: 5px 4px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--seventh);
    z-index: 1;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 37.62px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 34px;
}

.section-title--no-upper {
    text-transform: none;
}

.ovh,
.ovh-mobile {
    overflow: hidden;
}

.single_product_div,
.icon_above_image {
    top: -4px;
    right: 8px;
}

.single_product_div i img,
.icon_above_image i img {
    display: none !important;
}

.single_product_div i:before,
.icon_above_image i:before {
    content: url('data:image/svg+xml; utf8, <svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87869 10.5615C6.87869 10.5615 1.56107 7.58367 1.56107 3.96768C1.56117 3.32858 1.78263 2.70923 2.18777 2.21495C2.59292 1.72067 3.15675 1.38196 3.7834 1.25641C4.41005 1.13086 5.06085 1.22622 5.62514 1.52627C6.18943 1.82633 6.63239 2.31256 6.87869 2.9023C7.125 2.31256 7.56794 1.82633 8.13223 1.52628C8.69652 1.22622 9.34732 1.13086 9.97397 1.25641C10.6006 1.38196 11.1645 1.72067 11.5696 2.21495C11.9747 2.70923 12.1962 3.32858 12.1963 3.96768C12.1963 7.58367 6.87869 10.5615 6.87869 10.5615Z" fill="rgb(157 130 90)" stroke="rgb(157 130 90)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    opacity: 0.5;
    transition-duration: .3s;
}

.single_product_div i:before {
    content: url('data:image/svg+xml; utf8, <svg width="22" height="18" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.87869 10.5615C6.87869 10.5615 1.56107 7.58367 1.56107 3.96768C1.56117 3.32858 1.78263 2.70923 2.18777 2.21495C2.59292 1.72067 3.15675 1.38196 3.7834 1.25641C4.41005 1.13086 5.06085 1.22622 5.62514 1.52627C6.18943 1.82633 6.63239 2.31256 6.87869 2.9023C7.125 2.31256 7.56794 1.82633 8.13223 1.52628C8.69652 1.22622 9.34732 1.13086 9.97397 1.25641C10.6006 1.38196 11.1645 1.72067 11.5696 2.21495C11.9747 2.70923 12.1962 3.32858 12.1963 3.96768C12.1963 7.58367 6.87869 10.5615 6.87869 10.5615Z" fill="rgb(157 130 90)" stroke="rgb(157 130 90)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.single_product_div i[data-action="remove"]:before,
.icon_above_image i[data-action="remove"]:before {
    opacity: 1;
}

.recommended-products__wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

.recommended-products__list:not(.swiper-initialized) > .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 66px;
}

.recommended-products__button {
    position: relative;
    z-index: 12;
    margin: 50px auto 0;
}

.banner {
    margin-bottom: 83px;
}

.banner__picture {
    display: flex;
    margin-bottom: 19px;
}

.banner__texts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner__texts > p {
    font-family: var(--font-secondary);
    font-size: 30px;
    line-height: 37.62px;
    text-align: center;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.banner__texts > .button {
    padding: 10px 41px;
}

.products-slider {
     margin-bottom: 55px;
}

.products-slider__wrapper {
    overflow: hidden;
    padding-right: 1px;
}

.products-slider__naviagtion {
    display: none;
}

.categories {
    overflow: hidden;
}

.categories__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 173px;
}

.categories__button img {
    border: 1px solid var(--second);
    aspect-ratio: 173 / 140;
    object-fit: cover;
    margin-bottom: 12px;
}

.categories__button strong {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase; 
    transition-duration: .3s; 
    max-width: 169px;
}

.categories {
    margin-bottom: 66px;
}

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

.woocommerce .products ul, .woocommerce ul.products {
    margin: 0;
}

.text-blocks {
    margin-bottom: 51px;
}

.text-blocks__wrapper {
    display: grid;
    gap: 20px;
}

.text-block {
    padding: 35px 8px 43px 14px;
    border: 1px solid var(--second);
}

.text-block__title {
    margin: 0 0 25px;
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 37.62px;
    text-transform: uppercase;
}

.text-block__text {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--sixth);
}

.text-block.biggest {
    padding: 40px 8px 33px 14px;
}

.text-block.biggest .text-block__title {
    margin-bottom: 13px;
}

.text-block.biggest .text-block__text {
    margin-bottom: 0;
}

.text-block.dark {
    background-color: var(--ninth);
}

.home-blog {
    margin-bottom: 68px;
}

.home-blog__wrapper {
    overflow: hidden;
}

.post-card__img {
    display: block;
    margin-bottom: 20px;
}

.post-card__img .post-thumbnail {
    margin: 0;
    display: flex;
}

.post-card__img img {
    aspect-ratio: 355 / 250;
}

.post-card__title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 0 20px;
    max-width: 90%;
}

.post-card__title a {
    transition-duration: .3s;
}

.icon-blocks {
    margin-bottom: 82px;
}

.icon-blocks__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 30px 15px;
}

.icon-block__img {
    height: 43px;
}

.icon-block {
    display: flex;
    flex-direction: column;
    gap: 23px;
    max-width: 165px;
}

.icon-block__text {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: var(--sixth);
    transition-duration: .3s;
    text-transform: uppercase;
    max-width: 210px;
}

a.icon-block:hover .icon-block__text {
    color: var(--second);
}

.partners__wrapper {
    overflow: hidden;
}

.partners {
    margin-bottom: 58px;
}

.partner {
    width: 96px;
}

.socials {
    margin-bottom: 46px;
}

.socials__title {
    margin: 0 0 12px;
}

.socials__text {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--sixth);
    margin: 0 0 8px;
}

.socials__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 19px;
    margin-bottom: 17px;
}

.socials__links > a {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: var(--second);
    transition-duration: .3s;
}

.socials__links > a:hover {
    color: var(--first);
}

.socials__icons-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 78px;
    flex-wrap: wrap;
}

.socials__icons-links img {
    width: 60px;
}

.opinions {
    margin-bottom: 46px;
}

.opinions__title {
    margin: 0 0 14px;
}

.opinions__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin: 0 0 16px;
    padding: 0 5px;
    color: var(--sixth);
}

.opinions__average {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.opinions__average > strong {
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-align: center;
    margin-bottom: 11px;
}

.opinions__average > img {
    width: 110px;
    margin: 0 auto;
}

.opinions__slider {
    display: none;
}

.newsletter {
    background-color: var(--ninth);
}

.newsletter__content {
    padding: 22px 0 36px;
}

.newsletter__text {
    margin: 0 0 24px;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--second);
}

.newsletter__submit-wrapper {
    display: flex;
}

.newsletter__submit-wrapper .tnp-email {
    width: 100%;
    border: 1px solid var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.05em;
    padding: 10px 11px;
    outline: none;
    transition-duration: .3s;
}

.newsletter__submit-wrapper .tnp-email:focus {
    border: 1px solid var(--second);
    border-right: 0;
}

.newsletter__submit-wrapper .tnp-submit {
    font-size: 16px;
    line-height: 19.2px;
    text-align: center;
    border: 1px solid var(--sixth);
    background-color: var(--sixth);
    color: var(--white);
    text-transform: uppercase;
    padding: 14px 17px;
    cursor: pointer;
    transition-duration: .3s;
}

.newsletter__submit-wrapper .tnp-submit:hover {
    border: 1px solid var(--second);
    background-color: var(--second);
}

.site-footer {
    padding: 27px 0 21px;
}

.site-footer__infos {
    margin-bottom: 41px;
}

.site-footer__info {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.site-footer__info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.site-footer__info-list.payments {
    gap: 15px;
}

.site-footer__info-list img {
    height: 45px;
    width: auto;
}

.payments .site-footer__info-list img {
    height: 35px;
    width: auto;
}

.site-footer__info > span {
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 27.59px;
    margin-bottom: 22px;

}

.payments .site-footer__info > span {
    font-size: 22px;
}

.site-footer__copyright {
    padding: 14px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--first);
    flex-direction: column;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    gap: 9px;
}

.site-footer__copyright a {
    transition-duration: .3s;
}

.site-footer__col.first {
    padding: 0 6px;
}

.site-footer__col-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    transition-duration: .3s;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.site-footer__col-button.open {
    margin-bottom: 20px;
}

.site-footer__col-button + div {
    max-height: 0;
    overflow: hidden;
    transition-duration: .3s;
}

.site-footer__col-button.open + div {
    max-height: 500px;
    margin-bottom: 20px;
}

.site-footer__col-button svg {
    transition-duration: .3s;
}

.site-footer__col-button.open svg {
    transform: rotate(180deg);
}

.site-footer__contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 27px;
}

.site-footer__contact-buttons > .text-button {
    font-size: 18px;
    font-weight: 500;
}

.site-footer__contact-buttons + .basic-button {
    padding: 12px 41px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 23px;
    white-space: nowrap;
}

.site-footer__opening_hours {
    max-width: 155px;
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 34px;
}

.site-footer__col .menu-item a {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-transform: none;
}

.site-footer__menus {
    margin-bottom: 10px;
}

.breadcrumbs {
    padding: 11px 0;
    background-color: var(--fifth);
    margin-top: 28px;
}

#breadcrumbs span,
#breadcrumbs a,
#breadcrumbs {
    margin: 0; 
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

#breadcrumbs a {
    transition-duration: .3s;
}

.page-shop #main {
    display: grid;
    grid-template-areas:
        "notices notices"
        "title title"
        "show count"
        "sort sort"
        "cats cats"
        "prods prods"
        "pagination pagination";
    align-items: flex-start;
    grid-template-columns: auto auto;
    margin-top: 39px;
}

.page-shop .woocommerce-notices-wrapper {
    grid-area: notices;
}

.page-shop .woocommerce-products-header {
    grid-area: title;
    margin-bottom: 20px;
}

.page-shop .woocommerce-result-count {
    grid-area: count;
    margin: 0;
    align-self: center;
    font-size: 9px;
    font-weight: 400;
    line-height: 10.8px;
    color: var(--tenth);
    padding: 0;
    border: 1px solid var(--fifth);
    text-align: right;
}

.page-shop .products-per-page-form {
    grid-area: show;
    display: flex;
    align-items: center;
    align-self: center;
    margin-left: 0;
}

.page-shop .products-per-page-form > label {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 700;
    line-height: 13.79px;
}

.page-shop .products-per-page-form > select {
    display: none;
}

.products_per_page__list {
    display: flex;
    font-size: 9px;
    font-weight: 400;
    line-height: 10.8px;
    color: var(--tenth);
    margin-left: 19px;
    gap: 2px;
}

.products_per_page__list > button {
    font-size: 9px;
    font-weight: 400;
    line-height: 10.8px;
    color: var(--tenth);
    border: 0;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    transition-duration: .3s;
}

.products_per_page__list > button.active,
\.products_per_page__list > button:hover {
    color: var(--first);
}

.page-shop .woocommerce-ordering {
    grid-area: sort;
    margin: 20px 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: center;
}

.page-shop .woocommerce-ordering > label {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 700;
    line-height: 13.79px;
}

.page-shop .woocommerce-ordering > select {
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    padding: 6px 3px;
    border: 1px solid var(--tenth);
    color: var(--tenth);
}

.page-shop .categories {
    grid-area: cats;
    margin-top: 80px;
    margin: 0;
}

.page-shop .categories .menu-wrapper {
    flex-direction: column;
    gap: 0;
    max-height: 100svh;
    overflow: auto;
}

.page-shop .categories .menu-wrapper .menu-item a {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 20.06px;
    padding: 15px 10px 15px 15px;
}

.page-shop .categories .menu-wrapper .menu-item-has-children {
    position: relative;
    cursor: pointer;
}

.page-shop .categories .menu-wrapper .menu-item-has-children > a {
    width: 100%;
    justify-content: space-between;
}

.page-shop .categories .menu-wrapper .menu-item-has-children > .sub-menu {
    position: static;
    gap: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
}

.page-shop .categories  .menu-item-has-children:hover > .sub-menu > .menu-item:not(.menu-item-has-children) {
    max-height: 0;
}


.page-shop .categories .menu-wrapper .menu-item-has-children > a {
    pointer-events: none;
}

.page-shop .categories .menu-wrapper .menu-item-has-children.open > a {
    pointer-events: initial;
    background-color: var(--fifth);
}

.page-shop .categories .menu-wrapper .menu-item-has-children > .sub-menu {
    padding: 0 15px;
}

.page-shop .categories .menu-wrapper .menu-item-has-children.open > .sub-menu {
    gap: 18px;
    padding: 10px 15px;
}

.page-shop .categories .menu-wrapper .menu-item-has-children > .sub-menu .menu-item a {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    padding: 0;
    text-transform: none;
}

.page-shop .categories .menu-wrapper .menu-item-has-children.open > .sub-menu .menu-item {
    max-height: 200px;
}

.page-shop .categories .menu-wrapper .menu-item-has-children > a:after {
   display: none;
}

.page-shop .categories .menu-wrapper .menu-item-has-children:after {
    transform: none;
    position: absolute;
    right: 10px;
    top: 18px;
    z-index: 99;
    content: url('data:image/svg+xml; utf8, <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.65625 8.5H14.3438" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.5 2.65625V14.3438" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.page-shop .categories .menu-wrapper .menu-item-has-children.open:after {
    content: url('data:image/svg+xml; utf8, <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.65625 8.5H14.3438" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.page-shop .woocommerce-pagination {
    grid-area: pagination;
}

.woocommerce .page-shop .products,
.page-shop .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-area: prods;
    margin-top: 59px;
    grid-gap: 53px 20px;
}

.woocommerce-products-header__title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 400;
    line-height: 45.14px;
    margin: 0;
}

nav.post-pagination ul,
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    align-items: center;
    margin: 0 0 27px;
    border: 0;
    justify-content: center;
    list-style: none;
}

nav.post-pagination ul li,
.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

nav.post-pagination ul li.dots,
.woocommerce nav.woocommerce-pagination ul li.dots {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 20px;
}

nav.post-pagination ul li .page-numbers,
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    background-color: transparent;
    transition-duration: .3s;
    color: var(--first);
    padding: 0;
    justify-content: center;
    align-items: center;
}

nav.post-pagination ul li .page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover {
    border: 1px solid var(--second);
    color: var(--first);
    background-color: transparent;
}

nav.post-pagination ul li .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
    border: 1px solid var(--second);
    background-color: var(--second);
    color: var(--white);
}

nav.post-pagination ul li a.prev,
nav.post-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li a.next {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: center;
    padding: 22px 52px;
    color: var(--tenth); 
    border: 1px solid var(--fifth);
}

nav.post-pagination ul li a.prev:hover,
nav.post-pagination ul li a.next:hover,
.woocommerce nav.woocommerce-pagination ul li a.prev:hover,
.woocommerce nav.woocommerce-pagination ul li a.next:hover {
    color: var(--second); 
    border: 1px solid var(--second);
}

nav.post-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li a.prev {
    margin-right: 80px;
}

nav.post-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.next {
    margin-left: 80px;
}

.categories__button-archive {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0;
    background: transparent;
    border: 0;
    margin-top: 20px;
}

.categories__wrapper {
    position: fixed;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-120%);
    transition-duration: .3s;
    top: 0;
    z-index: 9999;
}

.open + .categories__wrapper {
    opacity: 1;
    transform: translateX(0%);
}

.categories__wrapper > .secondary-menu-container {
    transform: translateX(-10px);
    position: relative;
    z-index: 9999;
    background: var(--white);
    padding-left: 10px;
}

.open + .categories__wrapper .categories-archive-mask {
    transform: translateX(-10px);
    opacity: 1;
}

.category-desc {
    margin-bottom: 20px;
}

.category-desc h5,
.category-desc h6,
.category-desc h1 {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 400;
    line-height: 45.14px;
    margin: 0.67em 0;
}

.category-desc p {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.page-shop {
    margin-bottom: 20px;
}

.category-desc-btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    color: var(--second);
    text-transform: uppercase;
    transition-duration: .3s;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.category-desc-btn:hover {
    color: var(--first);
}

.alto-product__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}

.alto-product {
    margin-top: 21px;
    display: grid;
    grid-template-areas:
        "image image"
        "summary summary"
        "tabs tabs"
        "cards cards"
        "related related";
    grid-gap: 20px;
    grid-auto-columns: 1fr;
}

.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: summary;
    position: relative;
    width: auto;
    float: none;
    margin-bottom: 0;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    grid-area: image;
    width: auto;
    float: none;
    margin-bottom: 0;
}

.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
    grid-area: tabs;
}

.woocommerce div.product div.images img {
    max-width: 366px;
    margin: 0 auto;
    aspect-ratio: 366 / 444;
    object-fit: contain;
}

.related {
    grid-area: related;
    overflow: hidden;
    padding-bottom: 80px;
}

.alto-product__cat {
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-transform: uppercase;
    color: var(--sixth);
    margin: 0 0 17px;
}

.alto-product__cat:hover {
    color: var(--second);
}

.alto-product .single_product_div {
    position: absolute;
    padding: 0;
    left: -88px;
    top: 21px;
    right: auto;
}

.woocommerce div.product .product_title {
    font-family: var(--font-secondary);
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 15px;
}

.alto-product__icon-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alto-product__icon-block {
    display: flex;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--sixth);
    gap: 18px;
}

.alto-product__icon-block > img {
    width: 30px;
}

.alto-product .summary .product-package {
    padding: 0;
    margin-bottom: 28px;
}

.wc-price-history.prior-price {
    font-size: 14px;
    font-weight: 300;
    line-height: 16.8px;
    color: var(--sixth);
    margin-bottom: 33px;
}

.woocommerce div.product p.stock {
    display: none;
}

.woocommerce-product-gallery__image > a {
    padding: 34px;
    display: flex;
    background-color: var(--fifth);
}

.woocommerce div.product form.cart {
    display: grid;
    grid-template-areas:
        "label"
        "qty"
        "button";
    grid-auto-columns: 1fr;
    margin-bottom: 15px;
    grid-gap: 15px;
}

.alto-product__qty-label {
    grid-area: label;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: var(--sixth);
}

body .alto-product .qib-button-wrapper {
    grid-area: qty;
    float: none;
    margin: 0;
    width: auto;
    justify-content: flex-start;
}

.woocommerce div.product form.cart .button {
    grid-area: button;
    float: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 17.58px;
    text-align: center;
    text-transform: uppercase;
    justify-self: flex-start;
    border-radius: 0px;
    padding: 13px 64px;
    color: var(--white);
    background-color: var(--second);
    border: 1px solid var(--second);
    transition-duration: .3s;
}

.woocommerce div.product form.cart .button:hover {
    color: var(--second);
    background-color: var(--white);
}

body .alto-product .qib-button-wrapper .minus.qib-button,
body .alto-product .qib-button-wrapper .plus.qib-button {
    font-size: 32px;
    font-weight: 300;
    width: 35px;
    min-width: 35px;
    padding: 0;
    transition-duration: .3s;
}

body .alto-product .qib-button-wrapper .minus.qib-button {
    border-right: 0;
}

body .alto-product .qib-button-wrapper .plus.qib-button {
    border-left: 0;
}

.woocommerce-page div.product form.cart div.quantity.wqpmb_quantity,
.woocommerce div.product form.cart .quantity.wqpmb_quantity,
.woocommerce div.product .quantity.wqpmb_quantity {
    min-width: 0;
}

.woocommerce div.product form.cart div.quantity .qty {
    padding: 0;
    width: auto;
    min-width: 0;
}

.woocommerce div.product form.cart div.quantity .qty:focus,
.woocommerce div.product form.cart div.quantity .qty:hover {
    border-color: var(--second) !important;
    outline: none;
    transition-duration: .3s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--sixth);
    overflow: visible;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    padding: 5px 2px;
    color: var(--sixth);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0;
    border-bottom: 1px solid transparent;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    position: relative;
    font-weight: 700;
    color: var(--second);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
    content: '';
    display: block;
    box-shadow: none;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 5px;
    background-color: transparent;
    border-radius: 0;
    transition-duration: .3s;
    border: 0;
    box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
    background-color: var(--second);
    bottom: -4px;
    box-shadow: none;
}

.alto-product__desc-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.alto-product__desc-wrapper img {
    width: auto;
}

.woocommerce-Reviews-title,
.woocommerce-Tabs-panel > h2,
.alto-product__left-desc > h2 {
    display: none;
}

.alto-product__left-desc {
    margin-top: 33px;
}
.alto-product__left-desc > img {
    margin-bottom: 15px;
}

.alto-product__left-desc p {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.alto-product__left-desc p:last-child {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 28px;
}

.alto-product__left-desc p > strong {
    color: var(--first);
}

.clean-label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 2px;
    background-color: var(--fifth);
    margin-bottom: 21px;
}

.clean-label p {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.clean-label img {
    max-width: 147px;
}

.top-box {
    margin-bottom: 21px;
}

.top-box > p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 6px;
} 

.top-box > ul {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    padding-left: 21px;
    list-style-image: url('data:image/svg+xml; utf8, <svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="8.5" cy="8.5" r="8" fill="white" stroke="currentColor"/><path d="M4 7.5L8 11.5L13.5 6" stroke="currentColor"/></svg>');
}

.golden-box {
    border: 1px solid var(--second);
    padding: 17px 25px;
    background-color: var(--fifth);
    margin-bottom: 32px;
}

.golden-box > p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.golden-box > p > strong {
    color: var(--second);
}

.under-box > p {
    margin: 0;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.alto-product__cards {
    grid-area: cards;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 40px;
}

.alto-product__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px;
    border: 1px solid var(--second);
}

.alto-product__card > img {
    width: 60px;
}

.alto-product__card > p {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin: 0;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.alto-product__card > p > strong {
    color: var(--second);
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 24px;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.woocommerce table.shop_attributes th {
    color: var(--first);
}

.site-footer .menu-wrapper {
    flex-direction: column;
    gap: 4px;
}

.shop_table__body .woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-areas:
        "name"
        "price"
        "qty";
    align-items: flex-start;
    position: relative;
    padding: 20px 30px 20px 70px;
    gap: 9px;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--second);
    margin-bottom: 18px;
}

.shop_table__body .woocommerce-cart-form__cart-item:first-child {
    border-top: 1px solid var(--second);
    margin-top: 18px;
}

.shop_table__body .woocommerce-cart-form__cart-item:nth-last-child(3) {
    border-bottom: 0;
    margin-bottom: 0;
}

.shop_table__body .product-info {
    grid-area: name;
}

.shop_table__body .product-price {
    grid-area: price;
}

.shop_table__body .product-quantity {
    grid-area: qty;
    margin-top: auto;
    display: flex;
}

.shop_table__body .product-remove {
    position: absolute;
    right: 0;
    top: 20px;
}

.shop_table__header {
    display: none;
}

.woocommerce-cart .woocommerce-notices-wrapper {
    grid-area: notices;
}

.woocommerce-cart .woocommerce-cart-form {
    grid-area: cart;
}

.woocommerce-cart .cart-collaterals {
    grid-area: totals;
}

.shop_table__body .product-info {
    display: flex;
    gap: 18px;
    align-items: center;
}

.shop_table__body .product-thumbnail {
    position: absolute;
    left: 0;
    top: 20px;
}

.shop_table__body .product-thumbnail img {
    max-width: 60px;
}

.entry-text__wrapper {
    margin-top: 57px;
}

.entry-text__wrapper .entry-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 37.62px;
}

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

.woocommerce .cart-collaterals .cart_totals > h2,
.woocommerce-page .cart-collaterals .cart_totals > h2 {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 11px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--second);
}

.shop_table__body .product-name {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 20px;
}

.shop_table__body .product-name > a {
    transition-duration: .3s;
}

.product-name > .product-package {
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 14.4px;
    margin: 11px 0 0;
}

.shop_table__body a.remove {
    height: auto;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sixth) !important;
    border-radius: 0;
}

.shop_table__body a.remove > svg {
    transition-duration: .3s;
    width: 25px;
    height: 25px;
}

.shop_table__body a.remove:hover {
    color: var(--second) !important;
    background-color: transparent !important;
}

.shop_table__body .product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: Lato;
    font-size: 24px;
    font-weight: 600;
    line-height: 23px;
    text-align: center;
    color: var(--second);
}

.shop_table__body .product-price > del {
    color: var(--sixth);
    font-family: Lato;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
}

.shop_table__body .product-price > ins {
    text-decoration: none;
}

.product-quantity .qib-button-wrapper .quantity input.input-text.qty.text {
    width: 45px !important;
    padding: 6px 4px 7px;
    font-size: 15px;
    font-weight: 700;
    line-height: 17.58px;
    transition-duration: .3s;
}

.product-quantity .qib-button-wrapper .quantity input.input-text.qty.text:focus {
    outline: none;
    border: 1px solid var(--second) !important;
}

.product-quantity .qib-button-wrapper button {
    transition-duration: .3s;
}

.reservation-info {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: var(--sixth);
    margin-top: 20px;
}

.actions [name="update_cart"],
.actions .coupon {
    display: none !important;
}

.go-to-shop-button {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    padding: 13px 44px;
    border-radius: 50px;
    border: 1px solid var(--first);
    background: none;
    gap: 20px;
    cursor: pointer;
    transition-duration: .3s;
    width: fit-content;
}

.go-to-shop-button:hover {
    border: 1px solid var(--second);
    background-color: var(--second);
    color: var(--white);
}

.shop_table__body .actions {
    margin-top: 57px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop_table__body .clear-cart-button {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.005em;
    cursor: pointer;
    background: none;
    border: 0;
    gap: 8px;
    padding: 5px 0;
}

.shop_table__body .clear-cart-button:hover {
    color: var(--second);
}

.woocommerce-cart .products-slider .section-title {
    font-size: 36px;
    line-height: 45.14px;
    text-transform: none;
    margin-bottom: 71px;
}

.woocommerce-cart .products-slider__naviagtion {
    display: none;
}

.alto-coupon {
    margin-bottom: 15px;
}

.alto-coupon > strong {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 13px;
    display: block;
}

.alto-coupon__wrapper {
    display: flex;
    transition-duration: .3s;
}

.alto-coupon__wrapper > input {
    width: 100%;
    border: 1px solid var(--second);
    border-right: 1px solid transparent;
    padding: 10px 23px;
    font-size: 14px;
    line-height: 23px;
    transition-duration: .3s;
}

.alto-coupon__wrapper:has(input:focus) {
    box-shadow: 0 0 3px var(--second);
}

.alto-coupon__wrapper > input:focus {
    outline: none;
}

.alto-coupon__wrapper > .basic-button {
    padding: 9px;
}

.shop_table > h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 15px;
}

.shop_table > div {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 5px;
}

.shop_table > div:last-child {
    margin-bottom: 0;
}

.shop_table > div > span,
.shop_table > div > strong {
    font-size: 16px;
    line-height: 23px;
}

.order-total > span > strong {
    font-size: 24px;
    line-height: 23px;
    color: var(--second);
}

.shop_table > div > span a {
    transition-duration: .3s;
}

.wc-proceed-to-checkout > .basic-button {
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 15px 0 0;
    padding: 10px 15px;
}
    
.woocommerce-cart .entry-content__wrapper > .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 7px;
}

.page__wrapper {
    margin-top: 40px;
}

.page-title > h1 {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 400;
    line-height: 45.14px;
    text-align: center;
}

.contact-page {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 41px;
}

.contact-page__top-text {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}

.contact-page__opening-hours {
    margin: 0;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.contact-page__card img {
    width: initial;
}

.contact-page__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 61px;
}

.contact-page__card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--second);
    padding: 43px 26px 36px;
}

.contact-page__card >strong {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.contact-page__card > p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin: 0 0 17px;
}

.contact-page__card > p.text {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    margin: 0 0 17px;
}

.contact-page__link {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.03em;
    text-align: left;
    align-items: center;
    gap: 12px;
    transition-duration: .3s;
    margin-bottom: 8px;
    margin-top: auto;
    padding: 0 5px;
    height: 100%;
}

.contact-page__link > strong {
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.03em;
    transition-duration: .3s;
}

.contact-page__link:last-child {
    margin-bottom: 0;
}

.contact-page__link:has(.text) {
    align-items: flex-start;
    padding: 0;
}

.contact-page__link > .text {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.contact-page__link > .text p {
    margin: 0;
}

.contact-page__link > .text p:has(strong:nth-child(2)) {
    display: flex;
    flex-direction: column;
}

.contact-page__link > .text p:has(strong:nth-child(2)) > strong {
    display: flex;
    flex-direction: column;
}

.blog-posts__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.posts {
    margin-top: 33px;
    margin-bottom: 86px;
}

.latest-post {
    display: grid;
    grid-template-columns: 100%;
    margin-bottom: 25px;
}

.latest-post .infos {
    background-color: var(--fifth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.latest-post .infos a {
    transition-duration: .3s;
}

.latest-post .infos > h2 {
    margin: 0 0 21px;
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 37px;
    text-align: center;
    max-width: 503px;
}

.latest-post .infos > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    max-width: 390px;
    margin: 0 0 38px;
}

.latest-post .post-thumbnail {
    margin: 0;
    height: 100%;
}

.latest-post .post-thumbnail img {
    height: 100%;
    object-fit: cover;
}

.posts__categories {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--first);
    margin-bottom: 39px;
}

.posts__categories > a {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 22.57px;
    text-align: center;
    padding: 23px 36px;
    position: relative;
    transition-duration: .3s;
}

.posts__categories > a:hover {
    color: var(--second);
}

.posts__categories > a.active-category {
    color: var(--second);
    font-weight: 700;
}

.posts__categories > a.active-category:after {
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
    bottom: -2px;
    width: 100%;
    background-color: var(--second);
}

.blog-posts__content .post-thumbnail img {
    aspect-ratio: 413 / 250;
    object-fit: cover;
}

.post__container {
    max-width: 844px;
    margin: 0 auto 96px;
}

.post__wrapper {
    margin-top: 42px;
}

.post__wrapper > .post-meta {
    font-size: 16.8px;
    font-weight: 500;
    line-height: 20.16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 21px;
}

.post__wrapper > .post-category > a {
    color: var(--second);
    transition-duration: .3s;
}

.post__wrapper > .post-category > a:hover {
    color: var(--first);
}

.post .page-title {
    margin: 0 auto 20px;
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    max-width: 629px;
}

.post .entry-header p:empty {
    margin: 0;
}

.post .entry-header p {
    margin: 0 0 44px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.post .entry-header .post-thumbnail {
    margin-bottom: 20px;
}

.post .entry-content h2 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 25.08px;
    margin: 0 0 13px;
}

.post .entry-content p {
    margin: 0 0 15px;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

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

.post .entry-content blockquote p {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0.005em;
    margin: 0;
    color: var(--second);
}

.blog-posts__title {
    margin: 0 0 59px;
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    line-height: 45.14px;
    text-align: center;
}

.blog-pagination .blog-posts__content  {
    margin-bottom: 60px;
}

.about-us .page__wrapper {
    margin-top: 30px;
}

.about-us__top-text {
    margin: 0 auto 68px;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
    text-align: LEFT;
    /* max-width: 844px; */
    color: var(--sixth);
}

.about-us__bottom-banner,
.about-us__top-banner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}
.about-us__top-banner{
    align-items: flex-start;
}
.about-us__bottom-banner h2,
.about-us__top-banner h2 {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    margin: 0 0 7px;
    padding-right: 42px;
}

.about-us__bottom-banner p,
.about-us__top-banner p {
    margin: 0;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
    padding-right: 20px;
}

.about-us__top-banner > .img, 
.about-us__bottom-banner > .img {
    height: 100%;
}
.about-us__top-banner > .img > img, 
.about-us__bottom-banner > .img > img {
    height: 100%;
    object-fit: cover;
}

.about-us__bottom-banner > .img {
    order: -1;
}

.about-us__cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.about-us__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-color: #E1D3C8;
}

.about-us__card > img {
    height: 75px;
    width: auto;
    margin-bottom: 40px;
}

.about-us__card > strong {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    line-height: 30.1px;
    color: var(--second);
    display: inline-block;
    margin-bottom: 20px;
}

.about-us__card > p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.005em;
}

.about-us__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.about-us__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.03em;
    transition-duration: .3s;
}

.about-us__link > img {
    width: initial;
}

.column-top-404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 85px;
}

.error-404-img {
    max-width: 570px;
}

.error-404-content-banner {
    transform: translateY(-10px);
}

.error-404-content-banner--text-b {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    max-width: 557px;
    text-transform: uppercase;
    margin: 0 0 11px;
}

.error-404-content-banner--text {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    max-width: 286px;
    margin: 0 auto 36px;
}

.error-404-content-banner > .basic-button {
    margin: 0 auto;
    font-size: 17px;
    font-weight: 700;
    line-height: 19.92px;
    padding: 10px 24px 11px;
}

.column-bottom-404 {
    margin-bottom: 49px;
}

.column-bottom-404 > h2 {
    margin: 0 auto 60px;
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 400;
    line-height: 45.14px;
    text-align: center;
}

.career .page__wrapper {
    margin-top: 53px;
}

.career .page-title > h1 {
    text-transform: uppercase;
    margin-bottom: 6px;
}

.career__top-text {
    margin: 0 auto 64px;
    max-width: 477px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.career__posts {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-bottom: 35px;
}

.career__post {
    padding: 15px;
    border: 1px solid var(--second);
}

.career__post > h2 {
    margin: 0 0 20px;
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 37.62px;
    max-width: 292px;
}

.career__post p:empty {
    margin: 0;
}

.career__post p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: var(--sixth);
}

.career__post .basic-button {
    margin: 78px auto 0;
    padding: 11px 46px;
}

.career-page__bottom-text > p {
    margin: 0 auto 33px;
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    line-height: 41.2px;
    text-align: center;
    max-width: 792px;
    margin-bottom: 33px;
}

.career-page__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.career-page__links > a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.09px;
    transition-duration: .3s;
}

.career-page__links > a img {
    width: initial;
}

.career-page__bottom-text {
    margin-bottom: 83px;
}

.singular .entry-content__wrapper {
    margin-bottom: 60px;
}

.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid var(--second);
    border-radius: 0;
}

form.woocommerce-ResetPassword.lost_reset_password p,
.woocommerce-privacy-policy-text a,
.woocommerce form.login p,
.woocommerce form.register p {
    color: var(--sixth);
}

.woocommerce-privacy-policy-text a {
    transition-duration: .3s;
}

.woocommerce-privacy-policy-text a:hover {
    color: var(--second);
}

:where(body:not(.woocommerce-block-theme-has-button-styles)).woocommerce-lost-password .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.woocommerce-form-register__submit,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    border: 1px solid var(--second);
    border-radius: 0;
    color: var(--white);
    background-color: var(--second);
    transition-duration: .3s;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)).woocommerce-lost-password .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.woocommerce-form-register__submit:hover,
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
    color: var(--second);
    background-color: var(--white);
}

p.woocommerce-LostPassword.lost_password a {
    transition-duration: .3s;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    min-height: 40px;
}

.page-id-14 .entry-content__wrapper > h4 {
    display: none;
}

.page-id-14 .entry-content__wrapper button.single-add-to-cart {
    font-size: 14px !important;
    font-weight: 700;
    line-height: 16px;
    border: 1px solid var(--second) !important;
    color: var(--white) !important;
    background-color: var(--second) !important;
    text-transform: uppercase;
    padding: 12px 20px !important;
    text-align: center;
    transition-duration: .3s;
    cursor: pointer;
    border-radius: 0 !important;
    width: auto !important;
}

.page-id-14 .entry-content__wrapper button.single-add-to-cart:hover {
    color: var(--second) !important;
    background-color: var(--white) !important;
}

.page-id-14 .wt_frontend_wishlist_table {
    display: flex; 
    margin-top: 40px;
    border: 0 !important;
}

.page-id-14 .wt_frontend_wishlist_table tbody {
    width: 100%;
}

.page-id-14 .wt_frontend_wishlist_table tr:has(th) {
    display: none;
}

.page-id-14 .wt_frontend_wishlist_table tr {
    display: grid;
    grid-template-areas:
        "remove img name"
        "cart cart cart";
    align-items: center;
    position: relative;
    padding: 10px 0;
    gap: 10px;
    border-bottom: 1px solid var(--second);
}

.page-id-14 .wt_frontend_wishlist_table tr td:nth-child(1) {
    grid-area: remove;
}

.page-id-14 .wt_frontend_wishlist_table tr td:nth-child(2) {
    grid-area: img;
}

.page-id-14 .wt_frontend_wishlist_table tr td:nth-child(3) {
    grid-area: name;
}

.page-id-14 .wt_frontend_wishlist_table tr td:nth-child(4) {
    padding: 7px !important;
    grid-area: cart;
    display: flex;
    justify-content: flex-end;
}

.page-id-14 .wt_frontend_wishlist_table tr:last-child {
    border-bottom: 0;
}

.page-id-14 .wt_frontend_wishlist_table td {
    width: auto !important;
}

.page-id-14 .wt_frontend_wishlist_table td a {
    transition-duration: .3s;
}

.page-id-14 .wt_frontend_wishlist_table img {
    width: 90px;
}

.page-id-14 .wt_frontend_wishlist_table .remove_wishlist_single > img {
    width: auto;
}

nav.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    max-width: 250px;
}

nav.woocommerce-MyAccount-navigation ul li {
    display: flex;
}

nav.woocommerce-MyAccount-navigation ul li a {
    padding: 10px;
    border-bottom: 1px solid var(--second);
    width: 100%;
}

.wp-block-table img,
.wp-block-image img {
    width: auto;
}

.woocommerce div.product .woocommerce-tabs .panel table {
    border: 1px solid var(--second);
    border-collapse: collapse;
    margin-top: 20px;
}

.woocommerce div.product .woocommerce-tabs .panel th,
.woocommerce div.product .woocommerce-tabs .panel td {
    border: 1px solid var(--second);
    padding: 3px;
}

@media (min-width: 430px) {
    .shop_table__body .product-thumbnail img {
        max-width: 90px;
    }

    .shop_table__body .woocommerce-cart-form__cart-item {
        grid-template-areas:
            "name name"
            "qty price";
        padding: 20px 60px 20px 100px;
        grid-template-columns: 1fr 1fr;
    }

    .shop_table__body a.remove {
        margin: 0 15px 0 0;
    }

    .shop_table__body a.remove > svg {
        width: initial;
        height: initial;
    }

    .blog-posts__content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
}

@media (min-width: 768px) {
    .ovh-mobile {
        overflow: visible;
    }

    .header__top .logo,
    .header__bottom .menu-button,
    .header__bottom .phone {
        display: none !important;
    }

    .categories-button,
    .header__categories,
    .header__bottom .lang,
    .header__bottom .menu,
    .header__bottom .logo,
    .header__bottom .my-account,
    .header__bottom .favorites,
    .header__top .menu,
    .header__top .phone {
        display: flex;
    }

    .categories-button {
        cursor: pointer;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.2px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        align-items: center;
        gap: 10px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .menu-wrapper {
        flex-direction: row;
        gap: 25px;
    }

    .header__top {
        justify-content: space-between;
        gap: 20px;
        padding: 19px 0;
    }

    .gtranslate_wrapper {
        flex-direction: column;
        margin-right: 4px;
        margin-top: 3px;
        gap: 14px;
    }

    .gtranslate_wrapper > a:first-child,
    .gtranslate_wrapper > a[data-gt-lang="pl"] {
        order: -1;
    }

    .gt-current-lang:before {
        width: calc(100% + 9px);
        height: calc(100% + 9px);
        transform: translate(-7px, -7px);
    }

    .header__bottom {
        margin-top: 8px;
    }

    .header__bottom .search {
        margin: 0;
    }

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children > .sub-menu {
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 100%;
        background-color: var(--white);
        z-index: 1;
    }

    .menu-item-has-children:hover > .sub-menu {
        margin: 0;
        padding: 10px 0 10px 20px;
    }

    .header__categories .menu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        transform: translateX(-100%);
        transition-duration: .3s;
        height: 100svh;
        overflow: auto;
        background-color:  var(--white);
        padding: 0 30px;
    }

    .header__categories .menu.open {
        transform: translateX(0);
    }

    .header__categories .menu .categories-button {
        margin: 20px 10px 0 auto;
    }

    .header__categories .menu .menu-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .header__bottom .logo {
        transform: translateX(-6vw);
        margin-left: auto;
        max-width: 34vw;
    }

    .header__bottom .buttons {
        margin-left: 4vw;
        gap: 10px;
        padding: 0;
    }

    .header__top .menu .menu-wrapper {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header__top .phone a {
        white-space: nowrap;
    }

    .header__bottom .lang {
        margin-left: 20px;
    }

    .menu-item-has-children:hover > .sub-menu {
        gap: 20px;
        padding: 20px 0 20px 20px;
        box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
    }

    .menu-item-has-children > a {
        pointer-events: initial;
    }

    .menu-item-has-children:hover > a {
        animation: none;
    }

    html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
        box-shadow: none;
        background: var(--fifth);
        padding: 11px 20px 11px 55px;
        min-width: 294px;
        font-size: 12px;
        line-height: 2;
        letter-spacing: 0.005em;
        transition-duration: .3s;
    }

    html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
        width: 28px;
        height: 28px;
    }

    html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
        border-color: var(--second);
    }

    html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
        padding: 11px 55px 11px 20px;
    }

    .header__bottom .buttons .text-button {
        flex-direction: column;
        gap: 10px;
    }

    .header__bottom .buttons .text-button > span {
        display: flex;
        font-size: 8px;
        line-height: 1.2;
        text-transform: uppercase;
    }
    
    .header__bottom .buttons .cart .text-button svg {
        margin-right: 5px;
    }

    .header__bottom #mini-cart-count {
        top: 8px;
    }

    .header__categories {
        padding: 6px 0;
        margin-top: 5px;
    }

    .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
        left: 11px;
        top: 12px;
    }

    .header__bottom .phone svg,
    .header__bottom .cart svg {
        width: initial;
    }

    .top-banner-slider__img {
        height: auto;
    }

    .products:not(.swiper-wrapper),
    .products__list {
        grid-template-columns:  repeat(4, minmax(0, 1fr));
    }

    .banner__wrapper {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .banner__picture {
        width: 50%;
    }

    .banner__texts {
        width: 50%;
        justify-content: center;
    }

    .text-blocks__wrapper {
        grid-template-areas: "biggest biggest"
                             "dark last";
    }

    .text-block.biggest {
        grid-area: biggest;
    }

    .text-block.dark {
        grid-area: dark;
    }

    .text-block.last {
        grid-area: last;
    }

    .icon-blocks__wrapper {
        justify-content: space-between;
    }

    .mobile-menu {
        display: none;
    }

    .woocommerce .page-shop .products,
    .page-shop .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .woocommerce div.product form.cart {
        grid-template-areas:
            "label ."
            "qty button";
        grid-auto-columns: 124px 1fr;
        margin-bottom: 28px;
        grid-gap: 1px 16px;
    }

    .alto-product__card {
        padding: 35px 24px 35px 35px;
    }

    .alto-product__card > p {
        gap: 16px;
        font-size: 17px;
        line-height: 24px;
    }
    
    .alto-product__card > p > strong {
        font-size: 24px;
        line-height: 30.1px;
    }

    .shop_table__header {
        display: grid;
        grid-template-areas: "name name price qty remove";
        grid-template-columns: minmax(130px, 25%)  22% minmax(100px, 173px) minmax(120px, 132px) 60px;
        gap: 20px;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--second);
        margin-bottom: 18px;
    }
    
    .shop_table__header > div {
        font-size: 16px;
        font-weight: 700;
        line-height: 23px;
    }
    
    .shop_table__header .name {
        grid-area: name;
    }
    
    .shop_table__header .price {
        grid-area: price;
    }
    
    .shop_table__header .qty {
        grid-area: qty;
    }
    
    .shop_table__header .remove {
        grid-area: remove;
    }

    .shop_table__body .woocommerce-cart-form__cart-item {
        display: grid;
        grid-template-areas: "name name price qty remove";
        grid-template-columns: minmax(130px, 25%)  22% minmax(100px, 173px) minmax(120px, 132px) 60px;
        gap: 20px;
        align-items: center;
        padding: 20px 0;
    }

    .shop_table__body .product-thumbnail {
        position: static;
    }

    .shop_table__body .product-name {
        max-width: 240px;
    }

    .shop_table__body .product-remove {
        grid-area: remove;
        position: static;
    }

    .shop_table__body .product-quantity {
        margin-top: 0;
    }

    .reservation-info {
        margin-top: 37px;
    }

    .shop_table__body .woocommerce-cart-form__cart-item:first-child {
        margin-top: 0;
        border-top: 0;
    }

    .contact-page__cards {
        grid-template-columns: 1fr 1fr;
    }

    .about-us__bottom-banner,
    .about-us__top-banner {
        grid-template-columns: 49.5% 1fr;
        grid-gap: 28px;
        margin-bottom: 74px;
    }

    .about-us__bottom-banner {
        grid-template-columns: 1fr 49.5%;
        margin-bottom: 66px;
    }

    .about-us__cards {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 21px;
    }

    .about-us__bottom-banner > .img {
        order: 0;
    }

    .error-404-content-banner--text-b {
        font-size: 40px;
        line-height: 42px;
    }

    .career__posts {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 66px;
    }

    .page-id-14 .wt_frontend_wishlist_table tr {
        grid-template-areas: "remove img name cart";
        grid-template-columns: 40px 90px 1fr auto;
    }

    .page-id-14 .wt_frontend_wishlist_table tr td:nth-child(3) {
        padding: 0 !important;
    }
}

@media (min-width: 992px) {
    .basic-button {
        font-size: 16px;
        padding: 9px 24px;
    } 

    .header__bottom .buttons {
        margin-left: auto;
        gap: 28px;
    }

    .header__bottom .lang {
        margin-left: 55px;
    }

    .header__bottom .logo {
        transform: translateX(-15px);
        max-width: none;
    }

    .top-banner-slider {
        margin-top: 29px;
    }

    .top-banner-slider__content-text-wrapper {
        padding: 58px;
    }

    .top-banner-slider__title {
        font-size: 40px;
        max-width: 404px;
        margin-bottom: 9px;
    }

    .top-banner-slider__desc {
        font-size: 19px;
        line-height: 1.5;
        margin-bottom: 34px;
    }

    .top-banner-slider__pagination {
        margin: 0;
        position: absolute;
    }

    .top-banner-slider__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 13px;
    }

    .top-banner-slider__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .quote {
        margin: 114px 0 105px;
    }

    .quote__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
    }

    .quote__author {
        text-align: right;
    }

    .products:not(.swiper-wrapper),
    .products__list {
        grid-gap: 20px;
    }

    .section-title {
        font-size: 36px;
        line-height: 45.14px;
        margin: 0 0 40px;
    }

    .product span.sale {
        top: 14px;
        font-size: 12px;
        line-height: 23px;
        padding: 3px 11px;
    }

    .product .alto-product span.sale {
        top: 44px;
    }

    .icon_above_image i:before {
        content: url('data:image/svg+xml; utf8, <svg width="22" height="18" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 17.25C11 17.25 1.625 12 1.625 5.625C1.62519 4.49825 2.01561 3.40634 2.72989 2.53492C3.44416 1.6635 4.4382 1.06635 5.54299 0.845007C6.64778 0.623662 7.79514 0.791781 8.78999 1.32078C9.78484 1.84978 10.5658 2.70701 11 3.74672C11.4342 2.70701 12.2152 1.84979 13.21 1.32078C14.2049 0.791783 15.3522 0.623663 16.457 0.845007C17.5618 1.06635 18.5558 1.6635 19.2701 2.53492C19.9844 3.40634 20.3748 4.49825 20.375 5.625C20.375 12 11 17.25 11 17.25Z" fill="rgb(157 130 90)" stroke="rgb(157 130 90)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    }

    .single_product_div i:before {
        content: url('data:image/svg+xml; utf8, <svg width="35" height="31" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 17.25C11 17.25 1.625 12 1.625 5.625C1.62519 4.49825 2.01561 3.40634 2.72989 2.53492C3.44416 1.6635 4.4382 1.06635 5.54299 0.845007C6.64778 0.623662 7.79514 0.791781 8.78999 1.32078C9.78484 1.84978 10.5658 2.70701 11 3.74672C11.4342 2.70701 12.2152 1.84979 13.21 1.32078C14.2049 0.791783 15.3522 0.623663 16.457 0.845007C17.5618 1.06635 18.5558 1.6635 19.2701 2.53492C19.9844 3.40634 20.3748 4.49825 20.375 5.625C20.375 12 11 17.25 11 17.25Z" fill="rgb(157 130 90)" stroke="rgb(157 130 90)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    }

    .icon_above_image {
        top: 9px;
        right: 24px;
    }

    .woocommerce ul.products li.product a img,
    .woocommerce-loop-product__link img {
        margin-bottom: 2px;
        min-height: 168px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce-loop-product__title {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 23px;
        max-width: 258px;
        padding: 0 13px;
    }

    .product-package {
        font-size: 14px;
        font-weight: 300;
        line-height: 16.8px;
        margin-bottom: 19px;
        padding: 0 13px;
    }
    
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price,
    .woocommerce ul.products li.product .price,
    .woocommerce-loop-product__link .price {
        gap: 41px;
        padding: 0 13px;
    }

    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price bdi,
    .woocommerce-loop-product__link .price bdi {
        font-size: 22px;
        font-weight: 400;
        line-height: 23px;
    }
    
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price del bdi,
    .woocommerce-loop-product__link .price del bdi {
        font-size: 14px;
        font-weight: 400;
        line-height: 23px;
    }

    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price {
        padding: 0;
        gap: 36px;
    }
    
    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price bdi {
        font-size: 30px;
        font-weight: 600;
    }

    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price del bdi {
        font-size: 14px;
        font-weight: 500;
        line-height: 23px;
        text-align: center;
        color: var(--sixth);
    }

    .recommended-products__wrapper {
        margin-bottom: 83px;
    }

    .woocommerce ul.products li.product:hover .button,
    .product:hover .add_to_cart_button {
        opacity: 1;
        transform: translateY(100%);
    }
    
    .product .add_to_cart_button:hover {
        background-color: var(--white);
        color: var(--second);
    }
    
    .product:hover .woocommerce-loop-product__link {
        border: 1px solid var(--second);
    }

    .added_to_cart  {
        padding: 12px 0;
    }

    .banner {
        margin-bottom: 70px;
    }

    .banner__texts {
        margin-bottom: 19px;
    }

    .banner__texts > p {
        font-size: 36px;
        line-height: 45.14px;
        margin-bottom: 44px;
    }

    .banner__texts > .button {
        padding: 9px 70px;
    }

    .banner__wrapper {
        gap: 113px;
    }

    .banner__picture {
        width: 60%;
        max-width: 735px;
    }

    .banner__texts {
        width: 40%;
        max-width: 358px;
        margin-right: auto;
    }

    .products-slider__naviagtion {
        display: flex;
        justify-content: flex-start;
        flex-direction: row-reverse;
        gap: 37px;
    }

    .swiper-pagination__next,
    .swiper-pagination__prev {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--fifth);
        color: var(--second);
        border: 1px solid var(--fifth);
        transition-duration: .3s;
    }

    .swiper-pagination__next:not(.swiper-button-disabled),
    .swiper-pagination__prev:not(.swiper-button-disabled) {
        cursor: pointer;
    }

    .swiper-pagination__next:not(.swiper-button-disabled):hover,
    .swiper-pagination__prev:not(.swiper-button-disabled):hover {
        background-color: var(--fourth);
        border: 1px solid var(--fourth);
    }

    .swiper-button-disabled {
        background-color: var(--white);
        color: var(--sixth);
        border: 1px solid var(--white);
    }

    .categories__button {
        width: 224px;
    }

    .categories__button strong {
        max-width: 209px;
    }
    
    .categories__button img {
        aspect-ratio: 224 / 182;
        margin-bottom: 16px;
    }

    .products-slider {
         margin-bottom: 12px;
    }

    .categories {
        margin-bottom: 108px;
    }

    .products-slider__wrapper {
        padding-bottom: 39px;
    }

    .product .woocommerce-loop-product__link {
        padding-bottom: 23px;
    }

    .text-blocks {
        margin-bottom: 62px;
    }

    .text-blocks__wrapper {
        grid-template-areas: "biggest dark"
                             "biggest last";
    }

    .text-block__title {
        font-size: 36px;
        line-height: 45.14px;
        margin-bottom: 16px;
    }

    .text-block.biggest {
        padding: 40px 68px 43px 56px;
        max-width: 625px;
    }

    .text-block.biggest .text-block__title {
        margin-bottom: 19px;
    }

    .text-block {
        padding: 40px 58px 42px 50px;
    }

    .icon-blocks__wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .icon-block__text {
        font-size: 26px;
        max-width: 223px;
    }

    .icon-block__img {
        height: 60px;
    }

    .home-blog {
        margin-bottom: 119px;
    }

    .icon-block {
        gap: 26px;
        max-width: none;
    }

    .post-card__img img {
        aspect-ratio: 413 / 250;
    }

    .icon-blocks {
        margin-bottom: 96px;
    }

    .partners {
        margin-bottom: 138px;
    }
    
    .partner {
        width: 161px;
    }

    .socials {
        margin-bottom: 60px;
    }

    .socials__title {
        margin-bottom: 6px;
    }

    .socials__text {
        font-size: 22px;
        line-height: 27px;
        max-width: 640px;
        margin: 0 auto 21px;
    }
    
    .socials__links {
        margin-bottom: 45px;
    }
    
    .socials__links > a {
        font-size: 22px;
    }

    .opinions {
        margin-bottom: 68px;
    }

    .opinions__title {
        margin-bottom: 1px;
    }

    .opinions__text {
        max-width: 705px;
        margin: 0 auto 20px;
    }

    .opinions__average {
        flex-direction: row;
        gap: 48px;
    }

    .opinions__average > strong,
    .opinions__average > img {
        margin: 0;
    }

    .opinions__slider {
        display: block;
        margin-top: 57px;
    }

    .opinion {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 36px 25px 38px;
        background-color: var(--fifth);
        gap: 17px;
    }

    .opinion__author {
        font-family: var(--font-secondary);
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
        max-width: 205px;
    }

    .opinion__text {
        font-size: 17px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 0.005em;
        text-align: center;
        color: var(--sixth);
        margin: 0;
    }

    .newsletter__content {
        padding: 18px 0 19px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .newsletter__text {
        font-size: 26px;
        margin: 0;
    }

    .newsletter__submit-wrapper .tnp-email {
        padding: 10px 20px;
    }

    .newsletter__submit-wrapper .tnp-submit {
        padding: 14px 41px;
    }

    .newsletter__form {
        width: 45%;
        max-width: 563px;
    }
    
    .site-footer {
        padding: 54px 0 20px;
    }

    .site-footer__menus {
        display: flex;
        gap: 10.2svw;
        margin-bottom: 54px;
    }

    .site-footer__col.first {
        padding: 0;
    }

    .site-footer__col-button + div,
    .site-footer__col-button.open + div {
        max-height: none;
        margin-bottom: 0;
    }

    .site-footer__col-button.open {
        margin-bottom: 30px;
    }

    .site-footer__col-button svg {
        display: none;
    }

    .site-footer__infos {
        display: flex;
        gap: 30px;
        margin-bottom: 70px;
    }

    .site-footer__info {
        align-items: center;
        flex-direction: row;
        margin-bottom: 0;
    }

    .site-footer__info > span {
        font-size: 18px;
        line-height: 22.57px;
        margin-bottom: 0;
    }

    .payments .site-footer__info-list img {
        height: 45px;
    }

    .site-footer__info-list {
        gap: 19px;
        margin-left: 44px;
    }

    .site-footer__copyright {
        flex-direction: row;
    }

    .page-shop .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .categories__button-archive {
        display: none;
    }

    .categories__wrapper {
        position: static;
        opacity: 1;
        transform: none;
    }

    .categories__wrapper > .secondary-menu-container {
        transform: none;
        padding: 0;
        position: static;
    }

    .page-shop .categories {
        margin-top: 80px;
    }

    .page-shop #main {
        grid-template-areas:
            "notices notices notices notices notices"
            "title count show . sort"
            "cats prods prods prods prods"
            ". pagination pagination pagination pagination";
        grid-template-columns: 313px auto auto auto auto;
        margin-top: 39px;
    }

    .page-shop .woocommerce-products-header {
        margin-bottom: 0;
    }

    .page-shop .products-per-page-form {
        margin-left: 32px;
    }

    .page-shop .woocommerce-result-count {
        padding: 5px 15px 3px;
        margin-left: 10px;
        text-align: left;
    }

    .page-shop .woocommerce-ordering {
        margin: 0;
    }

    .page-shop .categories .menu-wrapper {
        max-height: none;
        overflow: hidden;
    }

    .category-desc {
        margin-bottom: 71px;
    }

    .page-shop {
        margin-bottom: 50px;
    }

    .alto-product {
        grid-template-areas:
            "image summary"
            "tabs tabs"
            "cards cards"
            "related related";
        grid-gap: 19px 27px;
        grid-auto-columns: 1fr 1fr;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        max-width: 625px;
    }

    .alto-product__desc-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-gap: 26px;
    }

    .alto-product__cards {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 22px;
        margin-bottom: 91px;
    }

    .woocommerce div.product .product_title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 22px;
    }

    .woocommerce-cart .entry-content__wrapper > .woocommerce {
        display: grid;
        grid-template-areas:
            "notices notices"
            "cart totals"
            "products products";
        gap: 23px;
        grid-template-columns: 66% calc(34% - 23px);
    }

    .wc-proceed-to-checkout > .basic-button {
        padding: 5.5px 14px;
        margin-top: 27px;
    }

    .woocommerce-cart .products-slider {
        grid-area: products;
        margin-top: 71px;
    }

    .contact-page__cards {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .latest-post {
        grid-template-columns: 50% 50%;
        margin-bottom: 54px;
    }

    .blog-posts__content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px 20px;
        margin-bottom: 92px;
    }

    .about-us__cards {
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 77px;
    }
    
    .about-us__card {
        padding: 82px 24px 82px 46px;
    }

    .about-us__bottom-banner p,
    .about-us__top-banner p {
        padding-right: 42px;
    }

    .career__posts {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .career__post {
        padding: 26px 27px 23px;
    }
}
.contact-page__link,
.contact-page__link strong{
    font-weight: bold;
}
.newsletter{
    background-color: #fff;
    border:1px solid #9D825A;
}
.newsletter__text{
    color: #9D825A;
}
.newsletter__submit-wrapper .tnp-email{
    border:1px solid #9D825A;
}
.newsletter__submit-wrapper .tnp-submit{
    border:1px solid #9D825A;
    background-color: #fff;
    color: #9D825A;
}
.newsletter__submit-wrapper .tnp-submit:hover{
    color: #fff;
}
.banner .banner__wrapper{
    border: 1px solid #dedede;
}
.banner .banner__wrapper picture{
    margin-bottom: 0;
}
.b2btop.about-us__top-banner h2{
    text-transform: uppercase;
}
.b2btop.about-us__top-banner h2,
.b2btop.about-us__top-banner h3{
    color: #2E2E2E;
    font-family: Arsenal;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.b2btop.about-us__top-banner .basic-buttonempty{
    background-color: #fff;
    color: #9D825A;
}
.b2btop.about-us__top-banner .basic-buttonempty:hover{
    color: #fff;
    background-color: #9D825A;
}
.stepsrow{
    margin-top: 30px;
}
.sr__item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}
.sr__item .sr__item--l{
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sr__item .sr__item--content{
    width: calc(100% - 110px);
}
.sr__item .sr__item--nr{
    border: 1px solid #9D825A;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9D825A;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1em; /* 175% */
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}
.sr__item .sr__item--t{
    color: #9D825A;
    font-family: Arsenal;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.sr__item .sr__item--desc{
    color: #2E2E2E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 141.176% */
    letter-spacing: 0.085px;
    margin-bottom: 10px;
}

.faq-wrapper {
  padding: 10px;
  max-width: 830px;
  margin: 0 auto; 
  margin-top: 30px;
}

.faq-item {
  position: relative;
  background: #fff;
  margin-bottom: 0px; 
  border-radius: 0px;
  border: 1px solid #9D825A; 
  border-bottom: none;
}
.faq-item:last-of-type {
  border-bottom: 1px solid #9D825A; 
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2E2E2E;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Arsenal;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
  /* 183.333% */
  letter-spacing: 0.09px;
  padding: 15px 25px;
  border-radius:0; }
  @media screen and (max-width: 599px) {
    .faq-question {
      padding: 10px;
      font-size: 16px; } }

.faq-toggle {
  font-size: 18px;
  transform: rotate(0deg);
  transition: transform 0.3s; }

.faq-answer {
  display: none;
  padding: 15px 25px;
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em; }
  @media screen and (max-width: 599px) {
    .faq-answer {
      padding: 10px;
      font-size: 14px; } }

.faq-item.active .faq-answer {
  display: block; }

.faq-item.actives .faq2 {
  display: none; }

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  /* dla efektu "zamknięcia" */ }

.faq-item.actives .faq-question {
  background-color: #9D825A;
  color: #fff; }
  .faq-item.actives .faq-question svg path {
    stroke: #fff; }

.faqbox .faqbox__title,
.kk__title{
    color: #2E2E2E;
font-family: Arsenal;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
margin-bottom: 30px;
text-align: center;
}
.faqbox .faqbox__desc{
    color: #727272;
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Lato;
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 141.176% */
letter-spacing: 0.085px;
max-width: 830px;
  margin: 0 auto; 
}
.kk__btns{
    display: flex;
    align-items: center;
    justify-content: center;
}
.kk__btn{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #9D825A;
    font-family: Lato;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 181.818% */
    letter-spacing: 0.66px;
    margin: 10px 15px;
}
.kk__btn svg{
    margin-right: 10px;
}
.kk__btn:hover{
    text-decoration: underline;
}
.kk__formbox{
    padding: 60px 120px;
    width: 818px;
    border: 1px solid #9D825A;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
}
.kk__formbox--t{
    color: #2E2E2E;
    font-family: Arsenal;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 80% */
    text-align: center;
    text-transform: uppercase;
}
.kk__form label{
    width: 100%;
    color: #2E2E2E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    letter-spacing: 0.075px;
    display: block;
}
.kk__form input[type='text'],
.kk__form input[type='tel'],
.kk__form input[type='email'],
textarea{
    padding: 12px;
    width: 100%;
    max-height: 112px;
    border: 1px solid #2E2E2E;
    background: #FFF;
    box-shadow: none;
    margin-top: 10px;
    resize: none;
}
.kk__form input::placeholder,
textarea::placeholder{
    color: #2E2E2E;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Calibri;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 153.846% */
letter-spacing: 0.065px;
}
.kk__form .wpcf7-acceptance .wpcf7-list-item{
    margin-left: 0;
}
.kk__form .wpcf7-acceptance .wpcf7-list-item-label{
    color: #2E2E2E;
    font-family: Lato;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 15px; /* 115.385% */
}
.kk__form .wpcf7-acceptance .wpcf7-list-item-label a{
    color: #9D825A;
}
.kk__form .wpcf7-submit{
    border: 1px solid #9D825A;
    padding: 15px 40px;
    text-align: center;
    background-color: #fff;
    color: #9D825A;
    font-family: Lato;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 10px;
    text-transform: uppercase;
}
.kk__form .wpcf7-submit:hover{
    color:#fff;
    background-color: #9D825A;
}
@media screen and (max-width: 899px) {
    .kk__btns{
        flex-wrap: wrap;
    }
    .kk__formbox{
        padding: 20px 10px;
        width: auto;
    }
}
.ct__row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 40px;
    margin-bottom: 40px;
}
.ct__item{
    border: 1px solid #9D825A;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(25% - 10px);
}
.ct__item.ct__item--2{
    align-items: center;
}
@media screen and (max-width: 1440px) {
    .ct__item{
        padding:30px 20px;
        width: calc(25% - 10px);
    }
}
@media screen and (max-width: 1140px) {
    .ct__item{
        padding:40px;
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 600px) {
    .ct__item{
        padding:15px 10px;
        width: 100%;
        margin-bottom: 20px;
    }
}
.ct__item--img{
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
}
.ct__item--img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ct__item--t {
    color: #9D825A;
    font-family: Arsenal;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.ct__item.ct__item--2 .ct__item--t{
    text-align: center;
}
.ct__item--desc {
    color: #2E2E2E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 141.176% */
    letter-spacing: 0.085px;
}
.ct__item.ct__item--2 .ct__item--desc{
    text-align: center;
}