* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}

.product-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 45%;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

p {
    font-size: 1.2em;
}

.buy-button {
    background: #ff9800;
    border: none;
    padding: 10px;
    color: #000;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.buy-button:hover {
    background: #e67e22;
}

@media (max-width: 600px) {
    .product-card {
        width: 90%;
    }
}
