.container .card{
    width: 250px;
    height: 345px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 10px;
    text-align: center;
    transition: all 0.25s;
    background-color: white;
}


.container .card img{
    width: 200px;
    height: 210px;
    border-radius: 3px;
    margin-top: 17px;
}


.container .card h4{
    font-weight: 600;
}

.container .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.container .card a {
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}


.price {
    color: #4caf50;
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.actions {
    display: flex;
    gap: 75px;
    flex-direction: column;
}

.btn-secondary {
    background: #c7a17a;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-danger {
    background: #dc3545;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.add-to-cart-btn {
    padding: 4px 11px;
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 19px;
    border-radius: 5px;
}
/*productos class*/
.container-p {
    width: 100%;
    max-width: 1250px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    
}
.container-p .card{
    width: 250px;
    height: 330px;
    border-radius: 2px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transition: all 0.25s;
    background-color: #ffffff;
}


.container-p .card img{
    width: auto;
    height: auto;
    max-width: 230px;
    max-height: 230px;
    border-radius: 3px;
    margin-top: 10px;
}


.container-p .card h4{
    font-weight: 600;
}

.container-p .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.container-p .card a {
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
}

.Precio{
    font-size: 13px;
}
.titulo{
    font-size: 20px;
    margin-top: 15px;
    color: #FC562C;
    font-weight: bold;
}
