body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}
#containerBox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}
.product {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.product img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}
.product .title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}
.product .price {
    color: #e74c3c;
    font-size: 1.2em;
    margin-top: 10px;
}
.product .buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: #e74c3c;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.2s;
}
.product .buy-button:hover {
    background-color: #c0392b;
}