#content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.action-page-banner{
    display: flex;
    align-items: center;
    justify-content: center;
}
#information-action-gifts h1 {
    font-size: 28px;
    margin: 0;
    text-align: center;
}

.gift-groups-container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

   
}
.gift-group{
    width: 145px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 0px 6px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    cursor: pointer;
}

.gift-group-title{
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
}

.gift-group.active{
    border-bottom: 4px solid rgba(200, 16, 46, 1);
}

.gift-group.active .gift-group-title{
    color:   rgba(200, 16, 46, 1);
}


/* Desktop Banner - показывать на больших экранах */
.action-page-banner .banner-mobile {
  display: none;
}

/* Mobile Banner - показывать на мобильных устройствах */
@media (max-width: 768px) {
  .action-page-banner .banner-desktop {
    display: none;
  }
  
  .action-page-banner .banner-mobile {
    display: block;
  }
}

/* Action Page Description */
.action-page-description {
 
  font-family: Gilroy;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #000000;

}
.action-page-description p{
    margin: 0;
    padding: 0;
}


.gift-panel{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card{

    flex: 0 0 calc(25% - 10px); /* 4 колонки, минус gap для выравнивания */
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 8px;
    background-color: #fff;
}
.product-card:hover{
    box-shadow: 0px 5px 20px rgb(0 0 0 / 8%);
}
.product-cart-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    padding: 12px;
}

.product-cart-info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.product-description{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}
.rating{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.rating-stars{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3px;
}
.rating .rating-stars .fa-stack
{
    margin: 0;
}
.rating-reviews{
    font-size: 14px;
}
.product-text-info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}
.product-sku{
    font-size: 12px;
    color: rgba(68, 68, 68, 1);
   
}
.product-short-description{
    font-size: 14px;
    font-weight: 500;
}
.product-name{
    font-size: 13px;
}

.product-price{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.product-price-value{
    font-size: 18px;
    font-weight: 500;
}

.action-page-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background: #000000;
    width: max-content;
    margin: 0 auto;
}

.action-page-button-link{
    font-size: 22px;
    color: #fff;
}

.action-page-button-link:hover{
    color: #fff;
}

.action-page-description-bottom{
    font-size: 14px;
    text-align: center;
}

.bottom-info-block{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding: 40px 0px 20px 0px;
}
.bottom-info-title{
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.bottom-info-features{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: space-around;
    width: 100%;
}

.bottom-info-feature{
    display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 10px;
padding: 15px 10px 15px 10px;
}

.bottom-info-feature-text{
    font-size: 14px;
}

.divide{
    width: 1px;
    height: 40px;
    background: rgba(230, 230, 230, 1);
}


@media (max-width: 768px) {
    #information-action-gifts h1{
        font-size: 24px;
        text-align: left;
    }
    .gift-groups-container{
        overflow-x: auto;          
        overflow-y: hidden;       
        scrollbar-width: none; 
        -ms-overflow-style: none; 
        
    }
    .gift-group{
        width: unset;
        padding: 6px 5px 6px 5px;
        flex: 0 0 auto;  
        white-space: nowrap; 
    }
    .gift-panel{
        gap : unset;
    }
    .product-card{
        flex: 0 0 50%;
    }
    .action-page-button{
        width: 100%;
        margin: 0;
    }
    .action-page-button-link{
        font-size: 18px;
    }

    .action-page-description-bottom{
        text-align: left;
    }

    .bottom-info-block{
        padding: 40px 15px 20px 15px;
        gap: 25px;
    }

    .bottom-info-title{
        font-size: 24px;
        text-align: left;
    }
    .bottom-info-features{
        flex-direction: column;
        align-items: flex-start;
    }

    .divide{
        height: 1px;
        width: 100%;
    }


}