/* Quantity Wrapper */
.quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Input Box */
.quantity input.qty {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 2px solid #222;
    border-radius: 8px;
    font-size: 16px;
}

/* Buttons */
.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #f26f25;
    color: #fff;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.qty-btn:hover {
    background: #d45c1a;
}

.static-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
    padding-bottom: 20px;
}

.static-rating .stars {
    color: #ffc107; /* yellow */
    font-size: 18px;
    letter-spacing: 2px;
}

.static-rating .review-count {
    color: #555;
    font-size: 14px;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    width: 70%;
}