@font-face {
    font-family: "Oswald Local";
    src: url("../fonts/Oswald.ttf") format("truetype");
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f7efe7;
    --surface: rgba(255, 250, 245, 0.88);
    --surface-strong: #fff8f2;
    --surface-soft: #f1e3d7;
    --ink: #2f1f1d;
    --muted: #786560;
    --accent: #b6404b;
    --accent-dark: #8f2832;
    --outline: rgba(99, 57, 45, 0.12);
    --shadow: 0 24px 60px rgba(81, 43, 37, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --container: 1180px;
    --display-font: "Oswald Local", sans-serif;
    --display-font-weight: 500;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 219, 205, 0.9), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(255, 245, 206, 0.85), transparent 24%),
        linear-gradient(180deg, #fbf5ee 0%, var(--bg) 100%);
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 214, 199, 0.96), transparent 34%),
        linear-gradient(135deg, #fff8f2 0%, #f7eadf 52%, #fff5d8 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 360ms ease, visibility 360ms ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__mark {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid rgba(182, 64, 75, 0.16);
    border-top-color: var(--accent);
    box-shadow: 0 18px 46px rgba(182, 64, 75, 0.2);
    animation: preloader-spin 760ms linear infinite;
}

@keyframes preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-preloader__mark {
        animation: none;
    }
}

img {
    display: block;
    width: 100%;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

video {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

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

button,
a.button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(247, 239, 231, 0.72);
    border-bottom: 1px solid rgba(79, 42, 34, 0.08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.brand__badge,
.eyebrow,
.footer__eyebrow,
.modal__eyebrow,
.product-card__category {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.brand__name {
    font-size: 22px;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.main-nav__link:hover,
.footer__link:hover {
    color: var(--accent);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contacts__phone {
    font-size: 14px;
    font-weight: 700;
}

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

.page-hero--fit {
    height: calc(100svh - var(--fit-hero-header-offset, 84px));
    min-height: 0;
    overflow: hidden;
}

.page-hero__fit-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero__fit-target {
    transform-origin: center center;
}

.page-hero--product {
    min-height: auto;
}

.hero__grid,
.page-hero__grid,
.about-layout,
.info-grid,
.contacts-grid,
.footer__grid,
.preview-banner {
    display: grid;
    gap: 28px;
}

.hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
}

.hero__content h1,
.page-hero h1,
.section h2,
.modal h2 {
    margin: 0;
    font-family: var(--display-font);
    font-weight: var(--display-font-weight);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero__content h1 {
    font-size: clamp(52px, 7vw, 88px);
    max-width: 12ch;
}

.page-hero h1,
.section h2,
.modal h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.hero__text,
.lead,
.modal__text,
.contact-panel p,
.card p,
.advantage p,
.note-card,
.info-card,
.footer p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.hero__badges,
.occasion-list,
.filter-row,
.footer__links,
.hero__actions,
.modal__actions,
.contact-panel__actions,
.preview-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__badges {
    margin-bottom: 18px;
}

.pill,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--outline);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fffaf8;
    font-weight: 700;
    font-size: 15px;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
    box-shadow: 0 12px 26px rgba(182, 64, 75, 0.2);
}

.button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
    border: 1px solid var(--outline);
    box-shadow: none;
}

.button--ghost:hover {
    color: #fffaf8;
}

.button--small {
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
}

.button--telegram {
    background: #2992d1;
}

.button--max {
    background: #871db8;
    box-shadow: 0 12px 26px rgba(135, 29, 184, 0.24);
}

.button--max:hover {
    background: #7318a0;
}

.button--whatsapp {
    background: #2ab36b;
}

.button--telegram:hover {
    background: #257eb4;
}

.button--whatsapp:hover {
    background: #23975a;
}

.hero__visual {
    position: relative;
    min-height: 560px;
}

.hero-card {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(247, 228, 217, 0.96));
    border: 1px solid rgba(117, 71, 58, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card--main {
    inset: 10px 78px 48px 0;
}

.hero-card--accent {
    width: 48%;
    right: 0;
    bottom: 0;
}

.section {
    padding: 34px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.8), rgba(244, 231, 220, 0.82));
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.grid {
    display: grid;
    gap: 20px;
}

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

.grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.advantage,
.info-card,
.contact-panel,
.note-card,
.preview-banner,
.zone-list__note,
.zone-list__item {
    background: rgba(255, 250, 245, 0.88);
    border: 1px solid var(--outline);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.card,
.advantage,
.info-card,
.contact-panel {
    padding: 24px;
}

.card--category img,
.product-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #f4d8d0, #fff2e9);
}

.card h3,
.product-card h3,
.advantage h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.card__link {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 700;
}

.product-card {
    position: relative;
    padding: 18px;
    display: flex;
    flex-direction: column;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card--tall img {
    aspect-ratio: 4 / 5.5;
}

.product-card__image-link {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    aspect-ratio: 4 / 5.5;
    background: linear-gradient(135deg, #f4d8d0, #fff2e9);
}

.product-card__image-link img,
.product-card__image {
    margin-bottom: 0;
    pointer-events: none;
    transition: transform 900ms ease, opacity 520ms ease;
    will-change: transform, opacity;
}

.crop-managed-media {
    position: absolute;
    max-width: none;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0 !important;
    object-fit: unset !important;
}

.product-card:hover {
    transform: translateY(-4px) scale(1.008);
    box-shadow: 0 30px 70px rgba(81, 43, 37, 0.16);
    border-color: rgba(182, 64, 75, 0.18);
}

.product-card:hover .product-card__image {
    transform: scale(1.035);
}

.product-card__image.is-switching {
    opacity: 0.22;
}

.product-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.92);
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
}

.product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
}

.product-card__price {
    font-size: 22px;
    font-weight: 800;
}

.product-card--compact h3 {
    min-height: 56px;
    font-size: 20px;
}

.product-card h3 a {
    color: inherit;
}

.product-card__category,
.product-card h3 {
    margin-bottom: 0;
}

.product-card__category + h3 {
    margin-top: 10px;
}

.product-card__image-link + .product-card__category,
.product-card__image-link + h3 {
    margin-top: 18px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.product-gallery,
.product-summary,
.product-gallery__main,
.product-gallery__thumb,
.product-extra-card {
    background: rgba(255, 250, 245, 0.88);
    border: 1px solid var(--outline);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.product-gallery,
.product-summary {
    padding: 24px;
}

.product-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-summary h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.product-summary .eyebrow {
    margin: 0;
}

.product-summary .pill {
    align-self: flex-start;
    margin-top: 0;
}

.product-summary .lead {
    margin: 0;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.68;
    color: var(--muted);
}

.product-summary .hero__actions {
    margin-top: 4px;
}

.product-gallery__main,
.product-gallery__thumb,
.product-extra-card__button,
.lightbox__close,
.lightbox__nav {
    border: none;
    padding: 0;
    cursor: pointer;
}

.product-gallery__main img,
.product-gallery__main video {
    object-fit: cover;
    display: block;
}

.product-gallery__main {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5.5;
    background: transparent;
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
}

.product-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 28px) / 3);
    gap: 14px;
    margin-top: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding: 2px 0;
    scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery__main-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 34px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(99, 57, 45, 0.12);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.92);
    color: var(--accent);
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(81, 43, 37, 0.1);
    transform: translateY(-50%);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    pointer-events: auto;
}

.product-gallery__main-arrow--prev {
    left: 12px;
}

.product-gallery__main-arrow--next {
    right: 12px;
}

.product-gallery__main:hover .product-gallery__main-arrow {
    background: rgba(255, 250, 245, 0.98);
}

.product-gallery__main-arrow:hover {
    background: rgba(255, 250, 245, 0.98);
    color: var(--accent);
}

.product-gallery__main-arrow--prev:hover {
    animation: gallery-arrow-left 680ms ease-in-out infinite;
}

.product-gallery__main-arrow--next:hover {
    animation: gallery-arrow-right 680ms ease-in-out infinite;
}

@keyframes gallery-arrow-left {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-4px);
    }
}

@keyframes gallery-arrow-right {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(4px);
    }
}

.product-gallery__thumb {
    display: block;
    width: 100%;
    background: transparent;
    padding: 10px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    scroll-snap-align: start;
}

.product-gallery__thumb-media {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1 / 1.15;
    background: linear-gradient(135deg, #f4d8d0, #fff2e9);
}

.product-gallery__thumb img,
.product-gallery__thumb video {
    object-fit: cover;
    margin-bottom: 0;
    width: 100%;
    display: block;
}

.product-gallery__thumb--video {
    position: relative;
}

.product-gallery__video-thumb-mark {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(28, 18, 22, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.product-gallery__thumb:hover,
.product-gallery__thumb--active {
    transform: translateY(-2px);
    border-color: rgba(135, 29, 184, 0.35);
    box-shadow: 0 18px 36px rgba(71, 37, 78, 0.12);
}

.product-summary__price {
    margin: 0;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1;
    font-weight: 800;
}

.product-summary__composition {
    padding: 16px 18px;
    border: 1px solid rgba(99, 57, 45, 0.12);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 244, 236, 0.82));
}

.product-summary__composition-label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-summary__composition p {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.65;
}

@media (min-width: 1081px) {
    .page-hero--product {
        --product-detail-gap: clamp(16px, 1.45vw, 24px);
        --product-detail-card-width: min(560px, calc((100svh - 170px) / 1.62), calc((100vw - 132px) / 2));
        --product-detail-summary-width: min(820px, calc(var(--product-detail-card-width) + 280px), calc(100vw - var(--product-detail-card-width) - var(--product-detail-side-gap) - 48px));
        --product-detail-side-gap: clamp(36px, 5vw, 88px);
        min-height: calc(100svh - 104px);
        padding: clamp(14px, 2vh, 24px) 0;
        display: flex;
        align-items: center;
    }

    .page-hero--product .product-layout {
        width: 100%;
        max-width: calc(var(--product-detail-card-width) + var(--product-detail-summary-width) + var(--product-detail-side-gap));
        margin-inline: auto;
        grid-template-columns: var(--product-detail-card-width) var(--product-detail-summary-width);
        gap: var(--product-detail-side-gap);
        align-items: stretch;
        justify-content: center;
    }

    .page-hero--product .product-gallery {
        width: var(--product-detail-card-width);
        max-width: var(--product-detail-card-width);
        padding: var(--product-detail-gap);
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-self: center;
    }

    .page-hero--product .product-summary {
        width: var(--product-detail-summary-width);
        max-width: var(--product-detail-summary-width);
        padding: var(--product-detail-gap);
        gap: var(--product-detail-gap);
        justify-content: flex-start;
        justify-self: center;
    }

    .page-hero--product .product-summary h1 {
        font-size: clamp(34px, 3.25vw, 50px);
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .page-hero--product .product-summary .lead {
        font-size: clamp(16px, 1.05vw, 17px);
        line-height: 1.62;
        overflow-wrap: anywhere;
    }

    .page-hero--product .product-summary__price {
        font-size: clamp(27px, 2.35vw, 32px);
    }

    .page-hero--product .product-summary__composition {
        padding: var(--product-detail-gap);
        overflow-wrap: anywhere;
    }

    .page-hero--product .product-gallery__main {
        height: auto;
        aspect-ratio: 4 / 5.5;
    }

    .page-hero--product .product-gallery__thumbs {
        grid-auto-columns: calc((100% - 24px) / 3);
        gap: calc(var(--product-detail-gap) / 2);
        margin-top: var(--product-detail-gap);
        padding: 2px 0;
    }

    .page-hero--product .product-gallery__thumb {
        padding: 8px;
    }

    .page-hero--product .product-gallery__thumb-media {
        aspect-ratio: 1 / 1.15;
    }

}

.product-extra-card img {
    aspect-ratio: 4 / 5.2;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 14px;
}

.product-extra-card__button {
    display: block;
    width: 100%;
    background: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 5.5;
}

.product-extra-card__button img {
    transition: transform 180ms ease;
}

.product-extra-card__button:hover img {
    transform: scale(1.02);
}

.product-extra-card img {
    margin-bottom: 0;
}

.about-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.advantage-stack,
.notes-panel__list {
    display: grid;
    gap: 16px;
}

.preview-banner {
    padding: 28px;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.page-hero__grid {
    grid-template-columns: 1fr minmax(280px, 420px);
    align-items: center;
}

.page-hero__art {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 249, 243, 0.95), rgba(245, 229, 219, 0.92));
    border: 1px solid var(--outline);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.page-hero--narrow .container {
    max-width: 900px;
}

.filter-chip {
    border: none;
    box-shadow: none;
}

.filter-chip--active {
    background: var(--accent);
    color: #fff;
}

.subcategory-picker {
    position: relative;
    z-index: 4;
    width: min(100%, 440px);
    margin: 0 0 26px;
}

.subcategory-picker__toggle {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 22px;
    border: 1px solid rgba(99, 57, 45, 0.14);
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.92);
    box-shadow: 0 18px 46px rgba(81, 43, 37, 0.1);
    color: var(--ink);
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.subcategory-picker__toggle:hover,
.subcategory-picker.is-open .subcategory-picker__toggle {
    transform: translateY(-1px);
    border-color: rgba(182, 64, 75, 0.28);
    box-shadow: 0 24px 58px rgba(81, 43, 37, 0.14);
}

.subcategory-picker__chevron {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 220ms ease;
}

.subcategory-picker.is-open .subcategory-picker__chevron {
    transform: rotate(225deg) translateY(-2px);
}

.subcategory-picker__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(99, 57, 45, 0.12);
    border-radius: 24px;
    background: rgba(255, 250, 245, 0.98);
    box-shadow: 0 26px 70px rgba(81, 43, 37, 0.18);
    transform-origin: top;
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.subcategory-picker.is-open .subcategory-picker__menu {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.subcategory-picker__item {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.subcategory-picker__item:hover,
.subcategory-picker__item--active {
    background: rgba(182, 64, 75, 0.1);
    color: var(--accent);
    transform: translateX(3px);
}

.product-grid--revealed {
    animation: product-grid-reveal 320ms ease both;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px solid var(--outline);
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 245, 0.86);
    box-shadow: var(--shadow);
}

.empty-state--select {
    max-width: 620px;
}

.empty-state h2 {
    margin: 0 0 8px;
    font-family: var(--display-font);
    font-weight: var(--display-font-weight);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

@keyframes product-grid-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-grid,
.contacts-grid,
.footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.9;
}

.zone-list {
    display: grid;
    gap: 12px;
}

.zone-list__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
}

.zone-list__note {
    padding: 16px 18px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.55;
}

.notes-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
}

.contact-panel--soft {
    background: linear-gradient(180deg, rgba(255, 252, 249, 0.94), rgba(247, 233, 225, 0.94));
}

.feedback-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 12px 16px 12px 12px;
    border: 1px solid rgba(41, 146, 209, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 34px rgba(81, 43, 37, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.feedback-link:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 146, 209, 0.34);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 42px rgba(81, 43, 37, 0.12);
}

.feedback-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(41, 146, 209, 0.1);
    flex: 0 0 auto;
}

.feedback-link__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feedback-link__title,
.feedback-link__hint {
    display: block;
    line-height: 1.25;
}

.feedback-link__title {
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}

.feedback-link__hint {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.footer {
    padding: 26px 0 44px;
}

.footer__social-copy {
    max-width: 440px;
    margin: 0 0 16px;
}

.footer__socials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.footer-social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 78px;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid rgba(177, 91, 94, 0.16);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 236, 0.9));
    box-shadow: 0 16px 34px rgba(81, 43, 37, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.footer-social::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(184, 70, 78, 0.08), rgba(255, 214, 177, 0.12));
    opacity: 0;
    transition: opacity 200ms ease;
    pointer-events: none;
}

.footer-social:hover {
    transform: translateY(-3px);
    border-color: rgba(182, 64, 75, 0.24);
    box-shadow: 0 20px 40px rgba(81, 43, 37, 0.12);
}

.footer-social:hover::after {
    opacity: 1;
}

.footer-social__icon,
.footer-social__content {
    position: relative;
    z-index: 1;
}

.footer-social__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 8px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 0 0 1px rgba(99, 57, 45, 0.08);
    flex-shrink: 0;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-social:hover .footer-social__icon {
    transform: scale(1.05);
    box-shadow: inset 0 0 0 1px rgba(182, 64, 75, 0.14), 0 10px 22px rgba(81, 43, 37, 0.1);
}

.footer-social__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social--telegram .footer-social__icon img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(82%) saturate(1092%) hue-rotate(168deg) brightness(95%) contrast(99%);
}

.footer-social--vk .footer-social__icon img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(82%) saturate(1546%) hue-rotate(208deg) brightness(93%) contrast(92%);
}

.footer-social__content {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.footer-social__title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    white-space: nowrap;
}

.footer-social__hint {
    font-size: 12px;
    line-height: 1.3;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, visibility 160ms ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(39, 19, 21, 0.42);
}

.modal__dialog {
    position: relative;
    width: min(100%, 560px);
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fffaf7, #f7e7dc);
    box-shadow: 0 40px 120px rgba(38, 18, 20, 0.28);
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.72);
    font-size: 28px;
    color: var(--ink);
}

.modal__note {
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.modal__actions .button {
    transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.modal__actions .button:hover {
    transform: scale(1.06);
    background: #c9c9c9;
    color: #241f23;
    box-shadow: 0 14px 28px rgba(78, 72, 76, 0.18);
}

.modal__actions--messengers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.modal__actions--messengers .button--icon {
    min-height: 86px;
    padding: 14px 20px;
    width: 100%;
    border-radius: 26px;
}

.modal__actions--messengers .button--icon img {
    width: 100%;
    height: 42px;
    object-fit: contain;
    display: block;
}

.modal__actions--messengers .button--max img {
    height: 38px;
}

.modal__actions--messengers .button--whatsapp img {
    filter: brightness(0) invert(1);
}

body.modal-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 16, 29, 0.78);
}

.lightbox__dialog {
    position: relative;
    z-index: 1;
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    width: auto;
    max-width: calc(100vw - 40px);
}

.lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 48px rgba(16, 8, 22, 0.24);
    touch-action: pan-y;
    overflow: hidden;
}

.lightbox__image {
    width: auto;
    max-width: min(100%, 760px);
    max-height: calc(78vh - 20px);
    object-fit: contain;
    border-radius: 18px;
    display: block;
}

.lightbox__video {
    width: auto;
    max-width: min(100%, 760px);
    max-height: calc(78vh - 20px);
    border-radius: 18px;
    display: block;
    background: #000;
}

.product-gallery__main [hidden],
.lightbox__figure [hidden] {
    display: none !important;
}



.lightbox__caption {
    margin-top: 8px;
    text-align: center;
}

.lightbox__title {
    display: inline-block;
    margin: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(79, 42, 34, 0.08);
    font-size: 15px;
    font-weight: 700;
    color: #1c1216;
    box-shadow: 0 12px 28px rgba(17, 9, 23, 0.16);
}

.lightbox__close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    font-size: 30px;
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(17, 9, 23, 0.25);
}

.lightbox__nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 249, 245, 0.96);
    font-size: 42px;
    line-height: 1;
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(17, 9, 23, 0.25);
}

@media (max-width: 1080px) {
    .page-hero--fit {
        height: auto;
        overflow: visible;
    }

    .page-hero__fit-stage {
        height: auto;
        display: block;
    }

    .page-hero__fit-target {
        transform: none !important;
    }

    .grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid--3,
    .hero__grid,
    .page-hero__grid,
    .product-layout,
    .about-layout,
    .info-grid,
    .contacts-grid,
    .notes-panel,
    .footer__grid,
    .preview-banner {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 420px;
    }

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

    .product-layout {
        gap: 18px;
    }

    .product-gallery,
    .product-summary {
        width: 100%;
    }

    .page-hero--product .product-gallery {
        width: min(100%, 450px);
        margin-inline: auto;
    }

    .page-hero--product .product-summary {
        width: min(100%, 720px);
        margin-inline: auto;
    }
}

@media (max-width: 820px) {
    .topbar__inner,
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav,
    .header-contacts {
        width: 100%;
        justify-content: flex-start;
    }

    .lightbox__dialog {
        grid-template-columns: 1fr;
    }

    .lightbox__nav {
        display: none;
    }

    .modal__actions--messengers {
        grid-template-columns: 1fr;
    }

    .footer__socials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .hero__content h1 {
        font-size: 54px;
    }

    .page-hero h1,
    .section h2,
    .modal h2 {
        font-size: 42px;
    }

    .grid--4,
    .grid--3 {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 300px;
    }

    .hero-card--main {
        inset: 0 56px 28px 0;
    }

    .hero-card--accent {
        width: 52%;
    }

    .product-card__bottom {
        flex-direction: row;
        align-items: center;
    }

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

    .product-gallery,
    .product-summary {
        padding: 16px;
        border-radius: 22px;
    }

    .page-hero--product .product-gallery {
        width: min(100%, 420px);
    }

    .product-gallery__thumbs {
        grid-auto-columns: calc((100% - 20px) / 3);
        gap: 10px;
        margin-top: 12px;
    }

    .product-gallery__main-arrow {
        width: 30px;
        height: 54px;
        font-size: 30px;
    }

    .product-gallery__thumb {
        padding: 7px;
    }

    .product-summary h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .product-summary .lead {
        font-size: 16px;
        line-height: 1.58;
    }

    .product-summary__composition {
        padding: 14px;
    }

    .product-summary .hero__actions .button {
        width: 100%;
        justify-content: center;
    }

    .footer__social-copy {
        max-width: 100%;
    }

    .footer__socials {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-social {
        min-height: 72px;
        padding: 11px 12px;
        gap: 9px;
    }

    .footer-social__icon {
        width: 42px;
        height: 42px;
        padding: 7px;
    }

    .footer-social__title {
        font-size: 14px;
    }

    .footer-social__hint {
        font-size: 11px;
    }
}
