:root {
    --pink: #f77796;
    --cyan: #0ad7d4;
    --text: #000000;
    --muted: rgba(0, 0, 0, 0.6);
    --footer-text: #364647;
    --light-bg: #f5f5f5;
    --footer-bg: #ebeced;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-deep: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
}

body.is-menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container--nav {
    max-width: 1200px;
}

.container--tilda {
    max-width: 1200px;
}

.container--narrow {
    max-width: 1000px;
}

.section {
    padding: 90px 0;
}

.section--muted {
    background: var(--light-bg);
}

.section-title {
    margin: 0;
    font-size: 42px;
    line-height: 1.23;
    font-weight: 600;
    text-align: center;
}

.section-title--left {
    text-align: center;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 90px;
    text-align: center;
}

.section-head .section-title {
    margin-bottom: 40px;
}

.section-description {
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 300;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
}

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
}

.main-header-section1{background: #efdbde;}

.main-header-section2 {    text-align: center; background: #fff; padding:15px;
    display: flex;
    align-items: center;
    justify-content: center;}


.main-header-section2 img{max-width:260px;}

.main-header__logo {
    display: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    padding: 0 15px;
    color: #4A4A4A;
    font-size: 14px;
    line-height: 40px;
    font-weight: 600;
}

.main-nav a:first-child {
    padding-left: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color:black;
}

.main-header__burger {
    display: none;
    position: relative;
    z-index: 110;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.main-header__burger span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    margin: 0;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-header__burger span:nth-child(1) {
    top: 11px;
}

.main-header__burger span:nth-child(2),
.main-header__burger span:nth-child(3) {
    top: 21px;
}

.main-header__burger span:nth-child(4) {
    top: 31px;
}

.main-header__burger[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    width: 0;
    left: 22px;
}

.main-header__burger[aria-expanded="true"] span:nth-child(2),
.main-header__burger[aria-expanded="true"] span:nth-child(3) {
    opacity: 1;
}

.main-header__burger[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(45deg);
}

.main-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.main-header__burger[aria-expanded="true"] span:nth-child(4) {
    top: 21px;
    width: 0;
    left: 22px;
}

.hero {
    position: relative; padding-top: 60px;
}

.hero__slides {
    position: relative;
}

.hero__slide {
    display: block;
    width: 100%;
    background: transparent;
}

.hero .owl-item > .hero__slide {
    display: block;
}

.hero__slide img {
    width: 100%;
    height: auto;
    object-fit: initial;
}

.hero .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: flex;
    transform: translateX(-50%);
}

.hero .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    border-radius: 20px;
    background: #869791;
    opacity: 0.5;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.hero .owl-dots .owl-dot.active span,
.hero .owl-dots .owl-dot:hover span {
    background: #869791;
    opacity: 1;
}

.hero__mobile-slide {
    display: none;
}

.hero__mobile-slide img {
    width: 100%;
    height: auto;
}

.about__grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 40px;
    align-items: center;
    min-height: 920px;
}

.about__image-wrap img {
    width: 100%;
}

.about__content {
    text-align: center;
}

.about__eyebrow {
    margin-top: 42px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--muted);
}

.about__line {
    display: block;
    width: 50px;
    height: 3px;
    margin: 14px auto 28px;
    background: #616161;
    opacity: 0.9;
}

.about__text {
    max-width: 560px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 300;
}

.about__text p {
    margin: 0 0 20px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.features__grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    text-align: center;
}

.feature-card img,
.feature-card__placeholder {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
}

.feature-card__placeholder {
    border-radius: 50%;
    background:
        center / 32px 32px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23000000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 11v42'/%3E%3Cpath d='M11 32h42'/%3E%3Cpath d='M18 18c8 1 13 6 14 14-8-1-13-6-14-14Z'/%3E%3Cpath d='M46 18c-1 8-6 13-14 14 1-8 6-13 14-14Z'/%3E%3Cpath d='M18 46c1-8 6-13 14-14-1 8-6 13-14 14Z'/%3E%3Cpath d='M46 46c-8-1-13-6-14-14 8 1 13 6 14 14Z'/%3E%3C/g%3E%3C/svg%3E");
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 300;
}

.direction-list {
    display: grid;
    gap: 0;
}

.direction-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 52px;
}

.direction-card--reverse .direction-card__media {
    order: 2;
}

.direction-card--reverse .direction-card__content {
    order: 1;
}

.direction-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.direction-card__content {
    max-width: 500px;
}

.direction-card__content h3 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
}

.direction-card__content p {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}

.pill-link,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 216px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 100px;
    background: var(--pink);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pill-link:hover,
.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(247, 119, 150, 0.25);
}

.features .section-title {
    margin-bottom: 105px;
}

.cta-banner,
.callback {
    position: relative;
    color: #ffffff;
}

.cta-banner__bg,
.callback__bg {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-banner__overlay,
.callback__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
}

.cta-banner .container,
.callback .container {
    position: relative;
    z-index: 1;
}

.cta-banner__content {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-banner__content h2 {
    max-width: 760px;
    margin: 0;
    font-size: 48px;
    line-height: 1.23;
    font-weight: 600;
}

.cta-banner__action {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 28px;
}

.cta-banner__arrow {
    position: relative;
    width: 45px;
    height: 101px;
    margin-right: 30px;
    background:
        center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 180'%3E%3Cpath fill='%23ffffff' d='M54.1 108c-.5 0-.9-.2-1.2-.6-.5-.7-.3-1.6.4-2.1 1.5-1 9.5-5.5 14.6-8.3-17.4-.5-31.3-7.3-41.3-20C9.9 55.7 9.5 24.2 14.2 3.7c.2-.8 1-1.3 1.8-1.1.8.2 1.3 1 1.1 1.8-4.6 19.9-4.2 50.3 11.8 70.8 9.5 12.2 23 18.6 39.9 18.9h.3l-3.2-4c-1.4-1.7-2.7-3.3-4.1-5.1-.7-.9-1.5-1.9-2.3-2.9-.5-.6-.4-1.6.2-2.1.6-.5 1.6-.4 2.1.2 0 0 0 .1.1.1l6.4 7.9c.5.6.9 1.1 1.4 1.7 1.5 1.8 3.1 3.6 4.3 5.5 0 .1.1.1.1.2.1.2.1.3.2.5v.3c0 .2 0 .3-.1.5 0 .1-.1.1-.1.2-.1.2-.2.3-.3.4-.1.1-.2.1-.3.2 0 0-.1 0-.2.1-.9.4-16 8.6-18.2 10.1-.4 0-.7.1-1 .1z'/%3E%3C/svg%3E");
}

.cta-button {
    min-width: 240px;
    border-radius: 5px;
    background: var(--cyan);
}

.cta-button:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.geo {
    padding-bottom: 0;
}

.geo__map {
    margin-top: 60px;
    min-height: 468px;
}

.steps {
    display: grid;
    gap: 0;
}

.step-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.step-card__num {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    color: var(--pink);
    font-size: 28px;
    font-weight: 500;
}

.step-card__body h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 500;
}

.step-card__body p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}

.callback__overlay {
    background: var(--overlay-deep);
}

.callback__inner {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 0;
    text-align: center;
}

.callback__inner h2 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
}

.callback__inner p {
    max-width: 600px;
    margin: 0 0 32px;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 300;
}

#callback-form {
    width: min(100%, 800px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    margin: 0 auto;
}

#callback-form .callback-form__message,
#callback-form .callback-form__error {
    grid-column: 1 / -1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background-clip: padding-box;
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

#callback-form .callback-form__message {
    background: rgba(10, 215, 212, 0.18);
}

#callback-form .callback-form__error {
    background: rgba(247, 119, 150, 0.18);
}

#callback-form .callback-form__field {
    position: relative;
    display: grid;
    gap: 8px;
}

#callback-form input,
#callback-form select,
#callback-form button {
    width: 100%;
    min-height: 58px;
    padding: 0 21px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 12px;
    background: rgba(70, 52, 47, 0.34);
    color: #ffffff;
    font: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#callback-form input,
#callback-form select {
    font-size: 16px;
    font-weight: 400;
}

#callback-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

#callback-form input:hover,
#callback-form select:hover {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(82, 61, 55, 0.4);
}

#callback-form input:focus,
#callback-form select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(92, 68, 62, 0.46);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

#callback-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 56px;
    color: #ffffff;
    background:
        right 22px center / 11px 7px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M1 1.25 6 6.25 11 1.25'/%3E%3C/svg%3E"),
        rgba(70, 52, 47, 0.34);
    cursor: pointer;
}

#callback-form select option {
    color: #000000;
}

#callback-form .callback-form__field-error {
    min-height: 0;
    padding-left: 2px;
    color: #ffd8df;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
}

#callback-form .callback-form__field-error:empty {
    display: none;
}

#callback-form button {
    grid-column: span 2;
    justify-self: center;
    width: 100%;
    min-height: 60px;
    max-width: 280px;
    border: 0;
    border-radius: 12px;
    background: var(--cyan);
    color: #ffffff;
    letter-spacing: 0.03em;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(10, 215, 212, 0.34);
}

#callback-form button:hover {
    background: #12e5e2;
    transform: translateY(-1px);
}

#callback-form button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 18px 40px rgba(10, 215, 212, 0.28);
}

#callback-form button:active {
    transform: translateY(0);
}

.legal-card {
    background: var(--light-bg);
    padding: 36px 32px;
}

.legal-card h2 {
    margin: 0 0 30px;
    text-align: center;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
}

.legal-card__content {
    display: grid;
    gap: 26px;
}

.legal-card__item p {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}

.main-footer {
    padding: 50px 0;
    background: var(--footer-bg);
}

.main-footer__inner {
    display: grid;
    grid-template-columns: 2fr 9fr;
    gap: 24px;
}

.main-footer__logo {
    text-align: center;
    color: var(--footer-text);
}

.main-footer__logo img {
    max-width: 80px;
    margin: 0 auto 4px;
}

.main-footer__logo span {
    display: block;
    max-width: 175px;
    margin: 5px auto 0;
    padding-top: 5px;
    font-size: 14px;
    line-height: 1.45;
}

.main-footer__shops {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.main-footer__address {
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 12px;
    color: var(--footer-text);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
}

.main-footer__address::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    height: 2px;
    background: var(--footer-text);
}

.main-footer__meta {
    color: var(--footer-text);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .about__grid {
        grid-template-columns: 460px 1fr;
        min-height: 820px;
    }

    .section-title {
        font-size: 38px;
    }

    .about__text {
        font-size: 18px;
    }

    .features__grid {
        gap: 18px;
    }

    .feature-card h3 {
        font-size: 22px;
    }

    .main-footer__inner {
        grid-template-columns: 1fr;
    }

    .main-footer__shops {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 959px) {
    .main-header__burger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: grid;
        padding: 80px 20px 24px;
        background: rgba(0, 0, 0, 0.94);
        z-index: 90;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .hero__slides {
        display: none !important;
    }

    .main-nav.is-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 14px 0;
        line-height: 1.2;
    }

    .main-header__logo {
        display: inline-block;
    }

    .hero__slides {
        display: none;
    }

    .hero {
        display:
    }

    .hero__mobile-slide {
        margin-top: 60px;
        display: block;
    }
    .hero__mobile-slide {
        margin-top: -16px;
        display: block;
    }

    .about__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 32px;
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .section-description {
        font-size: 20px;
    }

    .features__grid,
    .features__grid--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .direction-card,
    .direction-card--reverse {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 40px;
    }

    .direction-card--reverse .direction-card__media,
    .direction-card--reverse .direction-card__content {
        order: initial;
    }

    .direction-card__content {
        max-width: none;
    }

    .cta-banner__content h2,
    .callback__inner h2 {
        font-size: 32px;
    }

    .callback__inner p {
        font-size: 20px;
    }

    #callback-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #callback-form button {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 639px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.05;
    }

    .features .section-title {
        margin-bottom: 45px;
    }

    .section-head {
        margin-bottom: 45px;
    }

    .section-head .section-title {
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.4;
    }

    .about__eyebrow {
        font-size: 12px;
        line-height: 1.45;
    }

    .about__text,
    .step-card__body p,
    .legal-card__item p {
        font-size: 16px;
        line-height: 1.45;
    }

    .features__grid,
    .features__grid--three {
        grid-template-columns: 1fr;
    }

    .feature-card h3,
    .direction-card__content h3,
    .step-card__body h3 {
        font-size: 24px;
    }

    .direction-card__content p {
        font-size: 16px;
    }

    .cta-banner__action {
        flex-direction: column;
        gap: 20px;
    }

    .cta-banner__arrow {
        width: 20px;
        height: 45px;
        margin-right: 0;
    }

    .geo__map {
        min-height: 360px;
    }

    .step-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .legal-card {
        padding: 28px 20px;
    }

    .main-footer {
        padding: 40px 0;
    }

    .main-footer__inner {
        gap: 36px;
    }

    .main-footer__shops {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-footer__address::before {
        left: 50%;
        margin-left: -80px;
    }
}

/* Product Page */

.page-product {
    font-size: 16px;
    line-height: 1;
    color: #191918;
    background:
        radial-gradient(circle at top left, rgba(226, 214, 194, 0.55), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
    padding-top: 104px;
}

.page-product figure {
    margin: 0;
    padding: 0;
}

.page-product svg {
    display: block;
    max-width: 100%;
}

.page-product .container--content {
    max-width: 1050px;
}

.page-product .product-page {
    padding-bottom: 72px;
}

.page-product .product-hero {
    padding: 24px 0 0;
}

.page-product .product-gallery {
    display: grid;
    align-items: center;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
}

.page-product .product-gallery__item {
    overflow: hidden;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(15, 15, 15, 0.08);
}

.page-product .product-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-product .product-gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: 3 / 4;
    height: 100%;
    width: 100%;
    background: #ffffff;
}

.page-product .product-gallery__item--tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-product .product-gallery__item--text {
    grid-column: span 2;
    min-height: 100%;
    padding: 40px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    background: transparent;
}

.page-product .product-hero__eyebrow {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #5a5a54;
}

.page-product .product-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-product .product-hero__description {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.45;
}

.page-product .product-hero__description p {
    margin: 0;
}

.page-product .product-hero__meta {
    margin-top: 10px !important;
    font-weight: 500;
}

.page-product .product-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.page-product .product-actions--mobile {
    display: none;
    justify-content: space-between;
    max-width: 1050px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.page-product .round-button,
.page-product .pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid #191918;
    color: #191918;
    background: transparent;
}

.page-product .round-button {
    width: 40px;
    min-width: 40px;
    border-radius: 999px;
}

.page-product .round-button svg {
    width: 12px;
    height: 12px;
}

.page-product .pill-button {
    padding: 0 40px;
    border-radius: 999px;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-product .round-button:hover,
.page-product .round-button:focus-visible,
.page-product .pill-button:hover,
.page-product .pill-button:focus-visible {
    background: #000000;
    color: #ffffff;
}

.page-product .round-button--disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
    background: transparent;
    color: #191918;
}

.page-product .wide-banner {
    margin: 20px auto 0;
}

.page-product .wide-banner img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 24px 80px rgba(15, 15, 15, 0.08);
}

/* Catalog Page */

.page-catalog .catalog-page {
    padding-top: 100px;
    padding-bottom: 40px;
}

.page-catalog .catalog-hero {
    padding-top: 40px;
}

.page-catalog .catalog-hero__head {
    max-width: 980px;
    margin: 0 auto 0;
    text-align: center;
}

.page-catalog .catalog-hero__head .section-title {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.23;
}

.page-catalog .catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 20px;
}

.page-catalog .catalog-tabs__item {
    flex: 1 1 auto;
    min-height: 30px;
    border: 1px solid #000;
    border-radius: 2px;
    background: transparent;
    padding: 0 14px;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    cursor: pointer;
    color: black !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-catalog .catalog-tabs__item:hover,
.page-catalog .catalog-tabs__item.is-active {
    background: #000;
    color: #fff !important;
}

.page-catalog .catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    width: 100%;
}

.page-catalog .catalog-card {
    position: relative;
}

.page-catalog .catalog-card.is-hidden {
    display: none;
}

.page-catalog .catalog-card__media {
    position: relative;
}

.page-catalog .catalog-card__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 2px;
}

.page-catalog .catalog-card__sticker {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    color: #fff;
    background: #bfcc80;
}

.page-catalog .catalog-card__sticker svg {
    width: 10px;
    height: 10px;
}

.page-catalog .catalog-card__body {
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
}

.page-catalog .catalog-card__title {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
}

.page-catalog .catalog-card__title:hover {
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .page-catalog .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 959px) {
    .page-product {
        padding-top: 88px;
    }

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

    .page-product .product-gallery__item--tall {
        grid-row: auto;
    }

    .page-product .product-gallery__item--text {
        grid-column: auto;
        padding: 28px 20px;
    }

    .page-product .product-actions--desktop {
        display: none;
    }

    .page-product .product-actions--mobile {
        display: flex;
    }

    .page-catalog .catalog-page {
        padding-top: 88px;
    }

    .page-catalog .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 16px;
        row-gap: 28px;
    }
    
    .main-header-section2{display:none;}
    
    .main-header__inner {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: space-between;
}
.main-header__logo{color:black;}
.main-header__burger span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    margin: 0;
    background: #000;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-header__logo img{height:35px;}
.main-nav {
        position: fixed;
        top: 45px;
        left: 0;
        right: 0;
        display: grid;
        padding: 13px 20px 24px;
        background: #fff;
        z-index: 90;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }
    
}

@media (max-width: 767px) {
       .page-product {
        font-size: 13px;
        padding-top: 50px;
    }

    .page-product .product-gallery__item--text {
        font-size: 12px;
    }

    .page-product .product-hero h1 {
        margin-bottom: 16px;
        font-size: 20px;
    }

    .page-product .product-hero__description {
        font-size: 13px;
    }

    .page-product .pill-button {
        padding: 0 28px;
        font-size: 16px;
    }

    .page-product .product-actions--mobile {
        gap: 12px;
        padding: 0 20px;
    }

    .page-catalog .catalog-page {
        padding-top: 30px;
    }

    .page-catalog .catalog-hero__head .section-title {
        font-size: 20px;
    }

    .page-catalog .catalog-tabs {
        gap: 5px;
        margin: 40px 0 2px;
    }

    .page-catalog .catalog-tabs__item:nth-child(1),
    .page-catalog .catalog-tabs__item:nth-child(2) {
        flex-basis: calc(50% - 3px);
    }

    .page-catalog .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 20px;
        margin-top: 20px;
    }

    .page-catalog .catalog-card__title {
        font-size: 14px;
    }
}

.g-recaptcha{    grid-column: span 2; margin: 0 auto;}
