.promo-product span,
.promo-product label {
    font-weight: 600;
    font-size: 11px;
    color: $blackColor;
}

.promo-product {
    width: 100%;
    background: #9c895e;
    color: $blackColor; 
    padding: 0 10px;
    overflow: hidden; 
}

/**Promo for on modal add to cart */

.promo-product {
     
    background: $PrimaryColor;
    border-radius: 15px;
     
    padding: 2px 10px;
    color: $blackColor;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;

    label {
        font-size: 13px !important;
        font-weight: 600;
        color: $blackColor !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

// section list promotions
.section {
    &-promotions {
        .promotions-swiper {
            overflow: hidden;
            padding: 18px 0;
        }

        .promos-item {
            position: relative;
            color: #fff;
            overflow: hidden;
            border-radius: 14px;
            display: flex;

            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;

            background-image:url('../../../public/img/bg-orange.webp');
            background-size: cover;
            background-repeat: no-repeat;
            height: 350px;

            .promos-img {
                position: absolute;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    padding:  20px;

                img {
                    object-fit: contain;
                    width: 100%;
                }
            }

            .promos-content { 
                z-index: 3;
                height: 100%;
                padding: 20px;
                position: absolute;
                top: 0px;
                left: 0px;
                width: 100%;
            }

            .title {

                font-weight: 600;
            }


            .promos-btn {
                a {
                    display: inline-block;

                }
            }
        }
    }
}




@media (min-width: 0px) {

    .section {
        &-promotions {
            .promos-item {
                padding: 50px 25px;
                height: 440px;

                .item-col {
                    &:first-child {
                        flex: 0 0 auto;
                        width: 36%;
                    }

                    &:last-child {
                        flex: 0 0 auto;
                        width: 64%;
                    }
                }

                .promos-img {
                    img {
                        object-fit: contain;
                        width: 100%;
                    }
                }

                .promos-content {
                    height: 100%;
                    padding: 20px;
                }

                .title {
                    line-height: 30px;
                    margin-bottom: 6px;

                    text-transform: uppercase;
                    color: black;
                    font-size: 18px;
                }

                .promos-text {
                    .text {
                    color: black;
                    }
                }

                .promos-btn {
                    text-align: left;
                        z-index: 9999;
                        position: relative;
                    a {

                        padding: 6px 20px;
                        font-size: 13px;

                        margin: 0;
                        background: #000;
                        color: $whiteColor;
                    }
                }
            }
        }
    }
}

@media (min-width: 576px) {
    .section {}
}

@media (min-width: 768px) {
    .section {

        &-promotions {
            .promos-item {
                height: 350px;
                padding: 30px 25px;


                .item-col {
                    &:first-child {
                        flex: 0 0 auto;
                        width: 38%;
                    }

                    &:last-child {
                        flex: 0 0 auto;
                        width: 100%;
                    }
                }

                .promos-img {
                    img {
                        object-fit: contain;

                        width: 250px;
                    }
                }

                .promos-content {
                    height: 100%;
                padding: 20px;
                }

                .title {
                    line-height: 32px;
                    margin-bottom: 6px;
                }

                // .promos-text {
                //     .text {
                //         font-size: 14px;
                //     }
                // }

                .promos-btn {
                    a { 
                        padding: 6px 20px;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

@media (min-width: 992px) {
    .section {}
}