body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 24px;
    margin: 10px 0;
}

.rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.stars {
    color: gold;
}

.price {
    font-size: 20px;
    margin: 10px 0;
}

.discounted-price {
    color: red;
    font-weight: bold;
    margin-right: 10px;
}

.original-price {
    text-decoration: line-through;
}

.cart-button, .buy-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart-button:hover, .buy-button:hover {
    background-color: #e64a19;
}

.product-image {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.product-info {
    margin-top: 20px;
}