*::after,
*::before,
*{
    margin: 5;
    padding: 5;
    box-sizing: border-box;
}

body{
    max-width: 1200px;
    font-family: 'Lato';
    color: #000000;
    text-align: center;
    justify-content: center;
}

.icon-cart{
    width: 40px;
    height: 40px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px; 
    background-color: none; 
}
.logo-container img {
    width: 150px;
    height: 150px;
}


img{
    width: 230px;
    height: 230px;
    object-fit:cover;
    border-radius: 10px 10px 0 0;
}

/*header*/
header{
    display:flex;
    justify-content: center;
    text-align: center;
    padding: 30px 0 40px 0;
}



/*box*/
.container-items{
    display:grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Sombra adaptada */
    transform: scale(1.05);
}

.info-product{
    padding: 15px 30px;
    line-height:2;
    display:flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.info-product button{
border: none;
background: none;
background-color: black;
color: #ffff;
padding: 15px 10px;
cursor: pointer;
width: 100%;
margin: 0 auto;
}

.suggestions-box {
    margin-top: 50px; /* Ajusta la distancia desde el contenido anterior */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.suggestions-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.suggestions-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.suggestions-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.suggestions-button:hover {
    background-color: #333333;
}








