.ProductoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(635px, 100%), 1fr));
    /* height: 80vh; */
    gap: 10px;
    padding: 10px;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.ProductoGrid button {
    height: 40px;
    font-size: 18px;
}

.ContentProductoSlide {
    max-width: 80%;
    height: max-content;
    max-height: 470px;
}

.ImagenProductoSlide {
    height: 100% !important;
}

.ProductoDescripcionCard {
    border-radius: var(--BRadius_Card);
    background-color: white;
    box-shadow: var(--Sombra_Cards);
    width: 100%;
    padding: 15px;
    margin: 10px 0;
}

.ProductoDescripcionCard .InfoFlex {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.ProductoDescripcionCard button {
    background-color: var(--Primary_Color_Dark);
    color: white;
    margin: 5px;
}

.ProductoParrafo {
    position: relative;
}

.ProductoParrafo .titulo {
    font-size: 14px;
    color: #444;
    margin: 0;
    padding: 0;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.ProductoParrafo .texto {
    font-size: 18px;
    color: var(--Primary_Color_Dark);
    line-height: 27px;
    font-weight: 500;
    margin: 5px 0;
    padding: 0;
}

.ProductoParrafo .precio {
    font-size: 25px;
    font-weight: bold;
}

.ComentarioUsuario {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 10px;
    font-size: 5px !important;
}

.ComentarioUsuario .nombre {
    font-size: 15px;
    font-weight: 500;
}