.manus-product-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    gap: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.manus-product-image img {
    max-width: 200px;
    height: auto;
}

.manus-product-info {
    flex: 1;
}

.manus-product-info h3 {
    margin-top: 0;
}

.manus-product-rating {
    color: #f39c12;
    font-weight: bold;
    margin-bottom: 10px;
}

.manus-product-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.manus-buy-button {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.manus-buy-button:hover {
    background: #d35400;
    color: #fff;
}

@media (max-width: 600px) {
    .manus-product-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
