.container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.product-item h3 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-item p {
    font-size: 1em;
    color: #666;
    margin: 5px 0;
}

.product-item .price {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1em;
    margin-top: 10px;
}

.product-item button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

.product-item button:hover {
    background-color: #333;
}
