@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}
body, ul, li, p, h1, h2, h3, h4, h5 {
    font-weight: 400;
    margin: 0;
    padding: 0;
}
:root {
    --color-white: #FFFFFF;
    --color-black: #1F1F1F;
    --color-sky: #0994C9;
    --color-blue: #024999;
    --color-red: #E73333;
    --color-blush: #FBECEE;
    --color-silver: #F4F6FB;
    --color-steel: #AEAEAE;
    --color-charcoal: #4C4B4D;
    --color-frost: #E9F1F8;
    --color-ice: #F5FBFE;

    --container-padding: 40px;
}
.color-white {
    color: var(--color-white);
}
.color-black {
    color: var(--color-black);
}
.color-sky {
    color: var(--color-sky);
}
.color-red {
    color: var(--color-red);
}
.color-blush {
    color: var(--color-blush);
}
.color-silver {
    color: var(--color-silver);
}
.color-steel {
    color: var(--color-steel);
}
.color-charcoal {
    color: var(--color-charcoal);
}
.color-frost {
    color: var(--color-frost);
}
.bg-white {
    background-color: var(--color-white);
}
.bg-black {
    background-color: var(--color-black);
}
.bg-silver {
    background-color: var(--color-silver);
}
.bg-blue {
    background-color: var(--color-blue);
}
.container {
    width: calc(100% - 80px);
    max-width: 1480px;
    padding-inline: var(--container-padding);
    margin-inline: auto;
}
div {
    box-sizing: border-box;
}

.btn-light {
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: background-color .3s ease;
}

.btn-sky {
    background-color: var(--color-sky);
    padding: 12px 24px;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: background-color .3s ease;
}  
.btn-sky::after,
.btn-light::after {
    content: '';
    background: linear-gradient(90.4deg, #65BCDD 13.06%, #13769B 77.53%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-sky:hover::after,
.btn-light:hover::after {
    opacity: 1;
}
.btn-sky span,
.btn-sky svg {
    position: relative;
    z-index: 1;
}

.transition {
    transition: all .3s;
}
.font-size-18 {
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
}
.font-size-20 {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.02em;
}
.font-size-24 {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.02em;
}
.font-size-30 {
    font-size: 30px;
    line-height: 140%;
    letter-spacing: -0.02em;
}
.font-size-36 {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: -0.02em;
}
.font-size-48 {
    font-size: 48px;
    line-height: 140%;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.ls-normal {
    letter-spacing: normal;
}
.w100 {
    width: 100%;
}
.h100 {
    height: 100%;
}
.fw400 {
    font-weight: 400;
}
.fw500 {
    font-weight: 500;
}
.fw600 {
    font-weight: 600;
}
.pt80 {
    padding-top: 80px;
}
.pb80 {
    padding-bottom: 80px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.p48 {
    padding: 48px;
}
.p30 {
    padding: 30px;
}
.flex {
    display: flex;
}
.direction-column {
    flex-direction: column;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.align-items-center {
    align-items: center;
}
.align-items-start {
    align-items: flex-start;
}
.align-items-end {
    align-items: flex-end;
}
.align-items-stretch {
    align-items: stretch;
}
.flex-wrap {
    flex-wrap: wrap;
}

.br8 {
    border-radius: 8px;
}
.gap48 {
    gap: 48px;
}
.gap24 {
    gap: 24px;
}
.gap20 {
    gap: 20px;
}
.gap16 {
    gap: 16px;
}
.gap12 {
    gap: 12px;
}
.gap10 {
    gap: 10px;
}
.gap8 {
    gap: 8px;
}
.text-center {
    text-align: center;
}
/* .uppercase {
    text-transform: uppercase;
} */
.w50 {
    width: calc((100% - 24px)/2);
}
.mb14 {
    margin-bottom: 14px;
}
.gradient-blue {
    color: transparent;    
	-webkit-background-clip: text;
	background-clip: text;
    background-image: linear-gradient(88.31deg, #00A0E3 2.87%, #024999 97.13%);

}
.gradient-red {
    color: transparent;    
	-webkit-background-clip: text;
	background-clip: text;
    background-image: linear-gradient(90.14deg, #FC818D 0%, #DA4151 95.83%);
}
.color-gradient {
    background: linear-gradient(88.31deg, #00A0E3 2.87%, #024999 97.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;  
}

/* preloader */

/* preloader */

/* burger-menu */
.burger-menu {
    display: none;
}
.burger-menu__button {
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.burger-menu__lines::before,
.burger-menu__lines::after,
.burger-menu__lines {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #4C4B4D;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 2px;
}
.burger-menu__lines::before {
    content: '';
    top: -8px;
}
.burger-menu__lines::after {
    content: '';
    top: 8px;
}

.burger-menu__active .burger-menu__lines {
    background-color: transparent;
}
.burger-menu__active .burger-menu__lines::before {
    top: 0;
    transform: rotate(45deg);
}
.burger-menu__active .burger-menu__lines::after{
    top: 0;
    transform: rotate(-45deg);
}

.burger-menu__nav-wrap {
    position: absolute;
    top: 120px;
    z-index: 20;
    display: flex;
    flex-flow: column;
    min-width: 265px;
    height: 100%;
    background-color: var(--color-white);
    overflow-y: auto;
    left: -100%;
    border-left: 1px solid var(--color-frost);
    padding: 24px;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}
.burger-menu ul {
    display: flex;
    flex-flow: column;
    gap: 16px;
}
.burger-menu ul.menu li a{
    padding: 4px 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: var(--color-black);
    transition: all .3s;
}
.burger-menu ul.menu li a:hover {
    color: var(--color-sky);
    transition: all .3s ease-out;
}
.burger-menu__active .burger-menu__nav-wrap {
    left: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.burger-menu__links {
    padding-left: 4px;
}
/* burger-menu */

/* header */
.header-silver {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 479px;
}
header {
    padding-top: 48px;
    padding-bottom: 24px;
    height: 120px;
    box-sizing: border-box;
}
.header-nav ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-nav ul.menu li a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: var(--color-black);
    transition: all .3s;
}
.header-nav ul.menu li a:hover {
    color: var(--color-sky);
    transition: all .3s ease-out;
}
body ul.menu li.current-menu-item a {
    color: var(--color-sky);
}
.header-nav ul.menu li.current-menu-item {
    border: 1px solid var(--color-sky);
    border-radius: 8px;
}
.header-logo__img {
    max-width: 186px;
}

.cart-btn {
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border-radius: 8px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: background-color .3s ease;
}
.cart-btn::after {
    content: '';
    background: linear-gradient(90.4deg, #B9E8FA 13.06%, #D9F4FF 74.84%);
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-btn:hover::after {
    opacity: 1;
}
.cart-btn svg {
    position: relative;
    z-index: 1;
}
.cart-quantity {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-frost);
}
/* header */

.breadcrumbs {
    padding-top: 48px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 18px;
    width: 100%;
}
.breadcrumbs a {
    color: var(--color-steel);
    transition: all .3s;
}
.breadcrumbs a:hover {
    color: var(--color-sky);
    transition: all .3s;
}
.breadcrumbs svg {
    width: 7px;
    height: 11px;
    min-width: 7px;
}

/* footer */
.footer {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}
.footer-nav ul.menu {
    display: flex;
    flex-wrap: wrap;
    max-width: 318px;
}
.footer-nav ul.menu li a {
    padding: 8px 16px;
    display: inline-block;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.02em;
    transition: all .3s;
}
.footer-nav ul.menu li a:hover {
    color: var(--color-sky);
    transition: all .3s ease-out;
}


.footer-line {
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: 0.24;
}
.footer-bottom__link {
    opacity: 0.3;
    transition: all .3s;
}
.footer-bottom__link:hover {
    opacity: 1;
    transition: all .3s;
}
/* footer */

/* cookie */
.cookie-wrap {
    background-color: var(--color-white);
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: auto;
    max-width: calc(100% - 80px);
    max-width: 674px;
    padding: 32px;
    display: none;
    z-index: 5;
    box-shadow: 0px 0px 20px rgb(0 0 0/10%);
}
.cookie-btn {
    width: fit-content;
}
.cookie-wrap .cookie-text a {
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: all .3s ease-out;
}
.cookie-wrap .cookie-text a:hover {
    border-bottom: 1px solid var(--color-sky);
    transition: all .3s ease-out;
}
.cookie-btn {
    background-color: var(--color-white) !important;
    border: 1px solid var(--color-sky);
}
.cookie-btn p {
    transition: all .3s ease-out;
}
.cookie-btn:hover p {
    color: var(--color-white) !important;
}
/* cookie */

/* swiper */
body .swiper-btn.swiper-button-prev, body .swiper-btn.swiper-button-next {
    border-radius: 8px;
    background-color: var(--color-silver);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    overflow: hidden;
    outline: none;
}
body .swiper-btn.swiper-button-prev::after, body .swiper-btn.swiper-button-next::after {
    content: '';
    background: linear-gradient(90.4deg, #B9E8FA 13.06%, #D9F4FF 74.84%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}
body .swiper-btn.swiper-button-prev:hover::after, body .swiper-btn.swiper-button-next:hover::after {
    opacity: 1;
    transition: all 0.3s ease;
}
body .swiper-btn.swiper-button-next svg, body .swiper-btn.swiper-button-prev svg {
    width: auto;
    height: auto;
}
/* swiper */

/* single news */
.post-date {
    padding-top: 48px;
    padding-bottom: 24px;
}
.news-thumb {
    border-radius: 16px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 48px;
}
.news-thumb img,
.entry-content img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.entry-content img {
    margin-bottom: 24px;
}
.entry-content figure {
    margin-bottom: 0;
}
.entry-content p {
    margin-bottom: 24px;
}
.type-news {
    padding-bottom: 24px;
}
.related-posts {
    padding-top: 48px;
    padding-bottom: 96px;
}
.related-post__item {
    display: inline-block;
    width: 25%;
    background-color: var(--color-ice);
    position: relative;
    padding: 24px;
    box-sizing: border-box;
    transition: all .3s;
}
.related-post__item::after {
    content: '';
    background: linear-gradient(88.31deg, #00A0E3 2.87%, #024999 97.13%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.related-post__item:hover::after {
    opacity: 1;
    transition: all 0.3s ease;
}
.related-post__title {
    transition: all 0.3s;
}
.related-post__item:hover .related-post__title {
    color: var(--color-white);
    transition: all 0.3s;
}
.related-posts__wrap {
    background-color: var(--color-ice);
    overflow: hidden;
}
.related-post__content {
    position: relative;
    z-index: 1;
    height: 100%;
}
.related-post__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.related-post__image img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}
.single-news .entry-content li {
	list-style: inherit;
}
/* single news */

/* contact */
.page-template-page-contact .header-silver {
    background-color: var(--color-white);
}
.contact {
    padding-top: 48px;
    padding-bottom: 96px;
}
.contact-map {
    width: 100%;
    height: 488px;
    border-radius: 16px;
    overflow: hidden;
}
#map {
    width: 100%;
    height: 100%;
}
.ymaps-2-1-79-map {
    width: 100%;
    height: 100% !important;
}
.contact-img {
    width: 24px;
    height: 24px;
}
.contact-left {
    width: 50%;
    min-width: 700px;
}
.contact-right {
    width: 50%;
}
.contact-map .ymaps-2-1-79-map .ymaps-2-1-79-image {
    left: -20px !important;
    top: -20px !important;
}
.my-custom-block {
    width: 230px;
    position: absolute;
    top: -22px;
    left: 6px;
    z-index: 3000;
    padding: 4px;
    border-radius: 8px;
    background: rgb(255 255 255 / 70%);
}
.map-custom-title {
    font-size: 16px;
}
.map-custom-subtitle {
    font-size: 14px;
}
/* contact */

/* 404 */
.error404 .header-silver {
    background-color: var(--color-white);
}
.error-404 {
    padding-top: 48px;
    padding-bottom: 96px;
}
/* 404 */

/* privacy */
.page-template-page-privacy .header-silver {
    background-color: var(--color-white);
}
.privacy {
    padding-top: 48px;
    padding-bottom: 96px;
}
.privacy-text p, .privacy-text a {
    font-weight: 500;
}
.privacy-text a {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
/* privacy */

/* bvi */
.bvi-widget, .bvi-shortcode a, .bvi-widget a, .bvi-shortcode {
    background-color: transparent !important;
}
.bvi-widget, .bvi-shortcode {
    padding: 0 !important;
}
.bvi-widget .bvi-svg-eye, .bvi-shortcode .bvi-svg-eye {
    width: 24px !important;
    height: 24px !important;
}
/* bvi */

/* modal */
.modal.show {
    opacity: 1;
    visibility: visible;
}
.modal {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    position: fixed;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    cursor: auto;
    z-index: 8;
}
.modal-bg-close {
    position: fixed;
    /* height: 100vh;
    width: 100vw; */
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
}
.modal-item {
    max-width: 781px;
    padding: 48px;
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: var(--color-white);
    border: 1px solid var(--color-frost);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    top: 50%;
    /* top: 0; */
    left: 50%;
    transform: translate(-50%, -50%);
    /* transform: translate(-50%, 0%); */
    z-index: 12;
}
.modal-close {
    cursor: pointer;
}
.modal-close svg {
    transition: all .3s;
}
.modal-close svg:hover {
    transform: rotate(90deg);
    transition: all .3s;
}

.modal-form__title {
    margin-bottom: 40px;
}
/*modal*/

/* cf7 */
.form-wrap,
.form-wrap__bottom>p  {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-wrap .form-item {
    width: 100%;
    padding: 13px 8px 13px 16px;
    border: 1px solid var(--color-frost);
    outline: none;
    border-radius:  8px;
}
.form-wrap .wpcf7-list-item {
    margin: 0;
}
.form-wrap .checkbox-filed {
    position: relative;
    width: 0px;
    height: 0px;
    margin: 0;
    top: -10px;
    margin-right: 20px;
}
.form-wrap__bottom .checkbox-filed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--color-black);
    opacity: 0.48;
    z-index: 1;
}
.form-wrap__bottom input.checkbox-filed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    margin-left: 3px;
}

.form-wrap__bottom input.checkbox-filed:checked::after {
    content: url('../img/check.png');
}
.form-wrap__bottom .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}
.select-field__wrap {
    position: relative;
}
.select-field__wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: url('../img/select-icon.png');
    background-size: 24px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    z-index: 1;
}
.form-wrap .select-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    padding-right: 48px;
    cursor: pointer;
}
.form-wrap .select-field option {
    cursor: pointer;
}
.form-wrap__bottom .submit-btn {
    outline: none;
    border: none;
    cursor: pointer;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    border-radius: 8px;
}
/* cf7 */

/* woocommerce */
body .woocommerce .button,
.woocommerce div.product form.cart .button {
    background-color: var(--color-sky);
    color: var(--color-white);
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
    padding: 12px 24px;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all .3s ease;
}
body .woocommerce .button::after,
.woocommerce div.product form.cart .button::after {
    content: '';
    background: linear-gradient(90.4deg, #65BCDD 13.06%, #13769B 77.53%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}
body .woocommerce .button:hover {
    color: var(--color-white);
}
body .woocommerce .button:hover::after,
.woocommerce div.product form.cart .button:hover::after {
    opacity: 1;
}

/* single-product */
.postid-315 #product-315 .order-block > :nth-child(1), /* скрываю первые два дочерних блока у order-block для свободного заказа */
.postid-315 #product-315 .order-block > :nth-child(2) {
    display: none;
}
.woocommerce div.product {
    margin-top: 48px;
}
.woocommerce .summary p {
    font-weight: 500;
}
.woocommerce-page div.product div.images {
    max-width: 510px;
    height: 370px;
    margin-right: 24px;
}
.woocommerce div.product div.images img {
    min-width: 400px;
    height: 370px;
    object-fit: cover;
    border-radius: 8px;
}
.woocommerce-page div.product div.summary {
    width: fit-content;
    float: none;
}
.woocommerce-page div.product div.summary a {
    color: inherit;
    transition: all .3s;
}
.woocommerce-page div.product div.summary a:hover {
    color: var(--color-sky);
    transition: all .3s;
}
/* single-product */

/* single-product-custom-related-products */
.related-products {
    margin-top: 48px;
    margin-bottom: 96px;
}
.product-slider {
    margin-top: 48px;
}
.product-image {
    border-radius: 8px;
    object-fit: cover;
    opacity: 0.8;
    transition: all .3s;
}
.product-name {
    margin-top: 16px;
}
.product-link:hover .product-image {
    opacity: 1;
    transition: all .3s;
}
.woocommerce .product-image {
    height: calc((100vw - 160px - 120px) / 6);
}
/* single-product-custom-related-products */

/* single-product-custom-tabs */
.single-product .quantity {
    display: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt {
    background-color: var(--color-sky);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button {
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: background-color .3s ease;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
    font-weight: 500;
}
.woocommerce div.product form.cart .button {
    width: 100%;
}
.single-product .single_add_to_cart_button::after {
    content: '';
    background: linear-gradient(90.4deg, #65BCDD 13.06%, #13769B 77.53%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.single-product .single_add_to_cart_button:hover::after {
    opacity: 1;
}
.woocommerce div.product form.cart {
    margin-bottom: 0;
}

.single-product .checkout-button {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 12px 14px;
    background-color: var(--color-white);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
    box-sizing: border-box;
    border: none;
    transition: background-color .3s ease;
}
.single-product .checkout-button::after {
    content: '';
    background: linear-gradient(90.4deg, #B9E8FA 13.06%, #D9F4FF 74.84%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.single-product .checkout-button:hover::after {
    opacity: 1;
}
.order-block .order-cart-notification {
    background-color: var(--color-frost);
    border-radius: 8px;
    padding: 16px 12px;
}

.order-block {
    width: 345px;
    min-width: 345px;
    height: fit-content;
    /* margin-top: 24px; */
    margin-bottom: 6px;
    padding: 24px;
    border: 1px solid var(--color-frost);
    border-radius: 8px;
    position: sticky;
    top: 24px;
    right: 0;
}
.tabs {
    padding-top: 48px;
    padding-bottom: 48px;
}
.tabs-header {
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(90.4deg, #B9E8FA 13.06%, #D9F4FF 74.84%);
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-clip: padding-box;
}
.tab {
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid transparent;
    outline: none;
    cursor: pointer;
    transition: all .3s;
}
.tab.active, .tab:hover {
    border-bottom: 1px solid var(--color-sky);
    transition: all .3s;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: flex;
}
#tab-1 {
    position: relative;
}
.tab-pane-3__title {
    max-width: 342px;
    min-width: 342px;
}
/* single-product-custom-tabs */

/* woocommerce */
.woocommerce h1 {
    width: 100%;
}
.cart-checkout {
	margin-top: 48px;
	margin-bottom: 48px;
	border-bottom: 1px solid transparent;
    background-image: linear-gradient(90.4deg, #B9E8FA 13.06%, #D9F4FF 74.84%);
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-clip: padding-box;
    width: 100%;
}



/*cart*/
.wc-empty-cart-message {
    width: 100%;
}
.woocommerce-cart.woocommerce-page .site-main>.woocommerce { 
    min-height: calc(100vh - 120px - 447px);
}
.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 48px;
}
.woocommerce-cart .woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 24px;
}
.woocommerce-cart .woocommerce-error, .woocommerce-cart .woocommerce-info, .woocommerce-cart .woocommerce-message {
    margin-bottom: 0;
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    border: none;
    background-color: var(--color-frost);
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
}
.woocommerce-cart .woocommerce-error::before, .woocommerce-cart .woocommerce-info::before, .woocommerce-cart .woocommerce-message::before {
    display: none;
}
.woocommerce-cart .woocommerce-cart-form {
    width: calc(100% - 343px - 24px);
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.woocommerce-cart .cart-collaterals {
    width: 100%;
    max-width: 343px;
    height: fit-content;
    position: sticky;
    top: 24px;
    right: 0;
    padding: 24px;
    border: 1px solid var(--color-frost);
}
.woocommerce-cart .cart-collaterals::after, .woocommerce-cart .cart-collaterals::before {
    display: none;
}
.woocommerce-cart .cart-collaterals .custom-cart-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.woocommerce-cart .woocommerce-cart-item {
    padding: 24px;
    border: 1px solid var(--color-frost);
}
.woocommerce-cart .product-name {
    margin-top: 0;
}
.woocommerce-cart .variation-name {
    width: 34%;
    min-width: 34%;
}
.woocommerce-cart .product-variations .comment .variation-value {
    width: 100%;
}
body.woocommerce-cart .cart-collaterals .btn-sky {
    background-color: var(--color-sky) !important;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    height: fit-content;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    box-sizing: border-box;
}
.woocommerce-cart .coupon label {
    width: 34%;
    min-width: 34%;
    display: inline-block;
    font-weight: 500;
}
.woocommerce-cart .coupon .input-text {
    width: 100%;
    padding: 13px 8px 13px 16px;
    border: 1px solid var(--color-frost);
    outline: none;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: -0.02em;
}
body.woocommerce-cart .btn-light {
    background-color: transparent;
    border: 1px solid var(--color-sky);
    color: var(--color-sky);
    padding: 12px 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    font-weight: 400;
    height: 48px;
    transition: all .3s;
}
body.woocommerce-cart .btn-light:hover {
    color: var(--color-white);
    transition: all .3s;
}
body.woocommerce-cart .cart-comment-field,
body.woocommerce-cart .input-text {
    width: 100%;
    border: 1px solid var(--color-frost);
    border-radius: 8px;
    padding: 13px 8px 13px 16px;
    box-sizing: border-box;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    transition: all .3s;
}
body.woocommerce-cart .cart-comment-field:focus-visible,
body.woocommerce-cart .input-text:focus-visible {
    border: 1px solid var(--color-sky);
    outline: 1px solid var(--color-sky);
    transition: all .3s;
}
.woocommerce-cart .woocommerce .blockUI.blockOverlay::before { /* скрываю индикатор загрузки */
    display: none;
}
/* .woocommerce-cart  */
/*cart*/

/* checkout  */
form.woocommerce-checkout {
    padding-bottom: 48px;
}
.woocommerce-checkout.page .woocommerce-form-coupon-toggle,
.woocommerce-checkout.page table.shop_table,
.woocommerce-checkout.page .col2-set .col-2,
.woocommerce-checkout.page .woocommerce-checkout-payment,
.woocommerce-checkout.page .woocommerce-additional-fields #order_comments_field,
.woocommerce-checkout.page .woocommerce-additional-fields>h3 {
    display: none;
}
.woocommerce-checkout.page .custom-order-review,
.woocommerce-checkout.page #customer_details {
    width: calc(100% - 343px - 24px);
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid var(--color-frost);
    background-color: var(--color-white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.woocommerce-checkout.page .custom-order-review .custom-order-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.woocommerce-checkout.page .custom-order-review .custom-order-item {
    font-size: 18px;
}
.woocommerce-checkout.page .custom-order-review .custom-product-details-wrap,
.woocommerce-checkout.page .custom-checkout-wrapper .custom-additional-fields {
    display: flex;
    gap: 24px;
}
#file-upload-form {
    padding-bottom: 24px;
}
.woocommerce-checkout.page .custom-checkout-details {
    width: calc(100% - 343px - 24px);
    padding: 24px;
    border: 1px solid var(--color-frost);
    background-color: var(--color-white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 18px;
}
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields>h3 {
    display: none;
}
.woocommerce-checkout.page .custom-checkout-details .customer-type-selector {
    display: flex;
    gap: 24px;
}
.woocommerce-checkout.page .custom-checkout-details .customer-type-selector .customer-type-options {
    display: flex;
}
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 8px;
    padding: 0;
    margin: 0;
    margin-top: 24px;
    width: 100%;
}
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row::before {
    display: none;
}
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row span {
    width: calc(68% - 24px);
}
.woocommerce-checkout.page .custom-checkout-details .custom-additional-fields-title h3,
.woocommerce-checkout.page .custom-checkout-details .customer-type-selector h3 {
    font-size: 18px;
}
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row .input-text {
    padding: 13px 8px 13px 16px;
    border: 1px solid var(--color-frost);
    border-radius: 8px;
    background-color: transparent;
    outline: none;
    font-size: 18px;
    transition: all .3s;
}
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row .input-text:focus-visible {
    border: 1px solid var(--color-sky);
    transition: all .3s;
}
.woocommerce-checkout.page .custom-checkout-details .customer-type-selector h3,
.woocommerce-checkout.page .custom-checkout-details .custom-additional-fields-title,
.woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper .form-row label {
    width: 32%;
}
.woocommerce-checkout.page .custom-checkout-details .customer-type-options label {
    padding: 16px 24px;
    border: 1px solid var(--color-frost);
    border-radius: 8px;
    cursor: pointer;
    background-color: transparent;
    margin-right: 8px;
    transition: all .3s;
}
.woocommerce-checkout.page .custom-checkout-details .customer-type-options label.active {
    border: 1px solid var(--color-sky);
    background-color: var(--color-ice);
    transition: all .3s;
}
.woocommerce-checkout.page .custom-checkout-details .customer-type-options label input {
    visibility: hidden;
    height: 0;
    width: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
}
.woocommerce form .custom-additional-fields .form-row {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
    padding: 0;
    margin: 0;
    margin-left: -24px;
}
.woocommerce form .custom-additional-fields .form-row label {
    font-size: 0;
}
.woocommerce form .custom-additional-fields .form-row label.custom-upload-btn {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid var(--color-black);
    border: 1px solid var(--color-frost);
    border-radius: 8px;
    width: fit-content;
    cursor: pointer;
    transition: all .3s;
}
.woocommerce form .custom-additional-fields .form-row label.custom-upload-btn:hover {
    border: 1px solid var(--color-sky);
    background-color: var(--color-ice);
    transition: all .3s;
}
.woocommerce form .custom-additional-fields .form-row .input-cffu-file-upload {
    width: 0;
    height: 0;
    visibility: hidden;
    padding: 0;
    border: none;
}
.woocommerce form .custom-additional-fields .custom-file-upload {
    display: flex;
    align-items: center;
    gap: 24px;
}
.woocommerce form .custom-additional-fields .custom-file-upload .file-name-display {
    opacity: 0.48;
}
.woocommerce-checkout.page .woocommerce-error, .woocommerce-checkout.page .woocommerce-info, .woocommerce-checkout.page .woocommerce-message {
    background-color: var(--color-frost);
    border-radius: 8px;
    border: 2px solid #b81c23;
    padding: 16px 24px;
    margin-bottom: 48px;
}
.woocommerce-checkout.page .woocommerce-error li, .woocommerce-checkout.page .woocommerce-info li, .woocommerce-checkout.page .woocommerce-message li {
    padding: 4px 0;
}
.woocommerce-checkout.page .woocommerce-error li a, .woocommerce-checkout.page .woocommerce-info li a, .woocommerce-checkout.page .woocommerce-message li a {
    color: var(--color-black);
}
.woocommerce-checkout.page .woocommerce-error::before, .woocommerce-checkout.page .woocommerce-info::before, .woocommerce-checkout.page .woocommerce-message::before {
    display: none;
}



/* Скрываем стандартный чекбокс */
input[type="checkbox"]#privacy_policy {
    position: relative;
    width: 0;
    height: 0;
    margin-right: 22px;
    margin-top: -22px;
}
/* Создаем кастомный чекбокс */
input[type="checkbox"]#privacy_policy::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-black);
    border-radius: 4px;
    opacity: 0.48;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}
/* Стили для отмеченного состояния */
input[type="checkbox"]#privacy_policy:checked::before {
    background-color: transparent;
    position: relative;
}
/* Добавляем SVG галочку */
input[type="checkbox"]#privacy_policy:checked::after {
    content: '';
    position: relative;
    left: 2px;
    top: -17px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3327 4L5.99935 11.3333L2.66602 8' stroke='%231F1F1F' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    opacity: 0.48;
}
.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
    cursor: pointer;
}
.woocommerce .button#place_order {
    margin-top: 16px;
    background-color: var(--color-sky);
    transition: all .3s;
}
/* checkout  */

/* woocommerce-order-received, thankyou */
.woocommerce-order-received .header-silver {
    height: 120px;
}
.woocommerce-order-received .woocommerce .woocommerce-order.container {
    padding: 0;
    min-height: calc(100vh - 120px - 447px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
}
.woocommerce-order-received .woocommerce-notice {
    background-color: var(--color-frost);
    padding: 24px;
    width: calc(100% - 48px);
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
}
.woocommerce-checkout.page .custom-checkout-details label.required_field span,
.woocommerce-checkout.page .custom-checkout-details span.required,
.woocommerce-checkout.page .custom-checkout-details .form-row .optional {
    display: none;
}
/* woocommerce-order-received, thankyou */

/* woocommerce */


@media (max-width: 1500px) {
    .header .header-nav {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .bvi-open span {
        display: none;
    }
}

@media (max-width: 1440px) {
    .woocommerce-checkout.page .custom-order-review, .woocommerce-checkout.page #customer_details,
    .woocommerce-checkout.page .custom-checkout-details {
        width: 100%;
    }
}

@media (min-width: 1320px) {
    .woocommerce .product-image {
        max-height: 213px;
    }
}

@media (max-width: 1320px) {
    .related-post__item {
        width: 33.3%;
    }
    .single-news .related-post__item:nth-child(4) {
        display: none;
    }    
    .woocommerce .product-image {
        height: calc((100vw - 160px - 96px) / 5);
    }
}

@media (max-width: 1240px) {
    .footer-top {
        flex-wrap: wrap;
    }
    .bvi-open span {
        display: inline-block;
    }
    .footer-nav ul.menu {
        max-width: none;
    }
}

@media (max-width: 1200px) {
    .contact {
        flex-direction: column;
    }
    .contact .contact-left, .contact .contact-right {
        width: 100%;
        min-width: auto;
    }
    .woocommerce .product-image {
        height: calc((100vw - 160px - 72px) / 4);
    }
}

@media (max-width: 1024px) {
    .woocommerce .product-image {
        height: calc((100vw - 160px - 48px) / 3);
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding: 24px;
    }
    .container {
        width: 100%;
        box-sizing: border-box;
    }
    .font-size-48 {
        font-size: 36px;
    }
    .font-size-36 {
        font-size: 28px;
    }
    .font-size-30 {
        font-size: 24px;
    }
    .font-size-24 {
        font-size: 20px;
    }
    .font-size-20 {
        font-size: 16px;
    }
    .font-size-18 {
        font-size: 14px;
    }
    .pt80 {
        padding-top: 24px;
    }
    .pb80 {
        padding-bottom: 24px;
    }
    .gap48 {
        gap: 24px;
    }
    .container-header {
        background-color: var(--color-white);
        border-bottom: 1px solid var(--color-frost);
    }
    header {
        padding-top: 16px;
        padding-bottom: 16px;
        height: auto;
    }
    .burger-menu__nav-wrap {
        top: 82px;
    }
    .header-silver {
        height: 754px;
    }
    .p48 {
        padding: 24px;
    }
    .cookie-wrap .cookie-text a {
        font-size: 14px;
    }
    .related-post__item {
        width: 50%;
    }
    .single-news .related-post__item:nth-child(3) {
        display: none;
    }
    .bvi-open {
        align-items: center;
    }
    .product-container {
        flex-direction: column;
    }
    .woocommerce-page div.product div.images {
        width: auto;
        margin-right: 0;
        margin-inline: auto;
    }
    .woocommerce div.product div.summary .gap20 {
        gap: 14px;
    }
    .tabs {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    #tab-1 {
        flex-direction: column;
    }
    .order-block {
        position: static;
        margin: 0;
    }
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button {
        font-size: 14px;
    }
    .related-products {
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .tab-pane-3__items {
        flex-direction: column;
        gap: 16px;
    }
    .tab-pane-3__title {
        min-width: auto;
    }
    .mb14 {
        margin-bottom: 0px;
    }
    .modal-item {
        width: calc(100% - 40px);
        padding: 20px;
        padding-bottom: 0;
    }
    .woocommerce-cart .woocommerce-cart-form {
        width: 100%;
        padding-right: 0;
    }
    body.woocommerce-cart .cart-comment-field, body.woocommerce-cart .input-text, .woocommerce-cart .coupon .input-text {
        font-size: 14px;
    }
    .woocommerce-checkout.page .custom-order-review .custom-product-details-wrap, .woocommerce-checkout.page .custom-checkout-wrapper .custom-additional-fields, 
    .woocommerce-checkout.page .custom-checkout-details .customer-type-selector,
    .woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .woocommerce-checkout.page .custom-checkout-details .customer-type-selector h3, .woocommerce-checkout.page .custom-checkout-details .custom-additional-fields-title, .woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper .form-row label,
    .woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row span {
        width: 100%;
    }
    .woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row {
        margin-top: 32px;
    }
    .woocommerce-checkout.page .custom-checkout-details .customer-type-selector .customer-type-options {
        flex-direction: column;
        gap: 8px;
    }
    .woocommerce-checkout.page .custom-checkout-details .customer-type-selector {
        gap: 8px;
    }
    .woocommerce-checkout.page .custom-checkout-details {
        gap: 32px;
    }
    .woocommerce-order-received .header-silver {
        height: auto;
    }
    .woocommerce-order-received .woocommerce .woocommerce-order.container {
        min-height: calc(100vh - 83px - 421px);
    }
    .woocommerce div.product {
        margin-top: 24px;
    }
}
@media (max-width: 768px) {
    .cookie-wrap {
        right: 24px;
        bottom: 12px;
        max-width: calc(100vw - 48px);
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    .cookie-wrap>div {
        align-items: center;
    }
    .header-link {
        display: none;
    }
    .footer-top {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .footer {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .form-wrap, .form-wrap__bottom>p {
        gap: 16px;
    }
    .woocommerce-order-received .woocommerce .woocommerce-order.container {
        min-height: calc(100vh - 83px - 457px);
        padding: 32px 0;
    }
}
@media (max-width: 640px) {
    .breadcrumbs {
        padding-top: 24px;
    }
    .related-post__item {
        width: 100%;
        padding: 16px;
    }
    .single-news .related-post__item:nth-child(2) {
        display: none;
    }
    .related-post__image {
        height: 200px;
    }
    .related-post__content, .related-post__content .gap24 {
        gap: 16px;
    }
    .related-posts {
        padding-top: 24px;
        padding-bottom: 48px;
    }
    .post-date {
        padding-top: 24px;
    }
    .news-thumb {
        padding-bottom: 24px;
    }
    .type-news {
        padding-bottom: 0;
    }
    .error-404,
    .privacy {
        flex-direction: column;
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .privacy .w50 {
        width: 100%;
    }
    .contact {
        padding-top: 24px;
        padding-bottom: 24px;
    }    
    .woocommerce .product-image {
        height: calc((100vw - 48px - 24px) / 2);
    }
    .order-block {
        padding: 16px;
        width: auto;
        min-width: auto;
    }
    .woocommerce .coupon {
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .woocommerce div.product div.images img {
        height: 80vw;
        min-width: auto;
    }
    .woocommerce-page div.product div.images {
        height: auto;
    }
    .tabs-header {
        flex-wrap: wrap;
        gap: 16px;
        background: transparent;
    }
    .form-wrap__bottom .wpcf7-acceptance label {
        font-size: 14px;
    }
    .woocommerce-checkout.page .custom-checkout-details,
    .woocommerce-checkout.page .custom-checkout-details .woocommerce-billing-fields__field-wrapper p.form-row .input-text {
        font-size: 14px;
    }
}
@media (max-width: 400px) {
    .header {
        gap: 24px;
    }
    .woocommerce form .custom-additional-fields .custom-file-upload {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
@media (max-width: 360px) {
    .header-logo__wrap {
        gap: 10px;
    }
    .bvi-open {
        gap: 16px;
    }
    .privacy-wrap .font-size-48 {
        font-size: 32px;
    }
    .woocommerce-cart .container {
        padding-inline: 12px;
    }
    .woocommerce-cart .woocommerce-cart-item {
        padding: 12px;
    }
    .woocommerce-cart .product-details {
        flex-direction: column;
    }
    .woocommerce-cart .product-details .w50 {
        width: 100%;
    }
}








.cart-btn {
    display: none;
}
.single-product .tabs {
    display: none;
}
.form-block__wrap {
    width: 100%;
    max-width: 781px;
    height: fit-content;
    padding: 24px;
    border: 1px solid var(--color-frost);
    border-radius: 8px;
}
.woocommerce .wpcf7-list-item {
    margin: 0;
}
.form-block__row input:not([type="checkbox"]) {
    width: 100%;
    padding: 13px 8px 13px 16px;
    border: 1px solid var(--color-frost);
    outline: none;
    border-radius: 8px;
}
.form-block__wrap .wpcf7 form .wpcf7-response-output {
    margin: 0;
    margin-top: 24px;
}
.form-block__wrap .form-block__row-hidden {
    display: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button {
    background-color: var(--color-sky) !important;
    color: var(--color-white) !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.02em;
    padding: 12px 24px;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    position: relative;
    overflow: hidden !important;
    z-index: 2;
    transition: all .3s ease;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button::after {
    content: '';
    background: linear-gradient(90.4deg, #65BCDD 13.06%, #13769B 77.53%) !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover::after {
    opacity: 1;
}
