.promo-head {
    width: 100%;
    padding: 2rem 0 0rem;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 10px;
}

.promo-head__title {
    margin: 0 auto;
    width: 83%;
    font-size: 15px;
}

.promo-head__description {
    margin: 0 auto;
    max-width: 294px;
    font-size: 16px;
}

.--hidemov {
    display: none;
}

.--hidedesk {
    display: block;
}

.product-container {
    margin: 0 auto;
    width: 100%;
}

/* Ajusta el espacio entre los item slide */
.product-container .slick-slide {
    margin: 0 15px;
}

/* Mueve el carrusel a la izquierda */
.product-container .slick-track {
    margin-left: -30px;
}

.product-container .slick-list.draggable {
    padding: 0px !important;
}

.product-card {
    margin: 10px 0 26px;
    padding: 18px 12px;
    width: 100%;
    height: 410px;
    display: grid;
    grid-template-columns: 150px auto;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    position: relative;
    text-align: center;
}

.product-card::before {
    width: 100%;
    height: 326px;
    content: '';
    box-shadow: 0px 4px 20px 0px #00000040;
    position: absolute;
    left: 0%;
    bottom: 0%;
    border-radius: 16px;
    z-index: 9;
}

.product-card__image {
    width: 100%;
    max-width: 200px;
    height: 212px;
    justify-self: flex-start;
}

.product-card__info {
    margin-top: 10px;
    width: 100%;
    display: grid;
    align-self: flex-start;
    column-gap: 6px;
    position: relative;
    z-index: 99;
}

.product-card__brand {
    font-size: 14px;
    color: #737578;
}

.product-card__name {
    font-size: 18px;
}

.product-card__brand-name {
    margin-bottom: 10px;
}

.product-card__text-desde {
    font-size: 25px;
}

.product-card__text-soon {
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}

.product-card__button-shop {
    margin: 15px auto 0px;
    display: grid;
    place-items: center;
    width: 90%;
    max-width: 155px;
    height: 38px;
    border-radius: 20px;
    font-size: 14px;
}

.barra-promo {
    display: none;
}

.product-card__image {
    margin: 0 auto;
    position: relative;
    z-index: 9 !important;
}

.product-container .slick-dots li {
    width: 15px !important;
    margin: 0 0px !important;
}

.product-container .slick-dots li button:before {
    font-size: 11px !important;
}

.product-card__text{
    height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width:758px) {
    .promo-head {
        padding: 3rem 0 0.5rem;
        gap: 8px;
    }

    .promo-head__title {
        max-width: 890px;
        font-size: 32px;
    }

    .promo-head__description {
        max-width: max-content;
        font-size: 30px;
    }

    .--hidedesk {
        display: none;
    }

    .--hidemov {
        display: block;
    }

    .barra-promo {
        margin: 0rem auto 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 877px;
        height: 64px;
        font-size: 32px;
        color: var(--white);
        border-radius: 6px;
        background-color: var(--darkBlue);
        text-align: center;
    }

    .product-container {
        width: 95%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2%;
    }

    .product-card {
        width: 100%;
        max-width: 250px;
        height: max-content;
        max-height: none;
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: left;
        text-align: center;
        z-index: 9;
        position: relative;
    }

    .product-card::before {
        height: 330px;
    }

    .product-card__name {
        font-size: 18px;
    }

    .product-card__image {
        max-width: 208px;
    }

    .product-card__button-shop {
        text-decoration: none;
        font-size: 18px;
    }
}