body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
}

.product-details {
    margin-top: 20px;
}

.price {
    color: #35033b;
    font-size: 1.5em;
}

button {
    background-color: #0e0d0de3;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (min-width: 768px) {
    .product {
        flex-direction: row;
        text-align: left;
    }

    .product img {
        width: 50%;
    }

    .product-details {
        margin-left: 20px;
        text-align: left;
    }
}