/*
Theme Name: Natalochka
Author: Oleh Shashkevych
Author URI: https://shashkevych.com
Description: Custom WooCommerce theme for Natalochka.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: natalochka
*/

:root {
    --natalochka-color-white: #ffffff;
    --natalochka-color-black: #202020;
    --natalochka-color-text: #333333;
    --natalochka-color-dark: #242424;
    --natalochka-color-accent: #bea163;
    --natalochka-color-danger: #da3c3c;
    --natalochka-color-muted: #a5a5a5;
    --natalochka-color-subtle: var(--natalochka-color-white);
    --natalochka-color-border: var(--natalochka-color-muted);
    --natalochka-container-width: 1192px;
    --natalochka-container-padding: 16px;
    --natalochka-space-xs: 8px;
    --natalochka-space-sm: 16px;
    --natalochka-space-md: 24px;
    --natalochka-space-lg: 40px;
    --natalochka-space-xl: 64px;
    --natalochka-radius: 0;
    --natalochka-font-body: "Lato", sans-serif;
    --natalochka-font-heading: "Montserrat", sans-serif;
}

/* Base form-control reset */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    -webkit-appearance: none;
    font: inherit;
    appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--natalochka-color-white);
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
    font-size: 1rem;
    line-height: 1.5;
}

body,
button,
input,
select,
textarea {
    font-weight: 400;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--natalochka-color-accent);
}

button,
input,
select,
textarea {
    max-width: 100%;
    font: inherit;
}

a,
button {
    transition: all 0.3s ease;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--natalochka-color-text);
    outline-offset: 3px;
}

.natalochka-container {
    width: min(
        100%,
        calc(
            var(--natalochka-container-width) +
                (var(--natalochka-container-padding) * 2)
        )
    );
    padding-right: var(--natalochka-container-padding);
    padding-left: var(--natalochka-container-padding);
    margin-right: auto;
    margin-left: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    top: 8px;
    left: 8px;
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: #ffffff;
    background: var(--natalochka-color-dark);
    font-size: 0.875rem;
    white-space: normal;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

/* Hide WooCommerce notice groups globally, including checkout updates. */
.woocommerce-NoticeGroup {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--natalochka-color-white);
    transition: all 0.3s ease;
}

.site-header--scrolled {
    box-shadow: 0px 0px 3px 0px #00000026;
}

.site-header--dropdown-open {
    box-shadow: none;
}

.site-header:has(.site-navigation__menu > .menu-item-has-children:hover),
.site-header:has(
    .site-navigation__menu > .menu-item-has-children:focus-within
) {
    box-shadow: none;
}

.site-header__menu-toggle {
    display: none;
}
.site-header__menu-label {
    display: none;
}

.homepage {
    overflow: hidden;
}
.homepage-hero {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 30px;
    padding-top: 24px;
    padding-bottom: 30px;
}
.homepage-categories {
    border: 0;
}
.homepage-categories h2 {
    margin: 0;
    padding: 20px;
    color: var(--natalochka-color-white);
    background: var(--natalochka-color-black);
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    text-transform: uppercase;
}
.homepage-categories .category-link {
    min-height: 44px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-bottom: 1px solid #00000013;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
}
.homepage-categories .category-link:hover {
    color: #000000;
}
.homepage-categories .category-link__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}
.homepage-categories .category-link span {
    white-space: nowrap;
}
.category-link {
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 12px;
    padding: 9px 22px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.8rem;
}
.category-link__icon {
    width: 16px;
    color: #111;
    font-size: 1rem;
    text-align: center;
}
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--hero-image) center/cover no-repeat;
}
.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}
.hero-slider {
    position: relative;
    width: 100%;
    min-width: 0;
    aspect-ratio: 887 / 562;
    overflow: hidden;
}
.hero-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.hero-slider .swiper-slide {
    width: 100%;
    min-width: 0;
    flex: 0 0 100%;
}
.hero-slide__copy {
    position: absolute;
    top: 50%;
    right: 40px;
    left: 40px;
    max-width: 400px;
    transform: translateY(-50%);
}
.hero-slide__copy p {
    margin: 0 0 14px;
    color: var(--natalochka-color-black);
    font-family: var(--natalochka-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
}
.hero-slide__copy h1 {
    max-width: 400px;
    margin: 0 0 32px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
}
.hero-slide .button {
    display: inline-block;
    padding: 13px 20px;
    border-radius: 35px;
    color: var(--natalochka-color-white);
    background: var(--natalochka-color-black);
    font-family: var(--natalochka-font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 15.6px;
    text-transform: uppercase;
}
.hero-slide .button:hover,
.hero-slide .button:focus-visible {
    color: var(--natalochka-color-black);
    background: var(--natalochka-color-accent);
}
.slider-dots {
    position: absolute !important;
    bottom: 17px !important;
    left: 50% !important;
    display: flex;
    gap: 10px;
    justify-content: center;
    transform: translateX(-50%) !important;
}
.slider-dots .swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0;
    border: 2px solid #ffffff80;
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    padding: 0 !important;
    margin: 0 !important;
}
.slider-dots .swiper-pagination-bullet-active {
    border-color: var(--natalochka-color-white);
    background: var(--natalochka-color-white);
}
.homepage-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}
.promo-card {
    position: relative;
    display: flex;
    height: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow: hidden;
    color: var(--natalochka-color-white);
    background: var(--promo-image) center/cover no-repeat;
    text-align: left;
}
.promo-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: #00000066;
    content: "";
}
.promo-card > * {
    position: relative;
    z-index: 1;
}
.promo-card__text {
    margin-bottom: 8px;
    color: var(--natalochka-color-white);
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    opacity: 0.78;
    text-align: right;
}
.promo-card strong {
    margin-bottom: 24px;
    color: var(--natalochka-color-white);
    font-family: var(--natalochka-font-heading);
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
}
.promo-card__link {
    display: inline-block;
    border-bottom: 2px solid var(--natalochka-color-accent);
    color: var(--natalochka-color-white);
    font-family: var(--natalochka-font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 15.6px;
    text-transform: uppercase;
}
.promo-card:nth-child(2) {
    align-items: center;
    text-align: center;
}
.promo-card:nth-child(2) .promo-card__text {
    text-align: center;
}
.promo-card:hover .promo-card__link,
.promo-card:focus-visible .promo-card__link {
    color: var(--natalochka-color-accent);
}
.homepage-category-section {
    padding-top: 80px;
    padding-bottom: 110px;
}
.homepage-category-section .section-heading {
    margin: 0 0 28px;
}
.homepage-category-section .section-heading h2 {
    margin: 0 0 8px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
}
.homepage-category-section .section-heading p {
    margin: 0;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    margin-inline: auto;
}
.homepage-products-section {
    padding-top: 0;
    padding-bottom: 110px;
}
.homepage-products-section .section-heading {
    margin: 0 0 28px;
}
.homepage-products-section .section-heading h2 {
    margin: 0 0 8px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
}
.homepage-products-section .section-heading p {
    margin: 0;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    margin-inline: auto;
}
.homepage-popular-section {
    padding-top: 0;
    padding-bottom: 110px;
}
.homepage-popular-section .section-heading {
    margin: 0 0 28px;
}
.homepage-popular-section .section-heading h2 {
    margin: 0 0 8px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
}
.homepage-popular-section .section-heading p {
    margin: 0;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    margin-inline: auto;
}
.homepage-popular-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.homepage-about-section {
    display: grid;
    grid-template-columns: 55fr 58fr;
    gap: 60px;
    padding-top: 0;
    padding-bottom: 110px;
}
.homepage-about__media {
    min-width: 0;
    overflow: hidden;
}
.homepage-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepage-about__content {
    align-self: center;
    padding: 74px 0;
    text-align: left;
}
.homepage-about__content h2 {
    margin: 0 0 28px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.homepage-about__text {
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.homepage-about__text p {
    margin: 0;
}
.homepage-testimonials-section {
    padding-top: 0;
    padding-bottom: 110px;
}
.homepage-testimonials-section .section-heading {
    margin: 0 0 28px;
}
.homepage-testimonials-section .section-heading h2 {
    margin: 0 0 8px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
}
.homepage-testimonials-section .section-heading p {
    margin: 0;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    margin-inline: auto;
}
.homepage-testimonials-slider {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}
.homepage-testimonials-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.homepage-testimonials-slider .swiper-slide {
    height: auto;
    min-width: 0;
}
.testimonial-card {
    display: flex;
    height: 100%;
    min-height: var(--testimonial-card-height, 0px);
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border: 1px solid #0000001b;
    text-align: center;
}
.testimonial-card__image {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    object-fit: cover;
    margin-bottom: 24px;
}
.testimonial-card__text {
    margin-bottom: 16px;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}
.testimonial-card__text p {
    margin: 0;
}
.testimonial-card__name {
    display: block;
    margin-top: auto;
    color: #171717;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
.testimonial-slider-pagination {
    position: static !important;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    inset: auto !important;
    transform: none !important;
}
.testimonial-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border: 2px solid #20202080;
    border-radius: 50%;
    background: transparent;
    opacity: 1;
}
.testimonial-slider-pagination .swiper-pagination-bullet-active {
    border-color: #202020;
    background: #202020;
}
.homepage-testimonials-slider.is-compact + .testimonial-slider-pagination {
    display: none;
}
.homepage-faq-section {
    padding-top: 0;
    padding-bottom: 110px;
}
.homepage-faq-section + .site-footer,
.homepage + .site-footer {
    margin-top: 0;
}
.homepage-faq-section .section-heading {
    margin: 0 0 28px;
}
.homepage-faq-section .section-heading h2 {
    margin: 0;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
}
.homepage-faq {
    width: 100%;
}
.homepage-faq .faq-item {
    border-bottom: 1px solid #0000001b;
}
.homepage-faq .faq-item__question {
    margin: 0;
}
.homepage-faq .faq-item__question button {
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    border: 0;
    color: #242424;
    background: transparent;
    font-family: "Poppins", var(--natalochka-font-body);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
}
.homepage-faq .faq-item__question button:hover,
.homepage-faq .faq-item__question button:focus-visible {
    color: #000000;
}
.homepage-faq .faq-item__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    color: #242424;
}
.homepage-faq .faq-item__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}
.homepage-faq .faq-item.is-open .faq-item__icon svg {
    transform: rotate(180deg);
}
.homepage-faq .faq-item__answer {
    max-width: 900px;
    padding: 0 0 20px;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.homepage-faq .faq-item__answer p {
    margin: 0;
}
.homepage-products-slider {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}
.homepage-products-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.homepage-products-slider .swiper-slide {
    height: auto;
    min-width: 0;
}
.product-slider-pagination {
    position: static !important;
    display: flex;
    width: 100%;
    min-height: 10px;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    inset: auto !important;
    transform: none !important;
}
.product-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0;
    border: 2px solid #20202080;
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    padding: 0 !important;
    margin: 0 !important;
}
.product-slider-pagination .swiper-pagination-bullet-active {
    border-color: #202020;
    background: #202020;
}
.product-slider-pagination.swiper-pagination-lock {
    display: flex;
}
.homepage-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
.homepage-category-card {
    position: relative;
    display: flex;
    height: 378px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--natalochka-color-white);
    background: var(--category-image) center top/cover no-repeat;
    text-align: center;
}
.homepage-category-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: #00000033;
    content: "";
}
.homepage-category-card span {
    position: relative;
    z-index: 1;
    color: var(--natalochka-color-white);
    font-family: var(--natalochka-font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
}
.homepage-category-card:hover span,
.homepage-category-card:focus-visible span {
    color: var(--natalochka-color-accent);
}
.homepage-section {
    margin-top: 100px;
}
.section-heading {
    margin-bottom: 28px;
    text-align: center;
}
.section-heading h2 {
    margin: 0 0 4px;
    font-size: 1.8rem;
    line-height: 1.15;
}
.section-heading p {
    max-width: 560px;
    margin: 0 auto;
    color: #999;
    font-size: 0.75rem;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.category-grid a {
    position: relative;
    overflow: hidden;
}
.category-grid img {
    width: 100%;
    aspect-ratio: 1.49;
    object-fit: cover;
}
.category-grid span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}
.product-grid {
    display: grid;
    gap: 16px;
}
.product-grid--featured {
    grid-template-columns: repeat(5, 1fr);
}
.product-grid--best {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 34px;
}
.product-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-width: 0;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
}
.product-card__image {
    width: 100%;
    aspect-ratio: 283 / 323;
    overflow: hidden;
    margin-bottom: 9px;
    background: #f6f6f6;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card__name {
    display: block;
    min-height: var(--product-card-name-height, 0px);
    margin-bottom: 8px;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
}
.product-card__category {
    display: block;
    min-height: 18.62px;
    margin-bottom: 8px;
    color: #a5a5a5;
    font-size: 13.3px;
    font-weight: 400;
    line-height: 18.62px;
}
.product-card__sizes {
    display: flex;
    min-height: 14px;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #242424;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
}
.product-card__sizes > span {
    display: block;
}
.product-card__price {
    display: block;
    margin-top: auto;
    color: #da3c3c;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
}
.product-card__price .woocommerce-Price-amount {
    color: inherit;
    font: inherit;
}
.product-card:hover .product-card__name,
.product-card:focus-visible .product-card__name {
    color: #000000;
}
.product-card:hover .product-card__image img,
.product-card:focus-visible .product-card__image img {
    transform: scale(1.03);
}
.product-card__price del,
.product-card__price del .woocommerce-Price-amount {
    color: #777777;
    font-weight: 300;
    text-decoration: line-through;
}

.product-card__price ins {
    text-decoration: none;
}
.homepage-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
    margin-top: 118px;
}
.homepage-editorial img {
    width: 100%;
}
.homepage-editorial h2 {
    margin: 0 0 18px;
    font-size: 1.55rem;
    line-height: 1.12;
}
.homepage-editorial p {
    color: #777;
    font-size: 0.8rem;
    line-height: 1.6;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.testimonial-grid article {
    padding: 28px 30px;
    border: 1px solid #ededed;
    text-align: center;
}
.testimonial-grid img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0 auto 17px;
}
.testimonial-grid p {
    min-height: 48px;
    color: #777;
    font-size: 0.72rem;
}
.testimonial-grid strong {
    font-size: 0.75rem;
}
.faq {
    max-width: 960px;
}
.faq .section-heading {
    margin-bottom: 25px;
}
.faq-item {
    border-bottom: 1px solid #dadada;
}
.faq-item button {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}
.faq-item button:hover,
.faq-item button:focus-visible {
    color: #000000;
}
.faq-item button span {
    transition: transform 160ms ease;
}
.faq-item p {
    display: none;
    margin: 0 0 18px;
    color: #777;
    font-size: 0.75rem;
}
.faq-item.is-open p {
    display: block;
}
.mobile-menu {
    display: none;
}

/* Catalog */
.catalog-page__inner {
    padding-top: 24px;
}
.catalog-page__title {
    margin: 0 0 40px;
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 50.4px;
    text-align: left;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 30px;
    padding-bottom: 110px;
}
.catalog-filters {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.catalog-filters > .catalog-filter-group:nth-of-type(1) {
    order: 1;
}

.catalog-filters > .catalog-filter-group:nth-of-type(2) {
    order: 2;
}

.catalog-filters > .catalog-filter-group--price {
    order: 3;
}

.catalog-filters > .catalog-filter-group--color {
    order: 4;
}

.catalog-filters > .catalog-filter-group--size {
    order: 5;
}

@media (min-width: 992px) {
    .catalog-filters {
        position: sticky;
        top: 57px;
        align-self: start;
        max-height: calc(100vh - 57px);
        overflow-y: auto;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }
}

.catalog-filter-group {
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid #0000001b;
}
.catalog-filter-group h2 {
    margin: 0 0 12px;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
}
.catalog-filter-group ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.catalog-filter-group li {
    margin: 0;
}
.catalog-filter-group li a {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
}
.catalog-filter-group li a:hover,
.catalog-filter-group li a.is-selected {
    color: #333333;
}
.catalog-apply:hover,
.catalog-apply:focus-visible,
.catalog-reset:hover,
.catalog-reset:focus-visible {
    color: #000000;
}
.catalog-filter-group small {
    display: inline-flex;
    min-width: 30px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 1px solid #0000001b;
    border-radius: 10px;
    color: #767676;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}
.catalog-filter-group li a.is-selected small {
    border-color: #000000;
    color: var(--natalochka-color-white);
    background: #000000;
}
.catalog-filter-group--size li a {
    color: #242424;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}
.catalog-filter-color {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.catalog-filter-color__swatch {
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
}
.catalog-filter-group--price {
    position: relative;
    padding-bottom: 30px;
}
.catalog-price-range {
    position: relative;
    height: 15px;
    margin: 28px 0 20px;
}
.catalog-price-range__track {
    position: absolute;
    top: 6px;
    right: 0;
    left: 0;
    height: 2px;
    background: #202020;
}
.catalog-price-range input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    margin: 0;
    appearance: none;
    pointer-events: none;
    background: transparent;
}
.catalog-price-range input[type="range"]::-webkit-slider-runnable-track {
    height: 2px;
    background: transparent;
}
.catalog-price-range input[type="range"]::-webkit-slider-thumb {
    width: 4px;
    height: 15px;
    margin-top: -6px;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: #202020;
    cursor: pointer;
    pointer-events: auto;
}
.catalog-price-range input[type="range"]::-moz-range-track {
    height: 2px;
    background: transparent;
}
.catalog-price-range input[type="range"]::-moz-range-thumb {
    width: 4px;
    height: 15px;
    border: 0;
    border-radius: 0;
    background: #202020;
    cursor: pointer;
    pointer-events: auto;
}
.catalog-filter-group--price p {
    margin: 0;
    color: #767676;
    font-size: 14px;
    line-height: 19.6px;
}
.catalog-filter-group--price strong {
    color: #242424;
    font-weight: 600;
}
.catalog-price-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}
.catalog-price-form .catalog-price-range {
    grid-column: 1 / -1;
    width: 100%;
}
.catalog-apply {
    min-height: 36px;
    padding: 5px 14px;
    border: 0;
    color: var(--natalochka-color-text);
    background: #f7f7f7;
    font-family: var(--natalochka-font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 14.4px;
    text-transform: uppercase;
    cursor: pointer;
}
.catalog-reset {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.68rem;
}
.catalog-results {
    position: relative;
    min-width: 0;
}

.catalog-results.is-loading::after {
    position: absolute;
    z-index: 5;
    content: "";
    inset: 0;
    background: rgba(255, 255, 255, 0.68);
    pointer-events: all;
}

.catalog-results.is-loading::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 6;
    width: 32px;
    height: 32px;
    border: 2px solid #0000001b;
    border-top-color: #202020;
    border-radius: 50%;
    content: "";
    animation: natalochka-catalog-loader 0.7s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes natalochka-catalog-loader {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.catalog-results__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 39px;
    margin-bottom: 12px;
}
.catalog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    line-height: 19.6px;
}
.catalog-breadcrumbs strong {
    color: var(--natalochka-color-text);
    font-weight: 400;
}
.catalog-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 14px;
}
.catalog-filter-toggle {
    display: none;
}
.catalog-ordering {
    position: relative;
    min-width: 185px;
}
.catalog-ordering__toggle {
    display: flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    color: #6a6a6a;
    background: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1;
    text-align: left;
    cursor: pointer;
}
.catalog-ordering__toggle svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.catalog-ordering__toggle:hover,
.catalog-ordering__toggle:focus-visible {
    color: #000000;
}
.catalog-ordering__options {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 4;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 8px 0;
    border: 1px solid #dadada;
    background: #ffffff;
    box-shadow: 0 3px 8px #0000001b;
}
.catalog-ordering__options[hidden] {
    display: none;
}
.catalog-ordering__options button {
    padding: 8px 12px;
    border: 0;
    color: #6a6a6a;
    background: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1;
    text-align: left;
    cursor: pointer;
}
.catalog-ordering__options button:hover,
.catalog-ordering__options button:focus-visible,
.catalog-ordering__options button.is-selected {
    color: #000000;
}
.catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 12px;
}
.catalog-active-filters.is-empty {
    display: none;
}
.catalog-active-filters a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1b1b1b;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    line-height: 1;
}
.catalog-active-filters a:hover,
.catalog-active-filters a:focus-visible {
    color: #000000;
}
.catalog-active-filters svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}
.catalog-active-filters__reset {
    font-weight: 400;
}
.catalog-active-filters__reset span {
    white-space: nowrap;
}
.catalog-active-filters__reset:hover,
.catalog-active-filters__reset:focus-visible {
    color: #000000;
}
.catalog-mobile-toolbar {
    display: none;
}
.catalog-ordering-desktop {
    display: contents;
}
.woocommerce .catalog-ordering-desktop .woocommerce-ordering,
.catalog-mobile-toolbar .woocommerce-ordering {
    float: none;
    margin: 0;
}
.catalog-ordering-desktop select,
.catalog-mobile-toolbar select {
    display: none;
}
.catalog-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.catalog-products .product-card {
    height: 100%;
}
.catalog-load-more-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.catalog-load-more {
    border: 0;
}
.catalog-filters__mobile-head,
.catalog-filter-backdrop {
    display: none;
}
.catalog-empty {
    color: #777;
}
.woocommerce-pagination {
    margin-top: 34px;
}
.woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    padding: 0;
    list-style: none;
}
.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    font-size: 0.7rem;
}
.woocommerce-pagination a:hover,
.woocommerce-pagination a:focus-visible {
    color: #000000;
    background: #f7f7f7;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    height: 57px;
    min-height: 57px;
    align-items: center;
    gap: 28px;
}

.site-branding {
    flex: 0 0 auto;
    justify-self: start;
}

.site-branding .custom-logo-link,
.site-branding > a {
    display: block;
}

.site-branding .custom-logo {
    width: auto;
    max-width: 220px;
    max-height: 42px;
}

.site-branding > a:not(.custom-logo-link) {
    font-family: var(--natalochka-font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.site-branding > a:not(.custom-logo-link):hover,
.site-branding > a:not(.custom-logo-link):focus-visible {
    color: #000000;
}
.site-branding .custom-logo-link:hover,
.site-branding .custom-logo-link:focus-visible {
    opacity: 0.75;
}

.site-navigation {
    justify-self: center;
}

.site-navigation__menu,
.site-navigation__menu ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-navigation__menu {
    gap: 28px;
}

.site-navigation__menu li {
    position: relative;
}

.site-navigation__menu a {
    display: block;
    padding: 21px 0 22px;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.site-navigation__menu > li > a {
    display: flex;
    height: 57px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.site-navigation__menu > li > a:hover,
.site-navigation__menu > li > a:focus-visible {
    color: #000000;
}

.site-navigation__menu > .current-menu-item > a,
.site-navigation__menu > .current-menu-ancestor > a {
    color: #000000;
}

.menu-item__arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.site-navigation__menu .menu-item-has-children:hover > a .menu-item__arrow,
.site-navigation__menu
    .menu-item-has-children:focus-within
    > a
    .menu-item__arrow {
    transform: rotate(180deg);
}

.site-navigation__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    z-index: 20;
    display: flex;
    min-width: max-content;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    visibility: hidden;
    border-radius: 0;
    background: var(--natalochka-color-white);
    box-shadow: 0px 0px 3px 0px #00000026;
    opacity: 0;
    transition: all 0.3s ease;
}

.site-navigation__menu .sub-menu a {
    padding: 0;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}

.site-navigation__menu .sub-menu a:hover,
.site-navigation__menu .sub-menu a:focus-visible {
    color: #000000;
}

.site-navigation__menu .sub-menu li.current-menu-item a {
    font-weight: 600;
}

.site-navigation__menu li:hover > .sub-menu,
.site-navigation__menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.site-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 24px;
    justify-self: end;
}

.site-header__action {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--natalochka-color-text);
    cursor: pointer;
}

.site-header__action svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}
.site-header__action:hover,
.site-header__action:focus-visible,
.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
    color: #000000;
}

.site-header__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-flex;
    width: 14px;
    height: 14px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--natalochka-color-white);
    background: #0d0d0d;
    font-family: var(--natalochka-font-body);
    font-size: 8px;
    line-height: 8px;
}

.header-dropdown {
    position: absolute;
    top: 100%;
    z-index: 40;
    background: var(--natalochka-color-white);
    box-shadow: 0px 0px 3px 0px #00000026;
}

.header-search-dropdown {
    top: 100%;
    right: max(
        var(--natalochka-container-padding),
        calc(
            (
                    100vw -
                        (
                            var(--natalochka-container-width) +
                                (var(--natalochka-container-padding) * 2)
                        )
                ) /
                2 + var(--natalochka-container-padding)
        )
    );
    width: min(330px, calc(100vw - 32px));
    margin-top: 0;
    padding: 20px;
}

.header-search {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--natalochka-color-muted);
}

.header-search input,
.mobile-menu__search input {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
    font-size: 14px;
}

.header-search input[type="search"]::-webkit-search-cancel-button,
.mobile-menu__search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.header-search input[type="search"]::-ms-clear,
.mobile-menu__search input[type="search"]::-ms-clear {
    display: none;
}

.header-search input::placeholder,
.mobile-menu__search input::placeholder {
    color: var(--natalochka-color-text);
    opacity: 0.7;
}

.header-search button,
.mobile-menu__search button {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--natalochka-color-text);
    cursor: pointer;
}

.header-search button svg,
.mobile-menu__search button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.header-search__clear svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.25;
}

.header-search__clear[hidden] {
    display: none;
}

.header-search button:hover,
.header-search button:focus-visible,
.mobile-menu__search button:hover,
.mobile-menu__search button:focus-visible {
    color: #000000;
}

.header-search__results {
    display: flex;
    width: 100%;
    flex: 0 0 100%;
    max-height: 360px;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.header-search__result {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-top: 12px;
    color: var(--natalochka-color-text);
}
.header-search__result:hover,
.header-search__result:focus-visible {
    color: #000000;
}

.header-search__result img {
    width: 48px;
    height: 60px;
    object-fit: cover;
}

.header-search__result span {
    font-family: var(--natalochka-font-body);
    font-size: 14px;
}

.header-search__result strong {
    font-family: var(--natalochka-font-heading);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.header-search__result strong del {
    text-decoration: line-through;
}

.header-search__result strong ins {
    text-decoration: none;
}

.header-search__empty {
    margin: 16px 0 0;
    color: var(--natalochka-color-muted);
    font-family: var(--natalochka-font-body);
    font-size: 14px;
}

.cart-dropdown {
    box-sizing: border-box;
}

.header-cart-dropdown {
    top: 100%;
    right: max(
        var(--natalochka-container-padding),
        calc(
            (
                    100vw -
                        (
                            var(--natalochka-container-width) +
                                (var(--natalochka-container-padding) * 2)
                        )
                ) /
                2 + var(--natalochka-container-padding)
        )
    );
    width: min(330px, calc(100vw - 32px));
    margin-top: 0;
    padding: 20px;
}

.cart-dropdown__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-dropdown__item {
    display: flex;
    position: relative;
    min-width: 0;
    padding-right: 24px;
    gap: 12px;
}

.cart-dropdown__image,
.cart-dropdown__image img {
    width: 68px;
    height: 92px;
    flex: 0 0 68px;
}

.cart-dropdown__image img {
    object-fit: cover;
}

.cart-dropdown__item-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.cart-dropdown__remove {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: #777777;
    background: transparent;
    cursor: pointer;
}

.cart-dropdown__remove:hover,
.cart-dropdown__remove:focus-visible {
    color: #000000;
}

.cart-dropdown__remove svg {
    display: block;
    width: 20px;
    height: 20px;
}

.cart-dropdown__product-name {
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}
.cart-dropdown__product-name:hover,
.cart-dropdown__product-name:focus-visible {
    color: #000000;
}

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

.quantity-control.quantity-control--dropdown {
    display: flex;
    width: 80px;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: #f8f8f8;
}

.quantity-control--dropdown .quantity-control__button {
    width: 25px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #777777;
    font-family: "SatoshiVariable", "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.6px;
    cursor: pointer;
}

.quantity-control--dropdown .quantity-control__button:disabled {
    opacity: 1;
    cursor: default;
}
.quantity-control--dropdown .quantity-control__button:not(:disabled):hover,
.quantity-control--dropdown
    .quantity-control__button:not(:disabled):focus-visible {
    color: #000000;
}

.quantity-control__value {
    width: 30px;
    color: var(--natalochka-color-text);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
}

.cart-dropdown__item-price {
    color: #bbbbbb;
    font-family: var(--natalochka-font-body);
    font-size: 12.6px;
    font-weight: 400;
    line-height: 17.64px;
    white-space: nowrap;
}

.cart-dropdown__item-price .woocommerce-Price-amount {
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.cart-dropdown__summary {
    margin-top: 20px;
    border-top: 1px solid #0000001b;
}

.cart-dropdown__total {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-dropdown__total strong {
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.cart-dropdown__free-shipping {
    padding: 0;
    margin: 20px 0;
    background: transparent;
}

.cart-dropdown__free-shipping p {
    margin: 0 0 12px;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.cart-dropdown__free-shipping p .woocommerce-Price-amount {
    font-weight: 700;
}

.cart-dropdown__free-shipping .cart-free-shipping__track {
    height: 10px;
    background: #0000000f;
}

.cart-dropdown__free-shipping .cart-free-shipping__track span {
    display: block;
    height: 100%;
    min-width: 0;
    background-color: #282828;
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%
    );
    background-repeat: repeat;
    background-size: 25px 10px;
}

.cart-dropdown__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.cart-dropdown__button {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.cart-dropdown__button--light {
    color: #282828;
    background: #f7f7f7;
}

.cart-dropdown__button--dark {
    color: var(--natalochka-color-white);
    background: #282828;
}

.cart-dropdown__button--light:hover,
.cart-dropdown__button--light:focus-visible {
    color: var(--natalochka-color-accent);
}

.cart-dropdown__button--dark:hover,
.cart-dropdown__button--dark:focus-visible {
    color: var(--natalochka-color-accent);
}

.cart-dropdown__empty p {
    margin: 0 0 20px;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
    font-size: 16px;
}

.mobile-menu-layer {
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #1b1b1b33;
    backdrop-filter: blur(2px);
    cursor: default;
}

.mobile-menu__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--natalochka-color-white);
    font-family: var(--natalochka-font-body);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}
.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
    color: var(--natalochka-color-accent);
}

.mobile-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 300px;
    max-width: calc(100vw - 48px);
    flex-direction: column;
    padding: 0;
    background: var(--natalochka-color-white);
    box-shadow: 0px 0px 3px 0px #00000026;
}

.mobile-menu > .mobile-menu__search,
.mobile-menu > .mobile-menu__tabs,
.mobile-menu > .mobile-menu__content {
    padding-right: 16px;
    padding-left: 16px;
}

.mobile-menu__search {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    height: 64px;
    flex: 0 0 64px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #dadada;
}

.mobile-menu__search .header-search__results {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    z-index: 3;
    width: auto;
    padding: 12px 16px;
    background: var(--natalochka-color-white);
    box-shadow: 0 4px 12px #0000001f;
}

.mobile-menu__search .header-search__results:empty {
    display: none;
}

.mobile-menu__tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 16px;
}

.mobile-menu__tabs[hidden] {
    display: none;
}

.mobile-menu__tabs button[data-menu-tab="catalog"] {
    display: none;
}

.mobile-menu__tabs button {
    height: 40px;
    padding: 0 8px;
    border: 0;
    border-bottom: 1px solid #dadada;
    background: transparent;
    color: #6a6a6a;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: left;
    cursor: pointer;
}

.mobile-menu__tabs button.is-active {
    border-bottom: 2px solid #242424;
    color: #000000;
}
.mobile-menu__tabs button:not(.is-active):hover,
.mobile-menu__tabs button:not(.is-active):focus-visible {
    color: #000000;
}

.mobile-menu__content {
    position: relative;
    min-height: 0;
    flex: 1;
    overflow: hidden;
}

.mobile-menu__panel {
    display: none;
    padding-top: 16px;
    padding-inline: 16px;
}

.mobile-menu__panel.is-active {
    display: block;
}

.mobile-menu__panel[data-menu-panel="catalog"] {
    display: none;
}

.mobile-menu__panel[data-menu-panel="menu"],
.mobile-menu__age-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.mobile-menu__panel[data-menu-panel="menu"] {
    transform: translateX(0);
}

.mobile-menu__content.is-age-open .mobile-menu__panel[data-menu-panel="menu"] {
    transform: translateX(-100%);
}

.mobile-menu__age-panel {
    display: block;
    transform: translateX(100%);
}

.mobile-menu__age-back {
    display: none;
    width: calc(100% - 32px);
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    gap: 10px;
    margin-inline: 16px;
    margin-top: 16px;
    padding: 0 8px;
    border-bottom: 2px solid #242424;
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: left;
    cursor: pointer;
}

.mobile-menu__age-back:not([hidden]) {
    display: flex;
}

.mobile-menu__age-panel[hidden] {
    display: none;
}

.mobile-menu__content.is-age-open .mobile-menu__age-panel {
    transform: translateX(0);
}

.mobile-menu__age-back svg {
    display: block;
    flex: 0 0 20px;
}

.mobile-menu__age-content {
    padding-top: 16px;
    padding-inline: 16px;
}

.mobile-menu .mobile-menu__age-categories {
    padding-bottom: 20px;
    padding-inline: 18px;
    margin-bottom: 0;
}

.mobile-menu .mobile-menu__age-categories h2 {
    margin-bottom: 0;
    line-height: 44px;
    font-size: 14px;
}

.mobile-menu .mobile-menu__age-categories li a {
    min-height: 0;
    padding: 6px 0;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.mobile-menu__age-categories li a:hover {
    color: #000000;
}

.mobile-menu__age-message {
    margin: 0;
    color: var(--natalochka-color-muted);
    font-size: 14px;
}

.mobile-menu .category-link,
.mobile-menu__menu > li > a {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
}

.mobile-menu .category-link:hover,
.mobile-menu__menu > li > a:hover {
    color: #000000;
}

.mobile-menu__menu > .current-menu-item > a,
.mobile-menu__menu > .current-menu-ancestor > a {
    color: #000000;
}

.mobile-menu .category-link__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}

.mobile-menu .category-link span {
    white-space: nowrap;
}

.mobile-menu__menu,
.mobile-menu__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu__menu > li {
    position: relative;
    border-bottom: 1px solid #00000013;
}

.mobile-menu__menu > li > a {
    justify-content: space-between;
    text-transform: uppercase;
}

.mobile-menu__menu > li > a .menu-item__arrow {
    margin-left: auto;
}

.mobile-menu__menu > li.is-open > a {
    /*color: #000000;*/
}

.mobile-menu__menu > li.is-open > a .menu-item__arrow {
    transform: rotate(180deg);
}

.mobile-menu__menu .sub-menu {
    display: none;
    padding: 0 0 0 18px;
}

.mobile-menu__menu > li.is-open > .sub-menu {
    display: block;
}

.mobile-menu__menu .sub-menu a {
    display: block;
    padding: 0;
    color: var(--natalochka-color-text);
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    margin-bottom: 12px;
}

.mobile-menu__menu .sub-menu a:hover {
    color: #000000;
}

.mobile-menu-open {
    overflow: hidden;
}

.entry-content {
    padding-top: var(--natalochka-space-xl);
    padding-bottom: var(--natalochka-space-xl);
}

.entry-title {
    margin: 0 0 var(--natalochka-space-md);
    font-family: var(--natalochka-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.basic-page__article {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.basic-page__content {
    color: var(--natalochka-color-text);
    font-size: 1rem;
    line-height: 1.6;
}

.basic-page__content > :first-child {
    margin-top: 0;
}

.basic-page__content > :last-child {
    margin-bottom: 0;
}

.basic-page__content h2,
.basic-page__content h3,
.basic-page__content h4,
.basic-page__content h5,
.basic-page__content h6 {
    margin: var(--natalochka-space-lg) 0 var(--natalochka-space-sm);
    color: var(--natalochka-color-dark);
    font-family: var(--natalochka-font-heading);
    line-height: 1.2;
}

.basic-page__content h2 {
    font-size: 1.75rem;
}

.basic-page__content h3 {
    font-size: 1.375rem;
}

.basic-page__content h4,
.basic-page__content h5,
.basic-page__content h6 {
    font-size: 1.125rem;
}

.basic-page__content p,
.basic-page__content ul,
.basic-page__content ol,
.basic-page__content blockquote,
.basic-page__content figure,
.basic-page__content table {
    margin-top: 0;
    margin-bottom: var(--natalochka-space-md);
}

.basic-page__content ul,
.basic-page__content ol {
    padding-left: 1.5rem;
}

.basic-page__content a {
    color: var(--natalochka-color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.basic-page__content blockquote {
    padding-left: var(--natalochka-space-md);
    border-left: 2px solid var(--natalochka-color-accent);
    color: #767676;
}

.basic-page__content img {
    margin-right: auto;
    margin-left: auto;
}

.page-links {
    margin-top: var(--natalochka-space-lg);
    font-weight: 600;
}

/* Contacts */
.contacts-page__inner {
    padding-top: 24px;
    padding-bottom: 110px;
}

.contacts-page + .site-footer {
    margin-top: 0;
}

.contacts-page + .site-footer .site-footer__top {
    padding-top: 70px;
}

.contacts-page__intro {
    max-width: 500px;
    padding-top: 0;
}

.contacts-page__intro h1 {
    margin: 0 0 8px;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.contacts-page__description {
    max-width: 500px;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    line-height: 1;
}

.contacts-page__description p {
    margin: 0;
}

.contacts-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
    margin-top: 48px;
}

.contact-card {
    min-width: 0;
}

.contact-card h2 {
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #28282830;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.contact-card__value {
    padding-top: 20px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.contact-card__value p {
    margin: 0 0 16px;
    line-height: 20px;
}

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

.contact-card__value a {
    display: block;
}

.contact-card__value a:hover {
    color: #000000;
}

.site-footer {
    flex: 0 0 auto;
    margin-top: 0;
    color: var(--natalochka-color-white);
    background: var(--natalochka-color-black);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 44px;
}

.site-footer__branding {
    min-width: 0;
    container-type: inline-size;
}

.site-footer__wordmark {
    margin: 0;
    font-family: var(--natalochka-font-heading);
    font-size: clamp(64px, 16.5cqw, 150.83px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}

.site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 60px;
    min-width: 360px;
    align-self: center;
}

.site-footer__menu,
.site-footer__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__navigation > .site-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__menu a {
    display: block;
    padding: 0;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--natalochka-space-md);
    padding-top: 24px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer__bottom > div {
    font-weight: 400;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.site-footer__legal .site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

@media (max-width: 991px) {
    .site-header__inner {
        position: relative;
        display: flex;
        height: 60px;
        min-height: 60px;
        justify-content: space-between;
        padding-right: 16px;
        padding-left: 16px;
    }

    .site-header__menu-toggle {
        display: inline-flex;
        width: auto;
        height: 24px;
        align-items: center;
        gap: 6px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--natalochka-color-text);
        cursor: pointer;
    }

    .site-header__menu-toggle svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-width: 1.5;
    }

    .site-header__menu-label {
        display: inline;
        font-family: var(--natalochka-font-body);
        font-size: 13px;
        font-weight: 700;
        line-height: 13px;
        text-transform: uppercase;
    }

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

    .site-branding .custom-logo {
        max-height: 28px;
    }

    .site-branding > a:not(.custom-logo-link) {
        font-size: 20px;
    }

    .site-navigation {
        display: none;
    }

    .site-header__actions {
        gap: 0;
    }

    .site-header__search-toggle {
        display: none;
    }

    .header-search-dropdown {
        display: none;
    }

    .header-cart-dropdown {
        top: 100%;
        right: 16px;
        left: 16px;
        width: auto;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    .homepage-hero {
        display: block;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .homepage-categories {
        display: none;
    }

    .hero-slider {
        height: 548px;
        aspect-ratio: auto;
    }

    .hero-slide {
        height: 548px;
        min-height: 0;
        background-image: var(--hero-image-mobile);
    }

    .hero-slide::before {
        position: absolute;
        z-index: 1;
        inset: 0;
        background: #0000004d;
        content: "";
    }

    .hero-slide__copy {
        z-index: 2;
        right: 16px;
        left: 16px;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-slide__copy p {
        margin-bottom: 14px;
        color: var(--natalochka-color-white);
        font-size: 18px;
        line-height: 28.8px;
        opacity: 0.8;
        text-align: center;
    }

    .hero-slide__copy h1 {
        margin-bottom: 24px;
        color: var(--natalochka-color-white);
        font-size: 38px;
        line-height: 40px;
        text-align: center;
    }

    .hero-slide .button {
        color: var(--natalochka-color-black);
        background: var(--natalochka-color-white);
        font-size: 13px;
        line-height: 15.6px;
    }

    .slider-dots {
        bottom: 17px;
        gap: 10px;
    }

    .slider-dots .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0;
    }

    .homepage-category-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .homepage-products-section {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .homepage-popular-section {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .homepage-about-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 0;
        padding-bottom: 60px;
    }

    .homepage-about__content {
        order: -1;
        padding: 0;
    }

    .homepage-about__content h2 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 20px;
    }

    .homepage-about__text {
        font-size: 14px;
        line-height: 14px;
    }

    .homepage-about__media {
        height: 392px;
    }

    .homepage-testimonials-section {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .homepage-testimonials-section .section-heading {
        margin-bottom: 24px;
    }

    .homepage-testimonials-section .section-heading h2 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 20px;
    }

    .homepage-testimonials-section .section-heading p {
        font-size: 16px;
        line-height: 16px;
    }

    .testimonial-card {
        padding: 14px;
    }

    .testimonial-card__image {
        width: 80px;
        height: 80px;
        flex-basis: 80px;
        margin-bottom: 24px;
    }

    .testimonial-card__text {
        font-size: 14px;
        line-height: 1;
    }

    .homepage-testimonials-slider.is-compact + .testimonial-slider-pagination {
        display: flex;
    }

    .homepage-faq-section {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .homepage-faq-section .section-heading {
        margin-bottom: 24px;
    }

    .homepage-faq-section .section-heading h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .homepage-faq .faq-item__question button {
        min-height: 50px;
        font-size: 16px;
        line-height: 32px;
    }

    .homepage-faq .faq-item__answer {
        font-size: 16px;
        line-height: 1;
    }

    .homepage-category-section .section-heading,
    .homepage-products-section .section-heading,
    .homepage-popular-section .section-heading {
        margin-bottom: 24px;
    }

    .homepage-category-section .section-heading h2,
    .homepage-products-section .section-heading h2,
    .homepage-popular-section .section-heading h2 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 20px;
    }

    .homepage-category-section .section-heading p,
    .homepage-products-section .section-heading p,
    .homepage-popular-section .section-heading p {
        font-size: 16px;
        line-height: 16px;
    }

    .homepage-category-grid {
        gap: 12px;
    }

    .homepage-popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .catalog-page__inner {
        width: 100%;
        padding-top: 0;
    }

    .catalog-page__title {
        display: none;
    }

    .catalog-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .catalog-filter-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px;
        border: 0;
        background: none;
        color: #1b1b1b;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        letter-spacing: -0.03em;
        line-height: 1;
        cursor: pointer;
    }

    .catalog-filter-toggle:hover,
    .catalog-filter-toggle:focus-visible,
    .catalog-filter-close:hover,
    .catalog-filter-close:focus-visible {
        color: #000000;
    }

    .catalog-filter-toggle svg {
        width: 20px;
        height: 20px;
    }

    .catalog-ordering {
        min-width: 0;
    }

    .catalog-layout {
        display: block;
        padding-bottom: 60px;
    }

    .catalog-filter-backdrop {
        position: fixed;
        z-index: 199;
        display: none;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: #1b1b1b33;
        backdrop-filter: blur(2px);
    }

    body.catalog-filters-open .catalog-filter-backdrop {
        display: block;
    }

    body.catalog-filters-open {
        overflow: hidden;
    }

    .catalog-filters {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 200;
        display: none;
        width: min(300px, calc(100vw - 40px));
        padding: 0 20px 30px;
        overflow-y: auto;
        background: #fff;
        box-shadow: 8px 5px 20px rgba(0, 0, 0, 0.1);
    }

    .catalog-filters.is-open {
        display: flex;
    }

    .catalog-filters__mobile-head {
        display: flex;
        height: 64px;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
        gap: 6px;
        margin: 0 -20px 30px;
        padding: 0 20px;
        border-bottom: 1px solid #dadada;
        color: #1b1b1b;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
    }

    .catalog-filter-close {
        display: inline-flex;
        width: 24px;
        height: 24px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        background: none;
        color: #1b1b1b;
        cursor: pointer;
    }

    .catalog-filter-close svg {
        display: block;
        width: 24px;
        height: 24px;
    }

    .catalog-filter-group {
        padding-bottom: 30px;
        margin: 0 0 30px;
    }

    .catalog-filter-group h2 {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 22.4px;
    }

    .catalog-filter-group li a {
        min-height: 36px;
        font-size: 14px;
        line-height: 19.6px;
    }

    .catalog-filter-group small {
        min-width: 30px;
        height: 20px;
        font-size: 12px;
        line-height: 18px;
    }

    .catalog-results__top {
        display: block;
        min-height: 0;
        margin-bottom: 16px;
    }

    .catalog-breadcrumbs {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 19.6px;
    }

    .catalog-active-filters {
        gap: 12px;
    }

    .catalog-active-filters a {
        gap: 4px;
        font-size: 14px;
    }

    .catalog-active-filters svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .catalog-ordering__toggle {
        width: auto;
        min-height: 36px;
        padding: 8px 0;
        gap: 14px;
        font-size: 14px;
    }

    .catalog-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .catalog-products .product-card {
        height: 100%;
    }

    .catalog-load-more-wrap {
        margin-top: 24px;
    }

    .catalog-page + .site-footer {
        margin-top: 0;
    }

    .homepage-category-card {
        height: 200px;
    }

    .site-footer__top {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .site-footer__wordmark {
        font-size: clamp(48px, 16.5cqw, 120px);
        text-align: center;
    }

    .site-footer__navigation {
        width: 100%;
        min-width: 0;
        margin-top: 32px;
        gap: 0 60px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .site-footer__bottom > div {
        order: 2;
    }

    .site-footer__legal {
        order: 1;
    }
}

@media (max-width: 767px) {
    .homepage-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 640px) {
    .homepage-hero {
        display: block;
        width: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .homepage-categories {
        display: none;
    }
    .hero-slider {
        height: 548px;
    }
    .hero-slide {
        height: 548px;
        min-height: 0;
        background-image: var(--hero-image-mobile);
    }
    .hero-slide::before {
        position: absolute;
        z-index: 1;
        inset: 0;
        background: #0000004d;
        content: "";
    }
    .hero-slide__copy {
        z-index: 2;
        right: 16px;
        left: 16px;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-slide__copy p {
        margin-bottom: 14px;
        color: var(--natalochka-color-white);
        font-size: 18px;
        line-height: 28.8px;
        opacity: 0.8;
        text-align: center;
    }
    .hero-slide__copy h1 {
        margin-bottom: 24px;
        color: var(--natalochka-color-white);
        font-size: 38px;
        line-height: 40px;
        text-align: center;
    }
    .hero-slide .button {
        padding: 13px 20px;
        color: var(--natalochka-color-black);
        background: var(--natalochka-color-white);
        font-size: 13px;
        line-height: 15.6px;
    }
    .button {
        padding: 7px 12px;
        font-size: 0.5rem;
    }
    .slider-dots {
        bottom: 17px;
        gap: 10px;
    }
    .slider-dots .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0;
    }
    .homepage-promos {
        grid-template-columns: 1fr;
        gap: 30px;
        width: auto;
        margin-top: 0;
    }
    .promo-card {
        height: 250px;
        padding: 20px;
    }
    .promo-card:nth-child(n + 2) {
        display: none;
    }
    .promo-card strong {
        font-size: 26px;
        line-height: 28px;
    }
    .promo-card__text {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 25.6px;
    }
    .promo-card__link {
        font-size: 13px;
        line-height: 15.6px;
    }
    .homepage-section {
        width: calc(100% - 20px);
        margin-top: 58px;
    }
    .section-heading {
        margin-bottom: 18px;
    }
    .section-heading h2 {
        font-size: 1rem;
    }
    .section-heading p {
        font-size: 0.58rem;
    }
    .category-grid {
        gap: 5px;
    }
    .category-grid img {
        aspect-ratio: 1.48;
    }
    .category-grid span {
        font-size: 0.7rem;
    }
    .product-grid--featured {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 6px;
    }
    .product-grid--featured .product-card:nth-child(n + 3) {
        display: none;
    }
    .product-grid--best {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 6px;
    }
    .product-card__name,
    .product-card__category,
    .product-card__sizes {
        margin-bottom: 4px;
    }
    .homepage-editorial {
        display: block;
        width: calc(100% - 12px);
        margin-top: 60px;
    }
    .homepage-editorial img {
        margin-bottom: 20px;
    }
    .homepage-editorial h2 {
        font-size: 1rem;
    }
    .homepage-editorial p {
        font-size: 0.65rem;
    }
    .testimonials {
        width: calc(100% - 12px);
    }
    .testimonial-grid {
        display: block;
    }
    .testimonial-grid article {
        padding: 18px 24px;
    }
    .testimonial-grid article:not(:first-child) {
        display: none;
    }
    .testimonial-grid p {
        min-height: 0;
        font-size: 0.62rem;
    }
    .faq {
        width: calc(100% - 20px);
    }
    .faq-item button {
        padding: 13px 0;
        font-size: 0.65rem;
    }
    .faq-item p {
        font-size: 0.62rem;
    }

    .contacts-page + .site-footer {
        margin-top: 0;
    }
    .contacts-page + .site-footer .site-footer__top {
        padding-top: 50px;
    }
    .contacts-page__inner {
        padding-top: 16px;
        padding-bottom: 60px;
    }
    .entry-content {
        padding-top: 16px;
        padding-bottom: 60px;
    }
    .entry-title {
        margin-bottom: 16px;
        font-size: 2rem;
    }
    .basic-page__content {
        font-size: 0.9375rem;
    }
    .contacts-page__intro h1 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 1;
    }
    .contacts-page__description {
        font-size: 14px;
        line-height: 1;
    }
    .contacts-page__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px;
    }
    .contact-card {
        margin: 0;
    }
    .contact-card h2 {
        padding-bottom: 14px;
        font-size: 16px;
        line-height: 1;
    }
    .contact-card__value {
        padding-top: 14px;
        font-size: 16px;
        line-height: 1;
    }

    .site-branding > a:not(.custom-logo-link) {
        font-size: 1.25rem;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer__wordmark {
        font-size: clamp(48px, 16.5cqw, 120px);
    }

    .site-footer__navigation {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 16px;
    }
}

/* Single product */
.single-product-page {
    padding-top: 0;
}
.product-summary {
    display: grid;
    grid-template-areas:
        "image breadcrumbs"
        "image content";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
    gap: 0 32px;
    padding-top: 24px;
    padding-bottom: 60px;
}
.product-summary__breadcrumbs {
    grid-area: breadcrumbs;
    min-width: 0;
    margin-bottom: 20px;
}
.product-summary__image-wrap {
    grid-area: image;
    min-width: 0;
}
.product-summary__image {
    width: 100%;
    height: auto;
}
.product-summary__content {
    grid-area: content;
    min-width: 0;
}
.product-summary h1 {
    margin: 0 0 10px;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.product-summary__description {
    margin-bottom: 20px;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 16px;
    line-height: 1;
}
.product-summary__description > * {
    margin: 0;
}
.product-summary__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 20px;
    color: #da3c3c;
    font-family: var(--natalochka-font-body);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}
.product-summary__price del,
.product-summary__price del .woocommerce-Price-amount {
    color: #767676;
    font-weight: 300;
    text-decoration: line-through;
}
.product-summary__price ins {
    text-decoration: none;
}
.product-summary__cart {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-summary__quantity {
    position: relative;
    flex: 0 0 80px;
    height: 40px;
    border: 1px solid #0000001a;
    background: transparent;
}
.product-summary__quantity .quantity-control__button {
    width: 25px;
    height: 38px;
    border: 1px solid #0000001a;
    background: transparent;
}

.product-summary__quantity
    .quantity-control__button[data-product-quantity-action="plus"] {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
}

.product-summary__quantity
    .quantity-control__button[data-product-quantity-action="minus"] {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
}

.product-summary__quantity.quantity-control.quantity-control--dropdown {
    border: 1px solid #0000001a;
}

.product-summary__quantity .quantity-control__value {
    width: 30px;
}
.product-summary__quantity-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.product-summary__add-to-cart {
    height: 40px;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}
.product-summary__category {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid #0000001b;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
}
.product-summary__category strong {
    color: #333333;
    font-weight: 600;
}
.product-summary__category a,
.product-summary__category span {
    color: inherit;
}
.product-information {
    padding-bottom: 110px;
}
.product-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid #e5e5e5;
}
.product-tabs button {
    position: relative;
    padding: 30px 0 10px;
    border: 3px solid transparent;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
    color: #333333b2;
    cursor: pointer;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-transform: uppercase;
    transform: translateY(-3px);
}
.product-tabs button.is-active {
    color: #333333;
    border-top-color: #242424;
}
.product-tabs button:not(.is-active):hover,
.product-tabs button:not(.is-active):focus-visible {
    color: #000000;
}
.product-tab-panel {
    display: none;
}
.product-tab-panel.is-active {
    display: block;
}
.product-tab-panel {
    margin-top: 24px;
}
.product-delivery-content {
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    line-height: 1.4;
}
.product-delivery-content > :first-child {
    margin-top: 0;
}
.product-delivery-content > :last-child {
    margin-bottom: 0;
}
.product-attributes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 20px 30px;
    margin: 0;
}
.product-attributes--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 800px;
    margin-inline: auto;
}
.product-attributes div {
    min-width: 0;
}
.product-attributes dt {
    margin-bottom: 12px;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 15.4px;
    font-weight: 700;
    line-height: 21.56px;
}
.product-attributes dd {
    margin: 0;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}
.product-empty-state {
    color: #777;
    font-size: 0.8rem;
}
.related-products {
    padding-bottom: 110px;
}
.related-products h2 {
    margin: 0 0 28px;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.related-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 640px) {
    .product-summary {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 16px;
        padding-bottom: 60px;
    }
    .product-summary__breadcrumbs {
        order: -2;
        width: 100%;
        flex-wrap: nowrap;
        gap: 6px;
        margin-bottom: 24px;
        overflow-x: auto;
        scrollbar-width: none;
        white-space: nowrap;
        font-size: 14px;
        line-height: 19.6px;
    }
    .product-summary__breadcrumbs::-webkit-scrollbar {
        display: none;
    }
    .product-summary__image-wrap {
        order: -1;
    }
    .product-summary__content {
        padding-top: 24px;
    }
    .product-summary h1 {
        margin-bottom: 10px;
        font-size: 26px;
    }
    .product-summary__description {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .product-summary__price {
        margin-bottom: 20px;
        font-size: 22px;
    }
    .product-summary__cart {
        gap: 10px;
    }
    .product-summary__add-to-cart {
        flex: 0 1 auto;
        padding-right: 20px;
        padding-left: 20px;
        font-size: 14px;
    }
    .product-summary__category {
        margin-top: 24px;
        padding-top: 20px;
    }
    .product-information {
        padding-bottom: 60px;
    }
    .product-tabs {
        justify-content: flex-start;
        gap: 22px;
    }
    .product-tabs button {
        padding: 15px 0 0;
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
    }
    .product-tab-panel {
        margin-top: 24px;
    }
    .product-attributes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 14px;
    }
    .product-attributes dt {
        margin-bottom: 8px;
        font-size: 15.4px;
        line-height: 21.56px;
    }
    .product-attributes dd {
        font-size: 14px;
    }
    .related-products {
        padding-bottom: 60px;
    }
    .related-products h2 {
        margin-bottom: 24px;
        font-size: 20px;
    }
    .related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .related-products .product-card {
        height: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Checkout */
.checkout-page__inner {
    padding-top: 7px;
    padding-bottom: 98px;
}

.checkout-page__inner > h1 {
    margin: 0 0 21px;
    font-size: clamp(2rem, 3vw, 2.05rem);
    line-height: 1.15;
}

.checkout-page + .site-footer {
    margin-top: 0;
}

.checkout-page .woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.checkout-page #customer_details,
.checkout-page #order_review {
    min-width: 0;
    padding: 35px;
    background: var(--natalochka-color-subtle);
}

.checkout-page #customer_details {
    grid-column: 1;
}

.checkout-page #order_review {
    grid-column: 2;
    grid-row: 1;
}

.checkout-page .col-1,
.checkout-page .col-2 {
    float: none;
    width: auto;
}

.checkout-page .col-2 {
    display: none;
}

.checkout-page h3,
.checkout-page #order_review_heading {
    margin: 0 0 25px;
    font-size: 1.8rem;
    line-height: 1.15;
}

.checkout-page .woocommerce-billing-fields h3 {
    padding-bottom: 25px;
    border-bottom: 1px solid #d2d2d2;
}

.checkout-page .woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.checkout-page .form-row {
    padding: 0;
    margin: 0;
}

.checkout-page .form-row-wide {
    grid-column: 1 / -1;
}

.checkout-page .form-row label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.checkout-page .form-row input.input-text,
.checkout-page .form-row select,
.checkout-page .form-row textarea {
    width: 100%;
    min-height: 41px;
    padding: 11px 13px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: var(--natalochka-color-text);
    font-size: 0.75rem;
}

.checkout-page
    .woocommerce-billing-fields__field-wrapper
    .form-row:nth-child(4) {
    margin-bottom: 5px;
}

.checkout-page
    .woocommerce-billing-fields__field-wrapper
    .form-row:nth-child(5) {
    margin-bottom: 0;
}

.checkout-page .woocommerce-shipping-fields,
.checkout-page .woocommerce-additional-fields,
.checkout-page .woocommerce-terms-and-conditions-wrapper {
    display: none;
}

.checkout-page .checkout-shipping {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #d2d2d2;
}

.checkout-page .checkout-shipping h3 {
    padding-bottom: 25px;
    margin: 0 0 17px;
    border-bottom: 1px solid #d2d2d2;
}

.checkout-page .checkout-shipping ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.checkout-page .checkout-shipping li {
    margin: 10px 0;
    font-size: 0.875rem;
}

.checkout-page .checkout-shipping label {
    display: flex;
    align-items: center;
    gap: 9px;
}

.checkout-page .checkout-shipping input {
    margin: 0;
    accent-color: var(--natalochka-color-text);
}

.checkout-page #order_review .woocommerce-shipping-totals {
    display: none;
}

.checkout-page .woocommerce-checkout-payment {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #d2d2d2;
}

.checkout-page .woocommerce-checkout-payment h3 {
    padding-bottom: 25px;
    border-bottom: 1px solid #d2d2d2;
}

.checkout-page .checkout-payment-heading {
    padding-bottom: 25px;
    margin: 0 0 17px;
    border-bottom: 1px solid #d2d2d2;
    font-size: 1.8rem;
    line-height: 1.15;
}

.checkout-page .woocommerce-checkout-payment ul,
.checkout-page .wc_payment_methods {
    padding: 0;
    margin: 0;
    list-style: none;
}

.checkout-page .woocommerce-checkout-payment li {
    margin: 10px 0;
    font-size: 0.875rem;
}

.checkout-page .woocommerce-checkout-payment label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.checkout-page .woocommerce-checkout-payment input,
.checkout-page #order_review input {
    accent-color: var(--natalochka-color-text);
}

.checkout-page #order_review_heading {
    padding-bottom: 25px;
    border-bottom: 1px solid #d2d2d2;
}

.checkout-page .shop_table {
    width: 100%;
    border-collapse: collapse;
}

.checkout-page .shop_table th,
.checkout-page .shop_table td {
    padding: 15px 0;
    border-bottom: 1px solid #d2d2d2;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
}

.checkout-page .shop_table th:last-child,
.checkout-page .shop_table td:last-child {
    text-align: right;
}

.checkout-page .shop_table .product-name {
    font-weight: 700;
}

.checkout-page .shop_table .product-total,
.checkout-page .shop_table tfoot th,
.checkout-page .shop_table tfoot td {
    font-weight: 700;
}

.checkout-page .shop_table .cart_item .product-name {
    padding-right: 15px;
}

.checkout-page .shop_table .product-quantity {
    font-weight: 400;
}

.checkout-page #payment {
    margin-top: 0;
}

.checkout-page #payment .place-order {
    padding: 0;
    margin: 25px 0 0;
}

.checkout-page #payment .button {
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: var(--natalochka-color-text);
    font-size: 0.75rem;
    cursor: pointer;
}
.checkout-page #payment .button:hover,
.checkout-page #payment .button:focus-visible,
.checkout-page .natalochka-checkout-submit:hover,
.checkout-page .natalochka-checkout-submit:focus-visible {
    color: var(--natalochka-color-black);
    background: var(--natalochka-color-accent);
}

.checkout-page #payment .place-order .button {
    display: none;
}

.checkout-page .natalochka-checkout-submit {
    display: block;
    width: 100%;
    padding: 13px 16px;
    margin-top: 25px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: var(--natalochka-color-text);
    font-size: 0.75rem;
    cursor: pointer;
}

@media (max-width: 640px) {
    .checkout-page__inner {
        width: calc(100% - 24px);
        padding-top: 0;
        padding-bottom: 46px;
    }

    .checkout-page__inner > h1 {
        margin-bottom: 16px;
        font-size: 1.25rem;
    }

    .checkout-page .woocommerce-checkout {
        display: block;
    }

    .checkout-page #customer_details,
    .checkout-page #order_review {
        padding: 13px 11px 14px;
    }

    .checkout-page #order_review {
        margin-top: 18px;
    }

    .checkout-page h3,
    .checkout-page #order_review_heading {
        margin-bottom: 17px;
        font-size: 1rem;
    }

    .checkout-page .woocommerce-billing-fields h3,
    .checkout-page .woocommerce-checkout-payment h3,
    .checkout-page #order_review_heading {
        padding-bottom: 14px;
    }

    .checkout-page .checkout-payment-heading {
        padding-bottom: 14px;
        margin-bottom: 14px;
        font-size: 1rem;
    }

    .checkout-page .woocommerce-billing-fields__field-wrapper {
        gap: 9px;
    }

    .checkout-page .form-row input.input-text,
    .checkout-page .form-row select,
    .checkout-page .form-row textarea {
        min-height: 37px;
        padding: 9px 11px;
        font-size: 0.68rem;
    }

    .checkout-page .woocommerce-checkout-payment {
        padding-top: 18px;
        margin-top: 18px;
    }

    .checkout-page .checkout-shipping {
        padding-top: 18px;
        margin-top: 18px;
    }

    .checkout-page .checkout-shipping h3 {
        padding-bottom: 14px;
        margin-bottom: 14px;
        font-size: 1rem;
    }

    .checkout-page .checkout-shipping li {
        margin: 8px 0;
        font-size: 0.75rem;
    }

    .checkout-page .woocommerce-checkout-payment li {
        margin: 8px 0;
        font-size: 0.75rem;
    }

    .checkout-page .shop_table th,
    .checkout-page .shop_table td {
        padding: 11px 0;
        font-size: 0.75rem;
    }

    .checkout-page #payment .place-order {
        margin-top: 18px;
    }

    .checkout-page #payment .button {
        padding: 11px 12px;
        font-size: 0.7rem;
    }

    .checkout-page .natalochka-checkout-submit {
        padding: 11px 12px;
        margin-top: 18px;
        font-size: 0.7rem;
    }
}

/* Cart */
.cart-page__inner {
    padding-top: 24px;
    padding-bottom: 110px;
}

.cart-page__inner > h1 {
    margin: 0 0 24px;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 714px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.cart-free-shipping,
.cart-summary {
    background: #f8f8f8;
}

.cart-page__free-shipping {
    padding: 40px;
    margin-bottom: 30px;
}

.cart-free-shipping p {
    margin: 0 0 12px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.cart-free-shipping p .woocommerce-Price-amount {
    font-weight: 700;
}

.cart-free-shipping__track {
    height: 10px;
    background: #e6e6e6;
}

.cart-free-shipping__track span {
    display: block;
    height: 100%;
    min-width: 22px;
    background-color: #282828;
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%
    );
    background-repeat: repeat;
    background-size: 25px 10px;
}

.cart-table {
    width: 100%;
}

.cart-table__head,
.cart-table__row {
    display: grid;
    grid-template-columns:
        minmax(0, 1.8fr) minmax(90px, 0.8fr) minmax(110px, 0.9fr)
        minmax(90px, 0.8fr);
    align-items: center;
    column-gap: 0;
}

.cart-table__head {
    padding: 0 10px 12px;
    border-bottom: 1px solid #28282833;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.cart-table__head span:nth-child(2),
.cart-table__head span:nth-child(3) {
    text-align: center;
}

.cart-table__head span:nth-child(4) {
    text-align: right;
}

.cart-table__row {
    padding: 12px 0;
    border-bottom: 1px solid #0000001b;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    line-height: 1;
}

.cart-table__product {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 20px;
}

.cart-table__product-image {
    display: block;
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    overflow: hidden;
}

.cart-table__product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-table__product-name {
    min-width: 0;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.cart-table__unit-price {
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.cart-table__unit-price del,
.cart-table__line-total del {
    text-decoration: line-through;
}

.cart-table__unit-price ins,
.cart-table__line-total ins {
    text-decoration: none;
}

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

.cart-table__quantity .quantity-control.quantity-control--dropdown {
    width: 80px;
    height: 40px;
}

.cart-table__quantity-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.cart-table__line-total {
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

.cart-update {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.cart-summary {
    padding: 40px;
}

.cart-summary h2 {
    margin: 0 0 30px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.cart-summary__line,
.cart-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #28282833;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    line-height: 1;
}

.cart-summary__line strong,
.cart-summary__total strong {
    font-weight: 600;
}

.cart-summary__line span {
    font-weight: 400;
}

.cart-summary__shipping {
    padding: 20px 0;
    border-top: 1px solid #28282833;
    border-bottom: 1px solid #28282833;
}

.cart-summary__shipping h3 {
    margin: 0 0 30px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.cart-summary__shipping ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.cart-summary__shipping li {
    margin: 0 0 12px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.cart-summary__shipping li {
    position: relative;
}

.cart-summary__shipping li:last-child {
    margin-bottom: 0;
}

.cart-summary__shipping label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-summary__shipping li > input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
}

.cart-summary__shipping li > label {
    position: relative;
    padding-left: 23px;
}

.cart-summary__shipping input[type="radio"] {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    padding: 0;
    margin: 0;
    border: 1px solid #767676;
    border-radius: 50%;
    background: #ffffff;
    appearance: none;
}

.cart-summary__shipping li > input[type="radio"] {
    opacity: 0;
    cursor: pointer;
}

.cart-summary__shipping li > label::before,
.cart-summary__shipping li > label::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    border-radius: 50%;
    transform: translateY(-50%);
}

.cart-summary__shipping li > label::before {
    width: 13px;
    height: 13px;
    border: 1px solid #767676;
    background: #ffffff;
}

.cart-summary__shipping li > input[type="radio"]:checked + label::before {
    border-color: #282828;
}

.cart-summary__shipping li > input[type="radio"]:checked + label::after {
    width: 7px;
    height: 7px;
    margin-left: 3px;
    background: #282828;
}

.cart-summary__shipping input[type="radio"]:checked {
    border-color: #282828;
}

.cart-summary__shipping input[type="radio"]:checked::after {
    display: block;
    width: 7px;
    height: 7px;
    margin: 2px;
    content: "";
    border-radius: 50%;
    background: #282828;
}

.cart-summary__shipping .woocommerce-shipping-destination,
.cart-summary__shipping .woocommerce-shipping-contents,
.cart-summary__shipping .shipping-calculator-button {
    display: none;
}

.cart-summary__total {
    border-top: 0;
}

.cart-summary__checkout {
    display: block;
    width: 100%;
    padding: 14px 20px;
    color: #ffffff;
    background: #282828;
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.cart-summary__checkout:hover,
.cart-summary__checkout:focus-visible {
    color: #ffffff;
    background: #000000;
}

.cart-table__product-image:hover,
.cart-table__product-image:focus-visible {
    opacity: 0.75;
}

.cart-empty {
    padding: 40px;
    background: #f8f8f8;
}

.cart-empty p {
    margin: 0 0 20px;
}

.cart-empty .cart-dropdown__button {
    display: inline-flex;
}

@media (max-width: 640px) {
    .cart-page__inner {
        padding-top: 16px;
        padding-bottom: 60px;
    }

    .cart-page__inner > h1 {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .cart-page__layout {
        display: block;
    }

    .cart-page__free-shipping {
        padding: 14px;
        margin-bottom: 24px;
    }

    .cart-free-shipping p {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1;
    }

    .cart-table__head {
        display: none;
    }

    .cart-table__row {
        grid-template-columns: 138px minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;
        column-gap: 12px;
        min-height: 164px;
        padding: 0;
        margin-bottom: 14px;
        border-bottom: 0;
    }

    .cart-table__row:last-child {
        margin-bottom: 0;
    }

    .cart-table__product {
        display: contents;
    }

    .cart-table__product-image {
        grid-column: 1;
        grid-row: 1 / 5;
        align-self: stretch;
        width: 138px;
        height: auto;
        min-height: 164px;
    }

    .cart-table__product-name {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        padding-bottom: 14px;
        font-size: 16px;
        font-weight: 600;
    }

    .cart-table__unit-price,
    .cart-table__quantity,
    .cart-table__line-total {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: space-between;
        color: #767676;
        font-family: var(--natalochka-font-body);
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
    }

    .cart-table__unit-price {
        grid-column: 2;
        grid-row: 2;
        padding-bottom: 5px;
        border-bottom: 1px dashed #0000001b;
    }

    .cart-table__quantity {
        grid-column: 2;
        grid-row: 3;
        padding: 0 0 5px;
        border-bottom: 1px dashed #0000001b;
    }

    .cart-table__line-total {
        grid-column: 2;
        grid-row: 4;
        padding: 5px 0;
        border-bottom: 1px dashed #0000001b;
    }

    .cart-table__unit-price::before,
    .cart-table__quantity::before,
    .cart-table__line-total::before {
        color: #767676;
        font-family: var(--natalochka-font-body);
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
    }

    .cart-table__unit-price::before,
    .cart-table__line-total::before {
        content: "Ціна";
    }

    .cart-table__quantity::before {
        content: "Кількість";
    }

    .cart-table__unit-price .woocommerce-Price-amount,
    .cart-table__line-total .woocommerce-Price-amount {
        color: #767676;
        font: inherit;
    }

    .cart-table__quantity .quantity-control.quantity-control--dropdown {
        width: 80px;
        height: 40px;
        margin-left: auto;
    }

    .cart-summary {
        padding: 14px;
        margin-top: 24px;
    }

    .cart-summary h2 {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .cart-summary__line,
    .cart-summary__total,
    .cart-summary__shipping h3,
    .cart-summary__shipping li {
        font-size: 16px;
    }

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

.cart-dropdown__free-shipping {
    padding: 0;
    margin: 20px 0;
    background: transparent;
}

.cart-dropdown__free-shipping p {
    margin-bottom: 12px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

/* Checkout custom layout */
.checkout-page__inner {
    padding-top: 24px;
    padding-bottom: 110px;
}

.checkout-page__inner > h1 {
    margin: 0 0 24px;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.checkout-page .woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.checkout-page .checkout-page__details {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding: 40px;
    background: #f8f8f8;
}

.checkout-page #customer_details,
.checkout-page .checkout-shipping,
.checkout-page .checkout-payment-heading,
.checkout-page .woocommerce-checkout-payment,
.checkout-page #order_review {
    min-width: 0;
    background: #f8f8f8;
}

.checkout-page #customer_details {
    padding: 0;
}

.checkout-page .checkout-shipping {
    padding: 30px 0 0;
    margin: 30px 0 0;
    border: 0;
}

.checkout-page .checkout-shipping__fields {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.checkout-page .checkout-payment {
    margin-top: 30px;
}

.checkout-page .checkout-payment-heading {
    padding: 0 0 30px;
    margin: 0;
    border-bottom: 1px solid #28282833;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.checkout-page #payment .checkout-payment-heading {
    padding-bottom: 30px;
}

.checkout-page .woocommerce-checkout-payment {
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.checkout-page #payment {
    background: transparent;
}

.checkout-page #order_review {
    grid-column: 2;
    grid-row: 1 / span 3;
    padding: 40px;
}

.checkout-page .col-1,
.checkout-page .col-2 {
    float: none;
    width: auto;
}

.checkout-page .col-2,
.checkout-page .woocommerce-shipping-fields,
.checkout-page .woocommerce-additional-fields {
    display: none;
}

.checkout-page .woocommerce-billing-fields h3,
.checkout-page .checkout-shipping h3 {
    padding-bottom: 30px;
    margin: 0;
    border-bottom: 1px solid #28282833;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.checkout-page .woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 24px;
}

.checkout-page .form-row {
    float: none !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
}

.checkout-page #billing_country_field {
    display: none;
}

.checkout-page .form-row-wide {
    grid-column: 1 / -1;
}

.checkout-page .form-row label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.checkout-page .form-row input.input-text,
.checkout-page .form-row select,
.checkout-page .form-row textarea,
.checkout-page .checkout-shipping select {
    width: 100%;
    min-height: 46px;
    padding: 14px;
    border: 1px solid #e9e9e9;
    border-radius: 0;
    background-color: #ffffff;
    color: #242424;
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.checkout-page .form-row textarea {
    min-height: 100px;
}

.checkout-page .form-row input::placeholder,
.checkout-page .form-row textarea::placeholder {
    color: #767676;
    opacity: 1;
}

.checkout-page .checkout-shipping select {
    padding-right: 48px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8327 7.5L9.99935 12.5L4.16602 7.5' stroke='%23767676' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    appearance: none;
}

.checkout-page .checkout-shipping ul {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.checkout-page .woocommerce-checkout-payment ul,
.checkout-page .wc_payment_methods {
    padding: 0 !important;
    margin: 24px 0 0 !important;
    list-style: none !important;
}

.checkout-page .checkout-shipping li,
.checkout-page .woocommerce-checkout-payment li {
    margin: 0 0 12px !important;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.checkout-page .checkout-shipping li:last-child,
.checkout-page .woocommerce-checkout-payment li:last-child {
    margin-bottom: 0;
}

.checkout-page .checkout-shipping li,
.checkout-page .woocommerce-checkout-payment li {
    position: relative;
}

.checkout-page .checkout-shipping li > input[type="radio"],
.checkout-page .woocommerce-checkout-payment li > input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
}

.checkout-page .checkout-shipping li > label,
.checkout-page .woocommerce-checkout-payment li > label {
    position: relative;
    padding-left: 23px;
    line-height: 1.4;
}

.checkout-page .checkout-shipping label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-page .woocommerce-checkout-payment label {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px;
}

.checkout-page .woocommerce-checkout-payment label img {
    margin-left: 0 !important;
}

.checkout-page .checkout-shipping label .woocommerce-Price-amount,
.checkout-page .checkout-shipping label .amount {
    margin-left: auto;
    color: #333333b3;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.checkout-page .checkout-shipping input[type="radio"],
.checkout-page .woocommerce-checkout-payment input[type="radio"] {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    padding: 0;
    margin: 0;
    border: 1px solid #767676;
    border-radius: 50%;
    background: #ffffff;
    appearance: none;
}

.checkout-page .checkout-shipping li > input[type="radio"],
.checkout-page .woocommerce-checkout-payment li > input[type="radio"] {
    opacity: 0;
    cursor: pointer;
}

.checkout-page .checkout-shipping li > label::before,
.checkout-page .checkout-shipping li > label::after,
.checkout-page .woocommerce-checkout-payment li > label::before,
.checkout-page .woocommerce-checkout-payment li > label::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    border-radius: 50%;
    transform: translateY(-50%);
}

.checkout-page .checkout-shipping li > label::before,
.checkout-page .woocommerce-checkout-payment li > label::before {
    width: 13px;
    height: 13px;
    border: 1px solid #767676;
    background: #ffffff;
}

.checkout-page
    .checkout-shipping
    li
    > input[type="radio"]:checked
    + label::before,
.checkout-page
    .woocommerce-checkout-payment
    li
    > input[type="radio"]:checked
    + label::before {
    border-color: #282828;
}

.checkout-page
    .checkout-shipping
    li
    > input[type="radio"]:checked
    + label::after,
.checkout-page
    .woocommerce-checkout-payment
    li
    > input[type="radio"]:checked
    + label::after {
    width: 7px;
    height: 7px;
    margin-left: 3px;
    background: #282828;
}

.checkout-page .checkout-shipping input[type="radio"]:checked,
.checkout-page .woocommerce-checkout-payment input[type="radio"]:checked {
    border-color: #282828;
}

.checkout-page .checkout-shipping input[type="radio"]:checked::after,
.checkout-page
    .woocommerce-checkout-payment
    input[type="radio"]:checked::after {
    display: block;
    width: 7px;
    height: 7px;
    margin: 2px;
    content: "";
    border-radius: 50%;
    background: #282828;
}

.checkout-page .checkout-shipping .woocommerce-shipping-destination,
.checkout-page .checkout-shipping .shipping-calculator-button {
    display: none;
}

.checkout-page .woocommerce-checkout-payment .payment_box {
    padding: 12px 0 0 23px;
    margin: 0;
    background: transparent;
    color: #767676;
    font-family: var(--natalochka-font-body);
    font-size: 14px;
}

.checkout-page #payment .place-order {
    padding: 0;
    margin: 0;
}

.checkout-page .woocommerce-terms-and-conditions-wrapper {
    display: block;
}

.checkout-page .woocommerce-privacy-policy-text {
    display: none;
}

.checkout-page #payment .place-order .button {
    display: none;
}

.checkout-page #order_review_heading {
    display: none;
}

.checkout-order-review__content > h2 {
    margin: 0 0 30px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.checkout-order-review__items {
    padding-top: 20px;
    border-top: 1px solid #28282833;
}

.checkout-order-review__item {
    display: grid;
    grid-template-columns: 20px 106px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.checkout-order-review__item:last-child {
    margin-bottom: 0;
}

.checkout-order-review__remove {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkout-order-review__remove svg {
    display: block;
    width: 20px;
    height: 20px;
}

.checkout-order-review__image,
.checkout-order-review__image img {
    display: block;
    width: 106px;
    height: 106px;
}

.checkout-order-review__image {
    overflow: hidden;
}

.checkout-order-review__image img {
    object-fit: cover;
}

.checkout-order-review__details {
    min-width: 0;
}

.checkout-order-review__details h3 {
    margin: 0 0 12px;
    color: #333333;
    font-family: var(--natalochka-font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.checkout-order-review__details .quantity-control.quantity-control--dropdown {
    width: 80px;
    height: 40px;
    background: #ffffff;
}

.checkout-order-review__item-total {
    align-self: center;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.checkout-order-review__subtotal,
.checkout-order-review__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    line-height: 1;
}

.checkout-order-review__subtotal {
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #28282833;
}

.checkout-order-review__total {
    padding: 20px 0;
    border-top: 1px solid #28282833;
}

.checkout-order-review__subtotal strong,
.checkout-order-review__total strong:first-child {
    font-weight: 600;
}

.checkout-order-review__subtotal span,
.checkout-order-review__total strong:last-child {
    font-weight: 400;
}

.checkout-order-review__total strong:last-child {
    font-size: 24px;
    font-weight: 600;
}

.checkout-order-review__free-shipping {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.checkout-order-review__free-shipping p {
    margin: 0 0 12px;
    color: #333333;
    font-family: var(--natalochka-font-heading);
    font-size: 16px;
    line-height: 1;
}

.checkout-order-review__free-shipping p .woocommerce-Price-amount {
    font-weight: 700;
}

.checkout-order-review__free-shipping .cart-free-shipping__track {
    height: 10px;
    background: #e6e6e6;
}

.checkout-order-review__free-shipping .cart-free-shipping__track span {
    display: block;
    height: 100%;
    min-width: 22px;
    background-color: #282828;
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%
    );
    background-repeat: repeat;
    background-size: 25px 10px;
}

.checkout-page .natalochka-checkout-submit {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin-top: 60px;
    color: #ffffff;
    background: #282828;
    font-family: var(--natalochka-font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.checkout-page .natalochka-checkout-submit:hover,
.checkout-page .natalochka-checkout-submit:focus-visible {
    color: #ffffff;
    background: #000000;
}

@media (max-width: 1024px) {
    .checkout-page__inner {
        padding-top: 16px;
        padding-bottom: 60px;
    }

    .checkout-page__inner > h1 {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .checkout-page .woocommerce-checkout {
        display: block;
    }

    .checkout-page .checkout-page__details {
        padding: 14px;
    }

    .checkout-page #customer_details {
        padding: 0;
    }

    .checkout-page .checkout-shipping {
        padding: 24px 0 0;
        margin: 24px 0 0;
    }

    .checkout-page .checkout-payment {
        margin-top: 24px;
    }

    .checkout-page .checkout-payment-heading {
        padding: 0 0 14px;
    }

    .checkout-page .woocommerce-checkout-payment {
        padding: 0;
    }

    .checkout-page #order_review {
        padding: 14px;
        margin-top: 24px;
    }

    .checkout-page .woocommerce-billing-fields h3,
    .checkout-page .checkout-shipping h3,
    .checkout-page .checkout-payment-heading {
        padding-bottom: 14px;
        font-size: 20px;
    }

    .checkout-page #payment .checkout-payment-heading {
        padding-bottom: 14px;
    }

    .checkout-page .woocommerce-billing-fields__field-wrapper {
        gap: 12px;
        padding-top: 14px;
    }

    .checkout-page .form-row input.input-text,
    .checkout-page .form-row select,
    .checkout-page .form-row textarea,
    .checkout-page .checkout-shipping select {
        min-height: 46px;
        padding: 14px;
        font-size: 14px;
    }

    .checkout-page .woocommerce-checkout-payment ul,
    .checkout-page .wc_payment_methods {
        margin-top: 14px !important;
    }

    .checkout-page .checkout-shipping li,
    .checkout-page .woocommerce-checkout-payment li {
        font-size: 16px;
    }

    .checkout-order-review__content > h2 {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .checkout-order-review__item {
        grid-template-columns: 106px minmax(0, 1fr);
        gap: 12px;
    }

    .checkout-order-review__remove {
        display: none;
    }

    .checkout-order-review__image,
    .checkout-order-review__image img {
        grid-column: 1;
        width: 106px;
        height: 106px;
    }

    .checkout-order-review__details {
        grid-column: 2;
    }

    .checkout-order-review__item-total {
        grid-column: 2;
        font-size: 16px;
        text-align: left;
    }

    .checkout-order-review__details h3 {
        font-size: 20px;
    }

    .checkout-page .natalochka-checkout-submit {
        margin-top: 60px;
    }
}
