.tarjeta_producto {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    max-width: 300px;
    height: 100%;
    min-height: 400px;
    box-sizing: border-box;
}
.tarjeta_producto>a:not(.tarjeta_carrito-boton) {
    display: contents;
}
.tarjeta_etiquetas {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.etiqueta_oferta {
    background-color: #f29f05;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.etiqueta_popular {
    background-color: #034c8c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.etiqueta_unidad {
    background-color: #6c757d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}
.etiqueta_combo {
    background-color: #28a745;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.tarjeta_imagen {
    flex-shrink: 0;
    margin-bottom: 10px;
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #f8f9fa;*/
    border-radius: 8px;
    overflow: hidden;
}

.tarjeta_imagen img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}


.tarjeta_titulo {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.tarjeta_titulo h2 {
    margin: 0;
    font-weight: 500;
    line-height: 1.3em;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tarjeta_puntuacion {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0;
    color: #ffa500;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.tarjeta_precio {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.tarjeta_carrito {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 10px;
}
.tarjeta_carrito-boton {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    gap: 5px;
    letter-spacing: 0.6px;
    cursor: pointer;
    background: none;
    border: none;
    margin-top: 15px;
}

.tarjeta_carrito-boton:hover {
    color: #034c8c;
}

.tarjeta_carrito-boton:hover svg {
    fill: #034c8c;
}
.tarjeta_contenido>a:not(.tarjeta_carrito-boton) {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
}

.tarjeta_contenido {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 1;
    min-height: 0;
}