* {
    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: 1px solid #eee;
}

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;
}

.navbar .nav-link {
    color: #2b2b2b !important;
}

.navbar .nav-link:hover {
    color: #156f4d !important;
}

/* лёгкий зелёный акцент */
.navbar-brand span {
    color: #2b2b2b;
}

/* 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;
}

.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 18px 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;
    /* в цвет кнопок */
}