/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 05 2026 | 18:44:41 */
/*
 * Quantity Stepper Buttons (+/-)
 * Mobile-friendly stepper buttons for quantity inputs
 * Add this CSS separately to your WordPress site
 */

.qty-stepper-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    background: #F5F5F5 !important;
    max-width: 160px !important;
}

.qty-stepper-btn {
    width: 44px !important;
    height: 44px !important;
    border: none !important;
    background: #FFFFFF !important;
    color: #5A5A5A !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.qty-stepper-btn:hover {
    background: #FFE5E9 !important;
    color: #E60028 !important;
}

.qty-stepper-btn:active {
    background: #E60028 !important;
    color: #FFFFFF !important;
    transform: scale(0.95) !important;
}

.qty-stepper-minus {
    border-right: 1px solid #E0E0E0 !important;
    border-radius: 0 !important;
}

.qty-stepper-plus {
    border-left: 1px solid #E0E0E0 !important;
    border-radius: 0 !important;
}

.qty-stepper-wrapper .ff_quantity_item,
.qty-stepper-wrapper input[type="number"] {
    width: 60px !important;
    text-align: center !important;
    border: none !important;
    border-radius: 0 !important;
    background: #F5F5F5 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 8px 4px !important;
    -moz-appearance: textfield !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    height: 44px !important;
    box-shadow: none !important;
}

/* Hide native number input spinners */
.qty-stepper-wrapper input[type="number"]::-webkit-inner-spin-button,
.qty-stepper-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .qty-stepper-wrapper {
        max-width: 140px !important;
    }

    .qty-stepper-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }

    .qty-stepper-wrapper .ff_quantity_item,
    .qty-stepper-wrapper input[type="number"] {
        width: 50px !important;
        font-size: 16px !important;
        height: 40px !important;
    }
}