* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #222;
}

.container {
    max-width: 1000px;
    padding: 16px;
    margin: 0 auto;
}

header {
    border-bottom: none;
}

h1 {
    margin: 0 0 8px;
}

.muted {
    color: #777;
    font-size: 0.9rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.order-form {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.order-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

button {
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    background: #2a7;
    color: white;
    cursor: pointer;
}

button:hover {
    opacity: .9;
}

.bg-cream {
    background-color: #fffdf8 !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(33, 35, 38, 0.08);
}

.site-header__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header__bar {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 68px;
}

.site-header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(31, 35, 40, 0.18);
    border-radius: 12px;
    background: #fff;
    color: #1F2328;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header__burger:focus-visible {
    outline: 2px solid #E96A5A;
    outline-offset: 2px;
}

.site-header__burger:hover {
    border-color: rgba(233, 106, 90, 0.6);
    box-shadow: 0 8px 16px rgba(23, 26, 31, 0.12);
}

.site-header__burger-icon,
.site-header__burger-icon::before,
.site-header__burger-icon::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__burger-icon {
    position: relative;
}

.site-header__burger-icon::before,
.site-header__burger-icon::after {
    position: absolute;
    left: 0;
}

.site-header__burger-icon::before {
    transform: translateY(-6px);
}

.site-header__burger-icon::after {
    transform: translateY(6px);
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1F2328;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.site-header__logo:hover {
    color: #E96A5A;
}

.site-header__logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.site-header__logo-text {
    font-size: 1.05rem;
}

.site-header__nav {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.site-header__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-header__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 4px 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1F2328;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
    color: #E96A5A;
    border-bottom-color: #E96A5A;
}

.site-header__nav-link.active {
    color: #E96A5A;
    border-bottom-color: #E96A5A;
    font-weight: 600;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F08A74, #E96A5A);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(233, 106, 90, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(233, 106, 90, 0.3);
    color: #fff;
}

.site-header__icon-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #1F2328;
    border: 1px solid rgba(31, 35, 40, 0.12);
    font-size: 1.3rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header__icon-button:hover,
.site-header__icon-button:focus-visible {
    color: #E96A5A;
    border-color: rgba(233, 106, 90, 0.6);
    box-shadow: 0 10px 20px rgba(23, 26, 31, 0.12);
}

.site-header__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #1F2328;
    border: 1px solid rgba(31, 35, 40, 0.12);
    font-size: 1.35rem;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header__cart:hover,
.site-header__cart:focus-visible {
    color: #E96A5A;
    border-color: rgba(233, 106, 90, 0.6);
    box-shadow: 0 10px 20px rgba(23, 26, 31, 0.12);
}

@media (min-width: 992px) {
    .site-header__icon-group {
        display: none;
    }
}

.site-header__badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 20px;
    padding: 2px 6px;
    border-radius: 12px;
    background: #E96A5A;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
}

.site-header__cart-icon {
    line-height: 1;
}

@media (min-width: 992px) {
    .site-header__burger {
        display: none;
    }

    .site-header__bar {
        gap: 32px;
    }

    .site-header__container {
        padding: 0 32px;
    }

    .site-header__nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .site-header__container {
        padding: 0 20px;
    }

    .site-header__bar {
        flex-wrap: wrap;
        row-gap: 12px;
        justify-content: space-between;
    }

    .site-header__nav {
        order: 3;
        width: 100%;
        background: rgba(255, 253, 248, 0.97);
        border-radius: 16px;
        border: 1px solid rgba(31, 35, 40, 0.08);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    }

    .site-header__nav.collapse:not(.show) {
        display: none;
    }

    .site-header__nav.show {
        display: block;
        padding: 12px 0;
    }

    .site-header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 4px 20px;
    }

    .site-header__nav-link {
        padding-bottom: 8px;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__logo-text {
        display: none;
    }

    .site-header__logo {
        margin: 0 auto;
    }

    .site-header__actions {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .site-header__icon-group {
        gap: 10px;
    }

    .site-header__icon-button[href^="tel"] {
        display: none;
    }
}


/* HERO */
.hero-wrap {
    position: relative;
    min-height: clamp(420px, 60vh, 680px);
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/static/img/hero.png") center/cover no-repeat;
    transform: scale(1.03);
    /* лёгкий параллакс */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 60%, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55)),
        linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, .15));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-eyebrow {
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .9;
    font-size: .9rem;
}

.hero-title {
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin: .5rem 0 1rem;
}

.hero-lead {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    opacity: .95;
}

/* кнопки-«пилюли» */
.btn-pill {
    border-radius: 999px;
    padding: .8rem 1.4rem;
}

.btn-berry {
    background: #ef6b5a;
    border: none;
    color: #fff;
}

.btn-berry:hover {
    background: #e45845;
    color: #fff;
}

.btn-ghost {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* отступы вокруг секции */
.section-gap {
    margin: 1.25rem 0 2rem;
}

@media (min-width:992px) {
    .section-gap {
        margin: 2rem 0 3rem;
    }
}

/*клубника*/
.bg-rose {
    background: #fff2ef;
}

/* нежно-розовый фон секции */
.carousel-inner img {
    object-fit: cover;
    height: auto;
}

@media (min-width: 768px) {
    .carousel-inner img {
        max-height: 520px;
    }

    /* чтобы не было слишком высоко на десктопе */
}

.bg-rose {
    background: #fff2ef;
}

.object-cover {
    object-fit: cover;
}

@media (min-width: 992px) {

    /* чтобы левая картинка красиво обрезалась по высоте правой колонки */
    .row .col-lg-7 figure {
        height: 100%;
    }
}

.review-img {
    background: none;
    /* убираем белый фон */
    padding: 0;
    border-radius: 0;
    /* без скруглений */
    overflow: hidden;
}

.review-img img {
    display: block;
    width: 100%;
    height: auto;
    /* не обрезать */
    object-fit: contain;
    /* картинка полностью помещается */
    border-radius: 15px;
}

/* фон секции уже есть: .bg-rose { background:#fff2ef; } */

.step-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 880px;
    margin: 0 auto 2rem;
    /* центрируем и делаем вертикальный отступ между шагами */
}

.step-badge {
    width: 56px;
    /* только ширина */
    aspect-ratio: 1 / 1;
    /* высота = ширине → идеальный квадрат */
    box-sizing: border-box;
    /* учитываем рамку внутри размеров */
    display: grid;
    place-items: center;
    border: 2px solid #e14b42;
    color: #e14b42;
    border-radius: 50%;
    /* теперь точно круг */
    font-weight: 600;
    font-size: 1.25rem;
    background: transparent;
    flex: 0 0 56px;
    /* фиксируем ширину во флексе */
    line-height: 1;
    /* чтобы текст не раздувал высоту */
}

/* мобилка — просто уменьшаем ширину */
@media (max-width:575.98px) {
    .step-badge {
        width: 48px;
        flex-basis: 48px;
        font-size: 1.1rem;
    }
}


.step-text {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    margin: 0;
}

/* компактнее на мобильных */
@media (max-width: 575.98px) {
    .step-row {
        gap: .9rem;
        margin-bottom: 1.25rem;
    }
}

/* зелёный CTA */
.cta-green {
    background: #89BD74;
    /* мягко-зелёный */
    color: #0f281a;
}

.cta-green h2 {
    font-weight: 700;
}

/* как нас найти */
.social-round .sr-btn {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e14b42;
    /* ягодный */
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(225, 75, 66, .25);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.social-round .sr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(225, 75, 66, .32);
    color: #fff;
}

/* вариант цветов для разных сетей (если хочешь) */
.social-round .sr-btn[href*="vk.com"] {
    background: #4C75A3;
}

.social-round .sr-btn[href*="t.me"] {
    background: #2AABEE;
}

.social-round .sr-btn[href*="wa.me"] {
    background: #25D366;
}

/* мелкие устройства — кнопки чуть меньше */
@media (max-width:575.98px) {
    .social-round .sr-btn {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
}

/* кнопки клубники */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.2s ease;
}

/* WhatsApp (красный e63946, белый текст) */
.btn-whatsapp {
    background-color: #e63946;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #c92f3c;
    color: #fff;
}

/* Telegram (белая с черным текстом) */
.btn-telegram {
    background-color: #fff;
    color: #000;
}

.btn-telegram:hover {
    background-color: #f1f1f1;
    color: #000;
}

/* клубничная кнопка заказать в ватсап */
.btn-order {
    background-color: #e63946;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease;
}

/* --- Footer --- */
.site-footer {
    margin-top: 0;
    color: #E6ECE9;
    background: linear-gradient(180deg, #0F1E17 0%, #0B1511 100%);
    position: relative;
    overflow: hidden;
}

.footer-main {
    position: relative;
    padding: 3.5rem 0 2.75rem;
}

.footer-noise {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 30%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.06), transparent),
        linear-gradient(130deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 55%);
    mix-blend-mode: screen;
    opacity: .35;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: clamp(2.75rem, 3.4vw, 3.4rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas:
        "brand nav landing contact"
        "brand nav landing docs";
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    grid-area: brand;
    max-width: 320px;
}

.footer-nav {
    grid-area: nav;
}

.footer-landings {
    grid-area: landing;
    padding-top: .15rem;
}

.footer-contact {
    grid-area: contact;
    gap: .85rem;
}

.footer-docs {
    grid-area: docs;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #E6ECE9;
}

.footer-heading-sm {
    display: block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #A9B6B1;
    margin: 1.5rem 0 .35rem;
}

.footer-logo-link img {
    max-width: 90px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.footer-brand-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #E6ECE9;
    letter-spacing: .01em;
}

.footer-brand-copy {
    margin: 0;
    color: #A9B6B1;
    font-size: .95rem;
    line-height: 1.65;
    max-width: 48ch;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .25rem;
}

.footer-links--sub {
    gap: .15rem;
}

.footer-links--landings {
    margin-bottom: .35rem;
}

.footer-link {
    color: #E6ECE9;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 44px;
    padding-block: .25rem;
    text-decoration-thickness: .12em;
    text-underline-offset: .25em;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #E96A5A;
    text-decoration: underline;
}

.footer-link--muted {
    color: #A9B6B1;
    font-weight: 500;
}

.footer-link--muted:hover,
.footer-link--muted:focus-visible {
    color: #E6ECE9;
}

.footer-meta {
    margin: 0;
    color: #A9B6B1;
    font-size: .95rem;
}

.footer-contact .footer-meta {
    padding-left: 1.5rem;
}

.footer-meta--label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

.footer-phone-block {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.footer-phone-link {
    font-size: 1.05rem;
    font-weight: 600;
}

.footer-link-icon {
    font-size: 1rem;
    color: #E96A5A;
}

.footer-contact-buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: nowrap;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
    min-width: 148px;
}

.footer-button:hover {
    transform: translateY(-2px);
}

.footer-button--wa {
    background: #25D366;
    color: #FFFFFF;
}

.footer-button--wa:hover,
.footer-button--wa:focus-visible {
    background: #1fba5a;
    color: #FFFFFF;
}

.footer-button--tg {
    background: #229ED9;
    color: #FFFFFF;
}

.footer-button--tg:hover,
.footer-button--tg:focus-visible {
    background: #1f8ec3;
    color: #FFFFFF;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    min-height: 44px;
    padding: 0 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-cta--outline {
    border-color: rgba(233, 106, 90, 0.6);
    color: #E96A5A;
    background: transparent;
}

.footer-cta--outline:hover,
.footer-cta--outline:focus-visible {
    background: rgba(233, 106, 90, 0.12);
    color: #D95C4D;
    border-color: rgba(233, 106, 90, 0.8);
    transform: translateY(-2px);
}

.footer-cta-icon {
    font-size: 1.05rem;
}

.footer-documents {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 236, 233, 0.08);
    color: #E6ECE9;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
    background: rgba(233, 106, 90, 0.18);
    color: #E96A5A;
    transform: translateY(-2px);
}

.footer-accordion {
    border: 1px solid #2A3A35;
    border-radius: 18px;
    background: rgba(12, 26, 20, 0.4);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.footer-accordion--nested {
    background: rgba(12, 26, 20, 0.6);
    border-radius: 16px;
    margin-top: .5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.footer-accordion-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    min-height: 44px;
    width: 100%;
    padding: 0 .95rem;
    font-weight: 600;
    color: #A9B6B1;
    cursor: pointer;
}

.footer-accordion-summary::-webkit-details-marker {
    display: none;
}

.footer-accordion-summary::after {
    content: "▾";
    font-size: .9rem;
    color: inherit;
    transition: transform .2s ease;
}

.footer-accordion[open] > .footer-accordion-summary::after {
    transform: rotate(180deg);
}

.footer-accordion-summary--root {
    padding: 0;
    color: #E6ECE9;
    font-size: 1.1rem;
}

.footer-accordion-summary--root::after {
    color: #E6ECE9;
}

.footer-accordion-body {
    padding: .75rem .95rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-accordion--nested .footer-accordion-summary {
    color: #B3C1BB;
}

.footer-accordion--nested[open] .footer-accordion-summary {
    color: #E6ECE9;
}

.site-footer a:focus-visible,
.site-footer button:focus-visible,
.site-footer summary:focus-visible {
    outline: 2px solid rgba(233, 106, 90, 0.9);
    outline-offset: 3px;
}

.sub-footer {
    border-top: 1px solid rgba(230, 236, 233, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.sub-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: .75rem 1.5rem;
    padding: 1rem 1.5rem 1.25rem;
    color: #A9B6B1;
}

.sub-footer-copy,
.sub-footer-meta,
.sub-footer-love {
    margin: 0;
    font-size: .9rem;
}

.sub-footer-love {
    color: #E6ECE9;
    font-weight: 500;
}

.sub-footer-line {
    margin: 0;
    font-size: .9rem;
    color: #A9B6B1;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-accordion--root {
        border: none;
        background: transparent;
        padding: 0;
    }

    .footer-accordion-summary--root {
        cursor: default;
    }

    .footer-accordion-summary--root::after {
        display: none;
    }

    .footer-accordion--root .footer-accordion-body {
        padding: 0;
    }
}

@media (max-width: 1023.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "brand nav"
            "landing contact"
            "brand docs";
    }
}

@media (max-width: 639.98px) {
    .site-footer {
        margin-top: 0;
    }

    .footer-main {
        padding: 2.5rem 0 2.25rem;
    }

    .footer-inner {
        padding: 0 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "contact"
            "nav"
            "landing"
            "docs";
        row-gap: clamp(1rem, 3vw, 1.25rem);
        column-gap: 0;
    }

    .footer-contact-buttons {
        justify-content: space-between;
    }

    .footer-accordion--root {
        border: 1px solid #2A3A35;
        background: rgba(12, 26, 20, 0.4);
    }

    .footer-accordion-summary--root {
        padding: .5rem .95rem;
        cursor: pointer;
    }

    .footer-accordion-body {
        padding: .75rem .95rem 1rem;
    }

    .sub-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 0 1.25rem;
        gap: .5rem;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }
}

.btn-order:hover {
    background-color: #c92f3c;
    /* чуть темнее при наведении */
}

/* карточки товаров */

.product-card {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
    transition: transform .15s ease, box-shadow .15s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

/* делаем изображение строго квадратным, не растягивая */
.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* ровный квадрат */
    overflow: hidden;
}

.product-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* заполняет без искажений */
    transform: scale(1.02);
    transition: transform .3s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

/* текст в карточке */
.product-body {
    padding: 16px 0 18px;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: 700;
    margin: 0 0 6px;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e23d2b;
    /* акцентная цена */
}

.product-unit {
    color: #7a7a7a;
    font-weight: 500;
}

/* кнопка «Добавить в корзину» — #ef6c59 */
.btn-cart {
    background: #ef6c59;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    transition: filter .15s ease, transform .05s ease;
    margin-top: auto;
}

.btn-cart:hover {
    filter: brightness(0.95);
    color: #e4a8a8;
}

.btn-cart:active {
    transform: translateY(1px);
}

/* Блок с акцией */

.promo-banner {
    background: #fde4e6;
    /* нежно-розовый */
    padding: 18px 24px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

.promo-text {
    font-style: italic;
    color: #111;
}

.promo-text b {
    font-weight: 700;
    color: #ef6c59;
    /* акцент под цвет кнопок */
}

/* Почему наши цветы особенные */

/* Заголовки колонок */
.compare-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: .6rem;
}

.compare-title.bad {
    color: #333;
}

.compare-title.good {
    color: #2e7d32;
}

/* зелёный */

/* Списки сравнения со значками ✅/❌ через ::before */
.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-list li {
    position: relative;
    padding-left: 2rem;
    margin: .65rem 0;
    line-height: 1.45;
}

.compare-list.bad li::before,
.compare-list.good li::before {
    content: "";
    position: absolute;
    top: .2rem;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
}

/* ❌ — серо-красный кружок */
.compare-list.bad li::before {
    background: #f5d9d9;
    box-shadow: inset 0 0 0 2px #e57373;
}

.compare-list.bad li::after {
    content: "✖";
    position: absolute;
    left: .05rem;
    top: .02rem;
    width: 1.25rem;
    text-align: center;
    color: #d84343;
    font-weight: 700;
}

/* ✅ — зелёный кружок */
.compare-list.good li::before {
    background: #dbf3e1;
    box-shadow: inset 0 0 0 2px #66bb6a;
}

.compare-list.good li::after {
    content: "✔";
    position: absolute;
    left: .05rem;
    top: .02rem;
    width: 1.25rem;
    text-align: center;
    color: #2e7d32;
    font-weight: 800;
}

/* Карусель — аккуратные индикаторы */
#compareCarousel .carousel-indicators [data-bs-target] {
    background-color: #333;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

#compareCarousel .carousel-indicators .active {
    background-color: #ef6c59;
    /* в цвет кнопок */
}

/* Визуал каталога */
/* ----- Шапка каталога + фильтры ----- */
.cat-hero {
    background: #fffdf8;
    border-radius: 16px;
    padding: 22px 20px;
    margin: 20px 0 10px;
    border: 1px solid #f2efe9;
}

.cat-hero h1 {
    margin: 0;
    font-weight: 800;
}

.cat-hero .sub {
    color: #6b7280;
    font-size: .95rem;
}

.cat-filters .nav-link {
    border-radius: 9999px;
    padding: .45rem 1rem;
    color: #333;
    border: 1px solid #e9e9e9;
    background: #fff;
    transition: all .15s ease;
}

.cat-filters .nav-link:hover {
    border-color: #dcdcdc;
}

.cat-filters .nav-link.active {
    color: #fff;
    background: #ef6c59;
    border-color: #ef6c59;
}

/* ----- Карточка товара ----- */
.product-card {
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

/* квадратная обложка */
.thumb-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
}

.thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.product-card:hover .thumb-wrap img {
    transform: scale(1.04);
}

.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end;
}

.product-badge {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    white-space: nowrap;
}

.badge-grown {
    background: #2E6B3B;
}

.badge-fresh {
    background: #2C7A7B;
}

.product-body {
    padding: 14px 0 16px;
}

.product-title {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: 12px;
}

.price-line .price {
    font-weight: 800;
    font-size: 1.15rem;
}

.price-line .unit {
    color: #6b7280;
    font-size: .95rem;
}

.btn-add {
    background: #ef6c59;
    color: #fff;
    border: 1px solid #ef6c59;
    width: 100%;
    border-radius: 9999px;
    padding: .6rem 1rem;
}

.btn-add:hover {
    filter: brightness(.95);
    color: #fff;
}

.product-scroll {
    position: relative;
    padding: 0 56px;
}

.product-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 8px 4px 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(239, 108, 89, .3) transparent;
}

.product-scroll-track::-webkit-scrollbar {
    height: 6px;
}

.product-scroll-track::-webkit-scrollbar-thumb {
    background-color: rgba(239, 108, 89, .4);
    border-radius: 999px;
}

.product-scroll-item {
    flex: 0 0 clamp(240px, 24vw, 300px);
    scroll-snap-align: start;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    color: #ef6c59;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    z-index: 2;
}

.scroll-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}

.scroll-btn.prev {
    left: 0;
}

.scroll-btn.next {
    right: 0;
}

.scroll-btn:disabled {
    opacity: .3;
    box-shadow: none;
    cursor: default;
}

.product-scroll:not(.is-scrollable) .scroll-btn {
    display: none;
}

@media (max-width: 768px) {
    .product-scroll {
        padding: 0 42px;
    }

    .product-scroll-item {
        flex: 0 0 260px;
    }

    .scroll-btn {
        width: 38px;
        height: 38px;
    }
}

.select-pill {
    border-radius: 9999px;
    border: 1px solid #e3e3e3;
    background: #f7f7f7;
    padding: 6px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #333;
    user-select: none;
}

.select-pill:hover {
    background: #f0f0f0;
}

.select-pill.active {
    background: #ef6c59;
    border-color: #ef6c59;
    color: #fff;
    box-shadow: 0 6px 18px rgba(239, 108, 89, 0.25);
}

.select-pill:focus-visible {
    outline: 2px solid rgba(239, 108, 89, 0.5);
    outline-offset: 2px;
}

/* Пустой каталог */
.empty {
    background: #fffdf8;
    border: 1px solid #f0ece6;
    border-radius: 16px;
    padding: 28px;
    color: #6b7280;
}

.cart-feedback {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: min(320px, calc(100% - 3rem));
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
    transform: translateY(16px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 1100;
}

.cart-feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-feedback__content {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-feedback__message {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #1f2937;
}

.cart-feedback__label {
    font-weight: 600;
}

.cart-feedback__name {
    font-weight: 600;
}

.cart-feedback__price {
    color: #ef6c59;
    font-weight: 600;
}

.cart-feedback__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.cart-feedback__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ef6c59;
    text-decoration: none;
}

.cart-feedback__link:hover,
.cart-feedback__link:focus {
    text-decoration: underline;
}

.cart-feedback__link:focus-visible {
    outline: 2px solid rgba(239, 108, 89, 0.4);
    outline-offset: 2px;
    border-radius: 999px;
}

.cart-feedback__close {
    border: none;
    background: #f3f4f6;
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.cart-feedback__close:hover,
.cart-feedback__close:focus {
    background: #e5e7eb;
    color: #111827;
}

.cart-feedback__close:focus-visible {
    outline: 2px solid rgba(17, 24, 39, 0.4);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .cart-feedback__content {
        flex-direction: row;
        align-items: center;
    }

    .cart-feedback__controls {
        flex-grow: 1;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .cart-feedback {
        left: env(safe-area-inset-left, 0);
        right: env(safe-area-inset-right, 0);
        bottom: env(safe-area-inset-bottom, 0);
        width: auto;
        border-radius: 22px 22px 0 0;
        margin: 0 1rem;
        transform: translateY(110%);
    }

    .cart-feedback.is-visible {
        transform: translateY(0);
    }

    .cart-feedback__content {
        padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0));
    }

    .cart-feedback__controls {
        justify-content: space-between;
    }

    .cart-feedback__close {
        background: transparent;
        color: #6b7280;
    }
}

/* Лайтбокс каталога */
body.is-lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(3px);
}

.product-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-lightbox__close {
    align-self: flex-end;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-lightbox__close:hover,
.product-lightbox__close:focus-visible {
    background: rgba(15, 23, 42, 0.9);
}

.product-lightbox__stage {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    padding: 0.75rem 2rem;
    min-height: 320px;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.45);
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.product-lightbox__image-frame {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox__image-frame img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.product-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.product-lightbox__nav--prev {
    left: 1rem;
}

.product-lightbox__nav--next {
    right: 1rem;
}

.product-lightbox__nav:disabled {
    opacity: 0.4;
    cursor: default;
}

.product-lightbox__counter {
    margin: 0;
    text-align: right;
    color: #f3f4f6;
    font-weight: 600;
}

.product-lightbox__counter[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .product-lightbox {
        padding: 0.5rem;
    }

    .product-lightbox__stage {
        padding: 0.5rem 2rem;
        min-height: 240px;
    }

    .product-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .product-lightbox__close {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}
