/* ========== ОБЩИЙ КОНТЕЙНЕР 1200px ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== ХЕРО-БЛОК ========== */
.hero {
    width: 100%;
    background-color: transparent;
    background-image: url('../images/feedback__bg-5.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
}

.hero__studio {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.2;
    color: var(--color-black);
}

.hero__slogan {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.3;
    color: var(--color-black);
    max-width: 800px;
}

.hero__btn {
    background: var(--color-pink);
    border-radius: 30px;
    padding: 12px 32px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.2;
    color: var(--color-white);
    border: none;
    min-width: 260px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 30px;
}

.hero__btn:hover {
    background: #9e3e52;
}

/* ========== ОБЁРТКА ДЛЯ ЛОГОТИПА И ЦВЕТКОВ ========== */
.hero__logo-wrapper {
    position: relative;
    display: inline-block;
}

/* Заголовок (логотип) */
.hero__title {
    position: relative;
    z-index: 10;
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: clamp(40px, 8vw, 75px);
    line-height: 1.2;
    color: var(--color-black);
    max-width: 900px;
    word-break: break-word;
    margin: 0;
    -webkit-text-stroke: 1px #000000;
}

/* ========== ВСЕ ЦВЕТКИ СПРАВА (группируем) ========== */
.hero__flower {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Левый цветок (ближе к логотипу) */
.hero__flower--left {
    right: -305px;
    width: 331px;
    height: 751px;
    background: url('../images/flower-front-1.png') no-repeat center/contain;
    background-size: contain;
    z-index: 1;
    top: 362px;
}

/* Центральный цветок (посередине) */
.hero__flower--center {
    right: -537px;
    width: 376px;
    height: 658px;
    background: url('../images/flower-front-2.png') no-repeat center/contain;
    background-size: contain;
    z-index: 2;
    top: 100px;
}

/* Правый цветок (самый дальний) */
.hero__flower--right {
    right: -788px;
    width: 627px;
    height: 894px;
    background: url('../images/flower-front-3.png') no-repeat center/contain;
    background-size: contain;
    z-index: 1;
    top: 443px;
}

/* ========== БЛОК ГОТОВЫЕ БУКЕТЫ ========== */
/* ========== КАРУСЕЛЬ БУКЕТОВ ========== */
.bouquets-carousel {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.bouquets-carousel__title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 50px;
    margin-top: -10px;
}

.bouquets-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Кнопки prev/next */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #B54B5F;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #8a3a4a;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Точки навигации */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #B54B5F;
    transform: scale(1.2);
}

/* КАРТОЧКИ БУКЕТОВ */
.bouquet-card-link {
    width: 280px;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bouquet-card-link:hover {
    transform: translateY(-5px);
}

.bouquet-card {
    width: 100%;
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bouquet-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bouquet-card__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 30px;
}

.bouquet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bouquet-card-link:hover .bouquet-card__image img {
    transform: scale(1.05);
}

.bouquet-card__title {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    margin: 16px 0 8px;
    color: var(--color-black);
}

.bouquet-card__price {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-black);
}

.bouquet-card__btn {
    background: #899647;
    border-radius: 30px;
    padding: 8px 35px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.bouquet-card__btn:hover {
    background: #6f7a3a;
}

.bouquets__btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.bouquets__catalog-btn {
    background: transparent;
    border: 1px solid var(--color-black);
    border-radius: 30px;
    padding: 8px 100px;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bouquets__catalog-btn:hover {
    background: #f5f5f5;
}

.no-bouquets {
    text-align: center;
    font-family: var(--font-main);
    font-size: 18px;
    color: #999;
    padding: 40px;
}


/* ========== БЛОК О НАС ========== */
.about {
    position: relative;
    padding: 80px 0;
    background-color: transparent;
    background-image: url('../images/feedback__bg-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about__image {
    flex: 1;
    border-radius: 0 150px;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
}

.about__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__title {
    position: relative;
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 0.78;
    color: var(--color-black);
    margin-bottom: 80px;
    text-align: center;
}

.about__title::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;   
    transform: none;
    width: 100px;
    height: 100px;
    background: url('../images/butterfly.png') no-repeat center/contain;
    background-size: contain;
}

.about__text {
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about__text p {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-black);
    margin-bottom: 24px;
    text-align: left;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__text-brand {
    font-family: var(--font-logo);
    font-weight: 300;
    font-size: 40px;
    line-height: 1.3;
    color: var(--color-black);
}

.about__text strong {
    font-weight: 600;
}

.about__btn {
    background: transparent;
    border: 1px solid var(--color-black);
    border-radius: 30px;
    padding: 12px 100px;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 20px;
    line-height: 0.78;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about__btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ========== БЛОК КАТЕГОРИИ ========== */
.categories {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.categories__title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 48px;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.category-card__label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    width: 200px;
    padding: 12px 0;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
}

.category-card:hover .category-card__label {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%) scale(1.02);
}

/* ========== БЛОК СОВЕТЫ ПО УХОДУ ========== */
.advice {
    padding: 80px 0;
    background-color: transparent;
    background-image: url('../images/feedback__bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    position: relative;
}

.advice__flower-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 341px;
    height: 502px;
    background-image: url('../images/flower-ris-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    pointer-events: none;
}

.advice-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.advice__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advice__title {
    position: relative;
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 40px;
    text-align: center;
}

.advice__title::before {
    content: "";
    position: absolute;
    top: -280px;
    left: -300px;
    width: 341px;
    height: 502px;
    background: url('../images/flower-ris-1.png') no-repeat center/contain;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.advice__list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    width: 100%;
    max-width: 500px;
}

.advice__item {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.advice__number {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-black);
    min-width: 40px;
}

.advice__text {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.3;
    color: var(--color-black);
}

.advice__line {
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    margin: 12px 0 12px 55px;
}

.advice__btn {
    background: transparent;
    border: 1px solid var(--color-black);
    border-radius: 30px;
    padding: 8px 100px;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 40px;
}

.advice__btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.advice__image {
    flex: 1;
    overflow: hidden;
}

.advice__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== БЛОК ДОСТАВКА ========== */
.delivery {
    padding: 80px 0 40px 0;
    background: transparent;
}

.delivery__title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 48px;
}

.delivery__grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.delivery__card {
    width: 320px;
    background: #F7E8E8;
    border: 1px solid #000000;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
}

.delivery__icon {
    width: 100px;
    height: 80px;
    margin: 0 auto 20px auto;
}

.delivery__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delivery__card-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 10px;
}

.delivery__card-text {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-black);
}

/* ========== БЛОК ОСТАЛИСЬ ВОПРОСЫ? ========== */
.questions {
    padding: 40px 0 80px 0;
    background: transparent;
}

.questions-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.questions__image {
    flex: 1;
    overflow: hidden;
}

.questions__image img {
    width: 100%;
    height: auto;
    display: block;
}

.questions__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.questions__title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 32px;
    text-align: center;
}

.questions__form {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.questions__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.questions__label {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-black);
    text-align: left;
    padding-left: 20px;
}

.questions__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.questions__input:focus {
    outline: none;
    border-color: var(--color-pink);
}

.questions__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 300;
}

.questions__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.questions__textarea:focus {
    outline: none;
    border-color: var(--color-pink);
}

.questions__textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 300;
}

.questions__btn {
    background: var(--color-pink);
    border: none;
    border-radius: 40px;
    padding: 8px 100px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: fit-content;
    align-self: center;
}

.questions__btn:hover {
    background: #9e3e52;
    transform: scale(1.02);
}

/* ========== ЕДИНЫЙ ФОН ДЛЯ ДОСТАВКИ И ВОПРОСОВ ========== */
.delivery-questions-wrapper {
    background-color: transparent;
    background-image: url('../images/feedback__bg-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========== БЛОК ОТЗЫВЫ (ЗАЦИКЛЕННАЯ КАРУСЕЛЬ) ========== */
.feedback {
    padding: 80px 0;
    background-color: transparent;
    background-image: url('../images/feedback__bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
}

.feedback__title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 48px;
}

.feedback-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-carousel-container {
    position: relative;
    overflow: hidden;
}

.feedback-carousel-track {
    overflow: hidden;
}

.feedback-carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.feedback-carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Карточки отзывов */
.feedback-card {
    background: #F7E8E8;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.feedback-card__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Стрелочки навигации (по центру снизу, как точки) */
.feedback-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 0;
}

.feedback-nav-prev,
.feedback-nav-next {
    background: #B54B5F;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.feedback-nav-prev:hover,
.feedback-nav-next:hover {
    background: #8a3a4a;
}

/* Кнопка "Все отзывы" */
.feedback__btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.feedback__btn {
    background: transparent;
    border: 1px solid var(--color-black);
    border-radius: 30px;
    padding: 8px 100px;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.feedback__btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ========== КНОПКА НАВЕРХ ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #B54B5F;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    -webkit-text-stroke: 1px #ffffff;
    padding-bottom: 5px;
}

.scroll-top:hover {
    background: #8a3a4a;
    transform: scale(1.1);
}

.scroll-top.show {
    display: flex;
}

/* ========== АДАПТИВ ========== */

/* ---------- Адаптив hero (текст всегда СЛЕВА) ---------- */
@media (max-width: 900px) {
    .hero {
        background-image: none;
        background-color: var(--color-pink-bg);
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;    /* ← текст слева */
        text-align: left;           /* ← текст слева */
        padding: 40px 20px;
    }
    
    .hero__title,
    .hero__slogan {
        max-width: 100%;
    }
    
    .hero__btn {
        font-size: 16px;
        padding: 10px 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        background: var(--color-pink-bg);
        background-image: none;
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero .container {
        align-items: flex-start;    /* ← текст слева */
        text-align: left;           /* ← текст слева */
        margin-top: 50px;
        gap: 15px;
    }
    
    .hero__studio,
    .hero__title,
    .hero__slogan,
    .hero__btn {
        text-align: left;           /* ← текст слева */
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero__title {
        font-size: 50px;
        max-width: 100%;
    }
    
    .hero__slogan {
        max-width: 100%;
        font-size: 15px;
    }
    
    .hero__studio {
        font-size: 15px;
    }
    
    .hero__btn {
        font-size: 16px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero__title {
        font-size: 34px;
    }
}

/* ========== АДАПТИВ ЦВЕТКОВ В ХЕРО-БЛОКЕ (всегда справа) ========== */

/* 1100px */
@media (max-width: 1100px) {
    .hero__flower--left {
        right: -180px;
        width: 280px;
        height: 630px;
        top: 320px;
    }
    
    .hero__flower--center {
        right: -350px;
        width: 320px;
        height: 560px;
        top: 80px;
    }
    
    .hero__flower--right {
        right: -597px;
        width: 530px;
        height: 760px;
        top: 390px;
    }
}

/* 900px */
@media (max-width: 900px) {
    .hero {
        padding: 80px 0 85px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 18px;
    }
    
    .hero__studio {
        font-size: 18px;
    }
    
    .hero__title {
        font-size: 52px;
    }
    
    .hero__slogan {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero__btn {
        font-size: 16px;
        padding: 9px 48px;
        min-width: 0px;
    }
    
    /* Цветы для 900px */
    .hero__flower--left {
        right: -169px;
        width: 250px;
        height: 560px;
        top: 320px;
    }
    
    .hero__flower--center {
        right: -328px;
        width: 270px;
        height: 470px;
        top: 150px;
    }
    
    .hero__flower--right {
        right: -518px;
        width: 390px;
        height: 560px;
        top: 340px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 18px;
    }
    
    .hero__studio {
        font-size: 17px;
    }
    
    .hero__title {
        font-size: 44px;
    }
    
    .hero__slogan {
        font-size: 15px;
        max-width: 100%;
    }
    
    .hero__btn {
        font-size: 15px;
        padding: 8px 45px;
        min-width: 0px;
        margin-top: 20px;
    }
    
    /* Цветы для 768px */
    .hero__flower--left {
        right: -140px;
        width: 230px;
        height: 510px;
        top: 290px;
    }
    
    .hero__flower--center {
        right: -270px;
        width: 245px;
        height: 430px;
        top: 140px;
    }
    
    .hero__flower--right {
        right: -430px;
        width: 355px;
        height: 510px;
        top: 310px;
    }
}

/* 600px */
@media (max-width: 600px) {
    .hero {
        padding: 45px 0 60px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 16px;
    }
    
    .hero__studio {
        font-size: 16px;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .hero__slogan {
        font-size: 14px;
        max-width: 100%;
    }
    
    .hero__btn {
        font-size: 14px;
        padding: 7px 42px;
        min-width: 0px;
        margin-top: 10px;
    }
    
    /* Цветы для 600px */
    .hero__flower--left {
        right: -100px;
        width: 200px;
        height: 450px;
        top: 268px;
    }
    
    .hero__flower--center {
        right: -200px;
        width: 210px;
        height: 380px;
        top: 125px;
    }
    
    .hero__flower--right {
        right: -330px;
        width: 300px;
        height: 450px;
        top: 280px;
    }
}

/* 520px */
@media (max-width: 520px) {
    .hero__flower--left {
        right: -76px;
        width: 180px;
        height: 400px;
        top: 253px;
    }
    
    .hero__flower--center {
        right: -167px;
        width: 190px;
        height: 340px;
        top: 115px;
    }
    
    .hero__flower--right {
        right: -276px;
        width: 270px;
        height: 400px;
        top: 260px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .hero {
        padding: 30px 0 40px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 15px;
    }
    
    .hero__studio {
        font-size: 16px;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__slogan {
        font-size: 14px;
        max-width: 100%;
    }
    
    .hero__btn {
        font-size: 14px;
        padding: 6px 40px;
        min-width: 0px;
    }
    
    /* Цветы всегда справа, только уменьшаем */
    .hero__flower--left {
        right: -65px;
        width: 163px;
        height: 371px;
        top: 235px;
    }
    
    .hero__flower--center {
        right: -163px;
        width: 165px;
        height: 290px;
        top: 128px;
    }
    
    .hero__flower--right {
        right: -260px;
        width: 243px;
        height: 346px;
        top: 248px;
    }
}

/* 420px */
@media (max-width: 420px) {
    .hero__btn {
        font-size: 14px;
        padding: 6px 32px;
        min-width: 0px;
    }

    .hero__flower--left {
        right: -22px;
        width: 136px;
        height: 309px;
        top: 221px;
    }
    
    .hero__flower--center {
        right: -86px;
        width: 123px;
        height: 216px;
        top: 128px;
    }
    
    .hero__flower--right {
        right: -187px;
        width: 198px;
        height: 282px;
        top: 225px;
    }
}

/* ========== АДАПТИВ ДЛЯ БЛОКА ГОТОВЫЕ БУКЕТЫ ========== */
/* Мобильные: 768px и ниже - 1 карточка по центру */
@media (max-width: 768px) {
    .carousel-slide {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    /* Скрываем вторую и третью карточку, показываем только первую */
    .carousel-slide .bouquet-card-link {
        display: none;
    }
    
    .carousel-slide .bouquet-card-link:first-child {
        display: block;
    }
    
    .bouquet-card-link {
        width: 280px;
        flex-shrink: 0;
        margin: 0 auto;
    }
    
    .bouquet-card__image {
        height: 280px;
    }
}

/* ---------- Адаптив about ---------- */
@media (max-width: 900px) {
    .about {
        padding: 60px 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about__image {
        max-width: 450px;
        margin: 0 auto;
        width: 80%;
    }
    
    .about__content {
        width: 100%;
    }
    
    .about__text {
        max-width: 100%;
        padding: 0 20px;
    }

    .about__title {
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .about__title::before {
        width: 80px;
        height: 80px;
        top: -60px;
        left: -60px;
        display: block;
    }

    .about__btn {
        font-size: 16px;
        padding: 8px 70px;
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }
    
    .about__title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .about__text p {
        font-size: 16px;
    }
    
    .about__text-brand {
        font-size: 28px;
    }
    
    .about__btn {
        font-size: 16px;
        padding: 8px 70px;
        margin-top: -40px;
    }

    .about__image {
        flex: 1;
        text-align: right;
    }
    
    .about__title::before {
        width: 80px;
        height: 80px;
        top: -60px;
        left: -60px;
        display: block;
    }
}

@media (max-width: 480px) {
    .about__title {
        font-size: 32px;
    }
    
    .about__text p {
        font-size: 14px;
    }
    
    .about__text-brand {
        font-size: 24px;
    }
    
    .about__btn {
        font-size: 16px;
        padding: 8px 42px;
    }

    .about__title::before {
        width: 60px;
        height: 60px;
        top: -40px;
        left: -40px;
        display: block;
    }
}

/* ---------- Адаптив categories ---------- */

/* Планшеты (до 900px) */
@media (max-width: 900px) {
    .categories {
        padding: 60px 0;
    }
    
    .categories__title {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .categories__grid {
        gap: 24px;
    }
    
    .category-card__label {
        border-radius: 40px;
        bottom: 24px;
        background: rgba(255, 255, 255, 0.2);
        width: 180px;
        padding: 10px 0;
        font-size: 14px;
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .categories {
        padding: 40px 0;
    }
    
    .categories__title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-card img {
        width: 100%;
        height: auto;
    }
    
    .category-card__label {
        border-radius: 40px;
        bottom: 20px;
        background: rgba(255, 255, 255, 0.2);
        width: 200px;
        padding: 10px 0;
        font-size: 16px;
    }
}

/* Маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    .categories {
        padding: 30px 0;
    }
    
    .categories__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .categories__grid {
        gap: 25px;
    }

    .category-card__label {
        border-radius: 40px;
        bottom: 16px;
        background: rgba(255, 255, 255, 0.2);
        width: 180px;
        padding: 8px 0;
        font-size: 14px;
    }
}

/* ---------- Адаптив advice ---------- */

/* Компьютер (шире 900px) — полный размер цветка, текст слева, фото справа */
@media (min-width: 901px) {
    .advice-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .advice__content {
        flex: 1;
        text-align: left;
        align-items: flex-start;
    }
    
    .advice__title {
        text-align: left;
        margin-left: 30px;
    }
    
    .advice__list {
        text-align: left;
        margin: 0 0 40px 0;
    }
    
    .advice__image {
        flex: 1;
        text-align: right;
        width: 80%;
    }
    
    .advice__title::before {
        width: 341px;
        height: 502px;
        top: -260px;
        left: -230px;
        display: block;
    }
}

/* Планшеты (от 768px до 900px) — текст слева, фото справа, цветок уменьшен */
@media (min-width: 768px) and (max-width: 900px) {
    .advice-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .advice__content {
        flex: 1;
        text-align: left;
        align-items: flex-start;
    }
    
    .advice__title {
        white-space: nowrap;
        text-align: left;
        margin-left: 30px;
    }
    
    .advice__list {
        text-align: left;
        margin: 0 0 40px 0;
    }
    
    .advice__image {
        flex: 1;
        text-align: right;
    }
    
    .advice__title::before {
        width: 170px;
        height: 251px;
        top: -130px;
        left: -110px;
        display: block;
    }
}

/* Мобильные устройства (от 661px до 767px) — текст слева, фото справа, цветок УБРАН */
@media (min-width: 661px) and (max-width: 767px) {
    .advice {
        padding: 40px 0;
    }
    
    .advice-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    
    .advice__content {
        flex: 1;
        text-align: left;
    }
    
    .advice__title {
        font-size: 36px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .advice__title::before {
        display: none;
    }
    
    .advice__list {
        text-align: left;
        margin: 0 0 40px 0;
    }
    
    .advice__number {
        font-size: 20px;
        min-width: 35px;
    }
    
    .advice__text {
        font-size: 16px;
    }
    
    .advice__line {
        margin-left: 45px;
    }
    
    .advice__image {
        flex: 1;
        text-align: right;
    }
    
    .advice__btn {
        font-size: 16px;
        padding: 8px 70px;
    }
}

/* Маленькие телефоны (660px и ниже) — контент в столбик, цветок убран */
@media (max-width: 660px) {
    .advice {
        padding: 40px 0;
    }
    
    .advice-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .advice__image {
        order: 1;
    }
    
    .advice__content {
        order: 2;
    }
    
    .advice__content {
        width: 100%;
        text-align: center;
    }
    
    .advice__title {
        font-size: 32px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .advice__title::before {
        display: none;
    }
    
    .advice__list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }
    
    .advice__number {
        font-size: 18px;
        min-width: 30px;
    }
    
    .advice__text {
        font-size: 14px;
    }
    
    .advice__line {
        margin-left: 35px;
        margin: 8px 0 8px 35px;
    }
    
    .advice__image {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
    
    .advice__btn {
        font-size: 14px;
        padding: 8px 70px;
    }
}

/* ---------- Адаптив delivery ---------- */

/* Планшеты (до 900px) */
@media (max-width: 900px) {
    .delivery {
        padding: 60px 0 40px 0;
    }
    
    .delivery__title {
        font-size: 48px;
    }
    
    .delivery__grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .delivery__card {
        width: calc(33.33% - 10px);
        padding: 15px 10px;
        border-radius: 15px;
    }
    
    .delivery__icon {
        width: 87px;
        height: 59px;
    }
    
    .delivery__card-title {
        font-size: 20px;
    }
    
    .delivery__card-text {
        font-size: 16px;
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .delivery {
        padding: 40px 0 30px 0;
    }
    
    .delivery__title {
        font-size: 36px;
    }
    
    .delivery__grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .delivery__card {
        width: calc(33.33% - 8px);
        padding: 12px 8px;
        border-radius: 15px;
    }
    
    .delivery__icon {
        width: 70px;
        height: 47px;
    }
    
    .delivery__card-title {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .delivery__card-text {
        font-size: 15px;
    }
}

/* Маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    .delivery {
        padding: 30px 0 20px 0;
    }
    
    .delivery__title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .delivery__grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .delivery__card {
        width: calc(33.33% - 6px);
        padding: 10px 5px;
        border-radius: 12px;
    }
    
    .delivery__icon {
        width: 54px;
        height: 36px;
        margin-bottom: 8px;
    }
    
    .delivery__card-title {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .delivery__card-text {
        font-size: 9px;
    }
}


/* ---------- Адаптив questions ---------- */

/* Планшеты (до 900px) — фото слева, форма справа */
@media (max-width: 900px) {
    .questions {
        padding: 40px 0 60px 0;
    }
    
    .questions-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .questions__image {
        flex: 1;
        max-width: 45%;
        margin: 0;
    }
    
    .questions__content {
        flex: 1;
        max-width: 55%;
    }
    
    .questions__title {
        font-size: 48px;
        margin-bottom: 24px;
    }
    
    .questions__form {
        max-width: 100%;
        padding: 0;
    }
}

/* Мобильные устройства (до 768px) — фото слева, форма справа */
@media (max-width: 768px) {
    .questions {
        padding: 30px 0 50px 0;
    }
    
    .questions-container {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
    
    .questions__image {
        flex: 1;
        max-width: 42%;
    }
    
    .questions__content {
        flex: 1;
        max-width: 58%;
    }
    
    .questions__title {
        font-size: 36px;
        margin-bottom: 30px;
        white-space: nowrap;
    }
    
    .questions__label {
        font-size: 14px;
    }
    
    .questions__input,
    .questions__textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .questions__btn {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
    }
}

/* Маленькие телефоны (до 480px) — фото убираем, форма по центру в нежно-розовом прямоугольнике */
@media (max-width: 480px) {
    .questions {
        padding: 40px 20px;
    }

    .delivery-questions-wrapper {
        background-image: none;
        background-color: #fff; 
    }
    
    /* Скрываем фото */
    .questions__image {
        display: none;
    }

    /* Контент (форма) занимает всю ширину и центрируется */
    .questions__content {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    
    .questions__title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .questions__form {
        max-width: 100%;
        padding: 0;
        gap: 15px;
    }
    
    .questions__form-group {
        gap: 6px;
    }
    
    .questions__label {
        font-size: 14px;
        font-weight: 500;
    }
    
    .questions__input,
    .questions__textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .questions__textarea {
        min-height: 90px;
    }
    
    .questions__btn {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
        border-radius: 40px;
        margin-top: 10px;
        background: var(--color-pink);
        color: white;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .questions__btn:hover {
        background: #9e3e52;
        transform: scale(1.02);
    }
}

/* ========== АДАПТИВ БЛОКА ОТЗЫВЫ ========== */
/* ========== АДАПТИВ ОТЗЫВОВ ========== */

/* Десктоп: показываем все 3 карточки в слайде */
@media (min-width: 769px) {
    .feedback-carousel-slide {
        display: flex;
        justify-content: center;
        gap: 30px;
    }
    
    .feedback-carousel-slide .feedback-card {
        display: block;
    }
}

/* Мобильные: показываем только первую карточку в слайде */
@media (max-width: 768px) {
    .feedback-carousel-slide {
        display: flex;
        justify-content: center;
        gap: 0;
    }
    
    /* Скрываем 2 и 3 карточку */
    .feedback-carousel-slide .feedback-card {
        display: none;
    }
    
    /* Показываем первую карточку */
    .feedback-carousel-slide .feedback-card:first-child {
        display: block;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .feedback-nav-prev,
    .feedback-nav-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .feedback__title {
        font-size: 36px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .feedback__title {
        font-size: 28px;
    }
    
    .feedback-carousel-slide .feedback-card:first-child {
        max-width: 280px;
    }
    
    .feedback-nav-prev,
    .feedback-nav-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .feedback__btn {
        padding: 6px 40px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .scroll-top{
        -webkit-text-stroke: 0px #ffffff;
    }
}

/* ========== АДАПТИВ ДЛЯ ЭКРАНОВ 400px И МЕНЬШЕ ========== */
@media (max-width: 400px) {
    /* Заголовок "Готовые букеты" */
    .bouquets-carousel__title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
	margin-top: -10px;
    }
    
    /* Кнопка "Смотреть каталог" */
    .bouquets__catalog-btn {
        font-size: 18px !important;
        padding: 6px 40px !important;
        white-space: nowrap !important;
    }
    
    /* Стрелки карусели */
    .carousel-prev,
    .carousel-next {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        top: 40% !important;
    }
    
    .carousel-prev {
        left: 1px !important;
    }
    
    .carousel-next {
        right: 1px !important;
    }
}