/* --- استایل فیلد تعداد سفارشی (ساخته شده با JS) --- */

/* کانتینر اصلی ووکامرس */
form.cart div.quantity {
    margin: 0;
}

/* کانتینر سفارشی ما */
.custom-quantity-wrapper {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    vertical-align: middle;
}

/* دکمه های + و - */
.custom-quantity-wrapper .qty-btn {
    background-color: #f8f8f8;
    border: none;
    padding: 0;
    width: 45px;
    font-size: 1.3em;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.custom-quantity-wrapper .qty-btn:hover {
    background-color: #eee;
}

/* فیلد ورودی عدد */
.custom-quantity-wrapper input.qty {
    width: 60px;
    text-align: center;
    border: none !important;
    border-left: 1px solid #ccc !important;
    border-right: 1px solid #ccc !important;
    border-radius: 0 !important;
    padding: 8px 5px !important;
    margin: 0 !important;
    height: auto !important;
    box-shadow: none !important;
    -moz-appearance: textfield;
    margin-left: -10px !important;
}
.custom-quantity-wrapper input.qty::-webkit-outer-spin-button,
.custom-quantity-wrapper input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* --- استایل های عمومی صفحه محصول --- */

.single-product div.product form.cart {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}
.single-product div.product p.price {
    margin: 0 0 15px !important;
    font-size: 1.6em !important;
}
.single-product .variations label {
    font-size: 1.1em !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
}
.single-product .reset_variations,
.single-product p.stock {
    display: none !important;
}
.single-product form.cart button.single_add_to_cart_button {
    width: 100% !important;
    padding: 12px !important;
    font-size: 1.1em !important;
}

/* --- استایل های سبد خرید --- */

.woocommerce-cart-form dl.variation {
    margin-bottom: 5px;
}
.woocommerce-cart-form dl.variation dt {
    float: right;
    clear: both;
    margin-left: 5px;
    font-weight: bold;
}
.woocommerce-cart-form dl.variation dd {
    margin: 0;
}