    .search-home-container{
        display: flex;
        align-items: center;
        margin-bottom:90px;
    }
    .search_form_home{
        display: block;
        width:100%;
    }
        
    .search_input_home{
        display: flex;
        max-width: 770px;
        height: 60px;
        padding: 0px 0px 0px 20px;
        margin: 0 auto;
        align-items: center;
        flex-shrink: 0;
        border-radius: 15px;
        background: #FFF;
        box-shadow: 0px 0px 0px 3px rgba(139, 155, 120, 0.50);
    }
.search_btn_home {
        display: flex;
        width: 150px;
        height: 60px;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 15px;
        border: 5px solid #FFF;
        background: #8B9B78;
        color: var(--Grey-shades-White, #FFF);
        text-align: center;
        font-family: Jost;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 142.857% */
        letter-spacing: 0.7px;
        text-transform: uppercase;
}
.search_form_home .input__text_home{
    border: 0px solid #FFF !important;
    padding: 17px 15px 17px 15px;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
}

.search_form_home .input__text_home::placeholder{
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    color:#95908E;
}
.search_input_home svg{
    min-width:20px;
    height:20px;
}


    .home-title-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; 
    }
    div.container.home-title-container{
        text-align:center;
        padding-top: 45px;
        padding-bottom: 90px;
    }
    div.container.home-title-container .home-title{margin-bottom:0px;}
    div.container.home-title-container .home-slogan{
        font-size: 18px;
        line-height: 25px;
    }
@media (max-width: 992px) {
    .search-home-container{
        margin-bottom:30px;
    }
    div.container.home-title-container{
        padding-top: 0px;
        padding-bottom: 30px;
    }
}  

@media (max-width: 767px) {
    div.container.home-title-container .home-slogan{
        display:inline;
        font-size: 14px;
        line-height: 20px;
    }
    .search_input_home{
        height: 50px;
        padding: 0px 20px 0px 20px;
    }
    .search_form_home .input__text_home{
        padding: 10px 15px 10px 15px;
    }
    .search_btn_home{
        display:none;
    }
} 

.home-category-container-v2{margin-top:90px;margin-bottom:90px;}
.home-category-body-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Создаем три колонки равной ширины */
    gap: 10px; /* Определяем промежуток между элементами */
    align-items: start; /* Выравнивание элементов в строках */
}

.home-flower-category-item-v2 {
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    background: #F8F7F7;
    overflow:hidden;
}

.home-flower-category-item-v2:hover {
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.06), 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.home-flower-category-item-img-v2{
    height:100%;
    opacity:0.9;
}
.home-flower-category-item-v2:hover .home-flower-category-item-img-v2{
    opacity:1;
}

.home-flower-category-item-text-v2{
    height:100%;
    padding:15px 0px 15px 20px;
    display: flex;
    align-content: space-around;
    flex-direction: column;
    justify-content: space-between;
}
.home-flower-category-item-title-v2{
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}
.home-flower-category-item-title-v2 .pc-none{display:inline;}

.home-flower-category-item-price-v2{
    color: #5C5857;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px; 
}

.home-flower-category-item-v2 .home-flower-category-item-title-v2::after {
    content: "";
    display: none;
    margin-left: 5px; /* Добавляет небольшой отступ перед стрелочкой */
}

.home-flower-category-item-v2:hover .home-flower-category-item-title-v2::after {
    content: "›"; /* Текст, который будет добавляться */
    display: inline; /* Убедитесь, что элемент виден при наведении */
}
.home-flower-category-show-all-btn {display:none;}

@media (max-width: 992px) {
    .home-category-container-v2{margin-top:30px;margin-bottom:30px;}
    .home-flower-category-item-v2 {
        height: 100px;
    }
    .home-flower-category-item-title-v2{
        font-size: 18px;
        line-height: 20px;
    }
    .home-flower-category-item-price-v2{
        font-size: 14px;
        line-height: 20px;
    }
    .home-flower-category-item-text-v2{
        padding:10px 0px 10px 15px;
    }
    
    
}

@media (max-width: 767px) {
    .home-category-body-v2 {
        display: flex;
        flex-direction: column;
        gap: 10px; /* Определяем промежуток между элементами */
        align-items: start; /* Выравнивание элементов в строках */
    }
    .home-flower-category-item-v2 {
        height: 75px;
        width:100%;
    }
    .home-category-body-v2 .home-flower-category-item-v2:nth-child(n+4) {
        display: none;
    }
    .home-flower-category-show-all-btn {
        display: flex;
        height: 40px;
        padding: 10px 41px 10px 15px;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;
        border-radius: 50px;
        border: 2px solid #E6E5E5;
        background:#FFF;
        color:  #000;
        text-align: center;
        font-family: Jost;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.7px;
        text-transform: uppercase;
        width:100%;
        margin-top:10px;
    }
    .home-flower-category-show-all-btn span{
        text-align: center;
        display: block;
        width: 100%;
    }
}


/*   home promo banner  START*/
.home-promo-banner {
    position: relative;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 80px 90px 60px 90px;
    overflow: hidden; /* чтобы содержимое не выходило за пределы */
    
    /* Градиент */

}

.home-promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fbb7b8; 
    background-position: center center; /* позиция изображения */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1; /* изображение позади содержимого */
}

.home-promo-banner-title{
    color: #000;
    font-family: Jost;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%; 
    letter-spacing: -0.15px;
    text-transform:uppercase;
    margin-bottom:15px;
}
.home-promo-banner-subcategory a:nth-last-child(n+2)::after {
    content: '\2022';
    font-size: 22px;
    margin-left:8px;
    vertical-align: middle;
    color:#000!important;
}
.home-promo-banner-subcategory a{
    color: #000;
    font-family: Jost;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
}
.home-promo-banner-subcategory a:hover{
    color:#819865;
}
.home-promo-banner-subcategory{margin-bottom:25px;
    color: #000;
    font-family: Jost;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.home-promo-banner-button{
    display: inline-flex;
    height: 45px;
    padding: 10px 25px;
    align-items: center;
    border-radius: 24px;
    background:  #403C3B;
    color: #FFF;
    text-align: center;
    font-family: Jost;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 153.846% */
    letter-spacing: 0.65px;
    text-transform: uppercase;
}
.home-promo-banner-button:hover{
    text-decoration:uppercase;
    color: #FFF;
}
@media (max-width: 767px){
    .home-promo-banner{
        padding:30px 50px 30px 50px;
        background-position: top center;
        display: flex;
        justify-content: center;
    }
    
    .home-promo-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: top center; /* позиция изображения */
        background-size:cover;
        background-repeat: no-repeat;
        z-index: -1; /* изображение позади содержимого */
    }
    .home-promo-banner-text {
        max-width:290px;
    }
    .home-promo-banner-title{
        font-size: 22px;
        text-align:center;
    }
    .home-promo-banner-subcategory{
        text-align: center;
        margin-bottom: 25px;
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        color: #000;
        font-family: Jost;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 136.364%; 
    }
    
    .home-promo-banner-subcategory a:nth-last-child(n+2)::after {
        content: '\2022';
        font-size: 18px;
        margin-left:8px;
        vertical-align: middle;
        color:#000!important;
    }
    .home-promo-banner-subcategory a{
        color: #000;
        font-family: Jost;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 136.364%; 
    }
    .home-promo-banner-subcategory a:hover{
        color:#819865;
    }
    .home-promo-banner-button{
        display: flex;
        height: 40px;
        justify-content: center;
        color: #FFF;
        text-align: center;
        font-family: Jost;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 153.846% */
        letter-spacing: 0.65px;
        text-transform: uppercase;
    }
}

/*   home promo banner  END*/




.tab-list {
  display: flex;
  list-style: none;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 0px;
}
.home-tabs-title{
    display:block;
    color: #000;
    font-family: Jost;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; 
    letter-spacing: -0.45px;
    margin-bottom:30px;
}
.tab-item {
    display: flex;
    height: 60px;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    font-family: Jost;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color:#000;
    opacity: 0.65;
    cursor:pointer;
    min-width: fit-content;
}
.tab-content{
        min-height:160px;
    }

.tab-item.active {
    background: #F8F7F7;
    color:#000;
    opacity: 1;
}

.tab-item:hover {
    opacity: 1;
}

.tab-panel {
  display: none;
  padding: 15px 10px;
  border-top: 1px solid #CBC9C8;
  background: #fff;
}

.tab-panel.active {
  display: block;
}

.home-tabs-child-items{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
#recipient .home-tabs-child-items{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.home-tabs-child-items .item-menu-text{
    display: flex;
    height: 45px;
    padding: 5px 10px;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    color: #000;
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.home-tabs-child-items .item-menu-text:hover{color:#8B9B78;}

@media (max-width: 992px) {
    .container.home-tabs-title-container{
        padding-left:0px;
        padding-right:0px;
    }
    .home-tabs-title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom:15px;
        padding-left:15px;
        padding-right:15px;
    }
    .tab-panel {
      display: none;
      padding: 15px 5px;
    }
    .tab-list {
        overflow:hidden;
        overflow-x:auto;
        padding-left:15px;
        padding-right:15px;
    }
    .tab-content{
        padding-left:15px;
        padding-right:15px;
        min-height:300px;
    }
    .tab-item {
        height: 45px;
        padding: 0px 15px;
        border-radius: 15px;
        font-family: Jost;
        font-size: 18px;
        line-height: 25px;
    }
    .home-tabs-child-items{
         display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .home-tabs-child-items .item-menu-text{
        line-height: 18px;
    }
}
