/* Custom WC Quantity + Add to Cart */

.custom-wc-quantity {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.custom-wc-quantity .cwcqc-minus,
.custom-wc-quantity .cwcqc-plus {
    width: 38px;
    border: 0;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    color: #333;
    transition: background 0.15s ease;
}

.custom-wc-quantity .cwcqc-minus:hover,
.custom-wc-quantity .cwcqc-plus:hover {
    background: #e9e9e9;
}

.custom-wc-quantity .cwcqc-qty-input {
    width: 56px;
    text-align: center;
    border: 0;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    background: transparent;
    font-size: 15px;
    padding: 6px 4px;
    -moz-appearance: textfield;
}

.custom-wc-quantity .cwcqc-qty-input::-webkit-outer-spin-button,
.custom-wc-quantity .cwcqc-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-wc-add-to-cart-wrap {
    display: inline-flex;
    align-items: center;
}

.custom-wc-add-to-cart {
    cursor: pointer;
}

/* Toast notification */
.cwcqc-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #2e7d32;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cwcqc-toast.cwcqc-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.ultra-grad button.custom-wc-add-to-cart.button {
    background-image: linear-gradient(340deg, #7B16C5 0%, #F856CC 100%);
}

.custom-wc-quantity {
   border:0px;}