.product-container {
    display: flex;
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-image img {
    max-width: 350px;
    border-radius: 12px;
    object-fit: cover;
}
.product-details {
    flex: 1;
}
.product-details h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.price-box {
    margin: 15px 0;
}
.original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}
.discount-price {
    color: #e63946;
    font-size: 24px;
    font-weight: bold;
}
.action-buttons a {
    display: inline-block;
    padding: 10px 18px;
    margin: 10px 5px 0 0;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}
.add-cart {
    background: #007bff;
    color: white;
}
.add-cart:hover {
    background: #0056b3;
}
.add-wishlist {
    background: #f1c40f;
    color: black;
}
.add-wishlist:hover {
    background: #d4ac0d;
}
.review-box {
    margin-top: 40px;
}
.review-box h3 {
    margin-bottom: 15px;
}
.review-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}