/* Custom Woo Extras - Main Styles (cleaned)
 * Kept: Header Cart Icon, Free Shipping Progress Bar, Floating Cart, Side Cart, Sticky ATC, Buy Now
 */

/* Buy Now Button */
.cwe-buy-now-btn {
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Sticky Add to Cart */
.cwe-sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 10px 16px;
    border-top: 1px solid #eee;
    box-sizing: border-box;
}

.cwe-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cwe-sticky-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.cwe-sticky-product img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cwe-sticky-info {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.cwe-sticky-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.cwe-sticky-price {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cwe-sticky-actions {
    flex-shrink: 0;
}

.cwe-sticky-actions form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cwe-sticky-actions .single_add_to_cart_button,
.cwe-sticky-actions .button {
    white-space: nowrap;
}

/* Mobile sticky — larger qty + button, clean layout */
@media (max-width: 768px) {
    .cwe-sticky-atc {
        padding: 12px 14px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    .cwe-sticky-inner {
        gap: 12px;
        align-items: center;
    }
    .cwe-sticky-product {
        gap: 10px;
        max-width: 36%;
        min-width: 0;
    }
    .cwe-sticky-product img {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    .cwe-sticky-title {
        font-size: 13px;
        font-weight: 600;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .cwe-sticky-price {
        font-size: 12px;
        font-weight: 500;
        color: #111;
    }
    .cwe-sticky-actions {
        flex: 1 1 auto;
        max-width: 64%;
        min-width: 0;
    }
    .cwe-sticky-actions form {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    /* Bigger quantity on mobile sticky */
    .cwe-sticky-atc .quantity {
        height: 48px !important;
        min-height: 48px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }
    .cwe-sticky-atc .quantity .cwe-q-minus,
    .cwe-sticky-atc .quantity .cwe-q-plus {
        width: 40px !important;
        min-width: 40px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
    .cwe-sticky-atc .quantity input.qty {
        width: 40px !important;
        min-width: 40px !important;
        height: 48px !important;
        font-size: 16px !important;
        line-height: 48px !important;
    }

    /* Bigger add to cart button on mobile sticky */
    .cwe-sticky-actions .single_add_to_cart_button,
    .cwe-sticky-actions .button {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 14px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 480px) {
    .cwe-sticky-product {
        max-width: 32%;
    }
    .cwe-sticky-actions {
        max-width: 68%;
    }
    .cwe-sticky-atc .quantity {
        height: 46px !important;
        min-height: 46px !important;
    }
    .cwe-sticky-atc .quantity .cwe-q-minus,
    .cwe-sticky-atc .quantity .cwe-q-plus {
        height: 46px !important;
        width: 36px !important;
        min-width: 36px !important;
    }
    .cwe-sticky-atc .quantity input.qty {
        height: 46px !important;
        line-height: 46px !important;
        width: 36px !important;
        min-width: 36px !important;
    }
    .cwe-sticky-actions .single_add_to_cart_button,
    .cwe-sticky-actions .button {
        height: 46px !important;
        min-height: 46px !important;
        font-size: 13px !important;
        padding: 0 12px !important;
    }
}


/* ========== Side Cart ========== */
.cwe-side-cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    visibility: hidden;
    pointer-events: none;
}

.cwe-side-cart.open {
    visibility: visible;
    pointer-events: auto;
}

.cwe-side-cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cwe-side-cart.open .cwe-side-cart-overlay {
    opacity: 1;
}

.cwe-side-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cwe-side-cart.open .cwe-side-cart-panel {
    transform: translateX(0);
}

.cwe-side-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.cwe-side-cart-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cwe-cart-count-badge {
    background: #222;
    color: #fff;
    font-size: 12px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.cwe-side-cart-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
}

.cwe-side-cart-close:hover {
    color: #000;
}

.cwe-side-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
}

.cwe-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.cwe-cart-empty .button {
    margin-top: 15px;
}

.cwe-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cwe-cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cwe-cart-item-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.cwe-cart-item-details {
    flex: 1;
    min-width: 0;
}

.cwe-cart-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cwe-cart-item-name a {
    color: inherit;
    text-decoration: none;
}

.cwe-cart-item-price {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.cwe-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}

.cwe-qty-minus,
.cwe-qty-plus {
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.cwe-qty-input {
    width: 36px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 13px;
    -moz-appearance: textfield;
}

.cwe-qty-input::-webkit-outer-spin-button,
.cwe-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cwe-cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.cwe-cart-item-remove:hover {
    color: #e74c3c;
}

.cwe-side-cart-footer {
    padding: 16px 20px 24px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    background: #fafafa;
}

.cwe-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 6px;
}

.cwe-cart-shipping-note {
    margin-bottom: 14px;
    color: #888;
}

.cwe-cart-buttons {
    display: flex;
    gap: 10px;
}

.cwe-cart-buttons .button {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
}

/* Floating Cart Button */
.cwe-floating-cart {
    position: fixed;
    z-index: 99990;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #222;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.cwe-floating-cart:hover {
    background: #000;
    transform: scale(1.08);
}

.cwe-floating-icon {
    font-size: 22px;
}

.cwe-floating-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cwe-floating-cart.cwe-pos-bottom-right { top: auto !important; bottom: 25px !important; left: auto !important; right: 25px !important; transform: none !important; }
.cwe-floating-cart.cwe-pos-bottom-left  { top: auto !important; bottom: 25px !important; left: 25px !important; right: auto !important; transform: none !important; }
.cwe-floating-cart.cwe-pos-top-right    { top: 25px !important; bottom: auto !important; left: auto !important; right: 25px !important; transform: none !important; }
.cwe-floating-cart.cwe-pos-top-left     { top: 25px !important; bottom: auto !important; left: 25px !important; right: auto !important; transform: none !important; }
.cwe-floating-cart.cwe-pos-middle-right { top: 50% !important; bottom: auto !important; left: auto !important; right: 25px !important; transform: translateY(-50%) !important; }
.cwe-floating-cart.cwe-pos-middle-left  { top: 50% !important; bottom: auto !important; left: 25px !important; right: auto !important; transform: translateY(-50%) !important; }

/* Hover must keep position transform */
.cwe-floating-cart.cwe-pos-middle-right:hover,
.cwe-floating-cart.cwe-pos-middle-left:hover {
    transform: translateY(-50%) scale(1.08) !important;
}
.cwe-floating-cart.cwe-pos-bottom-right:hover,
.cwe-floating-cart.cwe-pos-bottom-left:hover,
.cwe-floating-cart.cwe-pos-top-right:hover,
.cwe-floating-cart.cwe-pos-top-left:hover {
    transform: scale(1.08) !important;
}

/* Header Cart Icon */
.cwe-header-cart-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.cwe-header-cart-icon:hover {
    background: rgba(0,0,0,0.05);
}

.cwe-header-icon {
    font-size: 20px;
}

.cwe-header-count {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cwe-header-total {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .cwe-side-cart-panel {
        max-width: 100%;
    }
}

.cwe-floating-cart.cwe-hidden-empty { display: none !important; }


/* ========== Improved Side Cart Quantity & Layout ========== */

.cwe-side-cart-panel {
    max-width: 400px;
}

.cwe-side-cart-body {
    padding: 10px 16px;
}

.cwe-cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    align-items: flex-start;
}

.cwe-cart-item-image {
    flex-shrink: 0;
}

.cwe-cart-item-image img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.cwe-cart-item-details {
    flex: 1;
    min-width: 0;
    padding-right: 24px;
}

.cwe-cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.35;
    color: #222;
}

.cwe-cart-item-name a {
    color: #222;
    text-decoration: none;
}

.cwe-cart-item-name a:hover {
    color: #000;
    text-decoration: underline;
}

.cwe-cart-item-price {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.cwe-cart-item-remove {
    position: absolute;
    top: 12px;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: #bbb;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.15s;
}

.cwe-cart-item-remove:hover {
    color: #e74c3c;
    background: #fef2f2;
}

/* Footer polish */
.cwe-side-cart-footer {
    padding: 16px 20px 22px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.cwe-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 4px;
}

.cwe-cart-subtotal strong {
    font-size: 18px;
    color: #222;
}

.cwe-cart-shipping-note {
    margin-bottom: 16px;
    color: #999;
    font-size: 12px;
}

.cwe-cart-buttons {
    display: flex;
    gap: 10px;
}

.cwe-cart-buttons .button {
    flex: 1;
    text-align: center;
    padding: 13px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

.cwe-view-cart {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
}

.cwe-view-cart:hover {
    background: #f5f5f5 !important;
}

.cwe-checkout {
    background: #2563eb !important;
    border: none !important;
    color: #fff !important;
}

.cwe-checkout:hover {
    background: #1d4ed8 !important;
}

/* Header of side cart */
.cwe-side-cart-header {
    padding: 16px 20px;
}

.cwe-side-cart-header h3 {
    font-size: 17px;
    font-weight: 700;
}

.cwe-cart-count-badge {
    background: #222;
    color: #fff;
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    margin-left: 4px;
}

/* ========== Free Shipping Progress Bar ========== */
.cwe-fs-bar {
    background: var(--cwe-fs-bg, #f0fdf4);
    color: var(--cwe-fs-text, #166534);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.cwe-fs-bar-page {
    margin: 0 0 20px;
    padding: 14px 18px;
}

.cwe-fs-bar-side {
    margin: 0 0 12px;
    font-size: 13px;
}

.cwe-fs-message {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.cwe-fs-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.cwe-fs-progress {
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.cwe-fs-progress-fill {
    height: 100%;
    background: var(--cwe-fs-bar, #22c55e);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.cwe-fs-achieved .cwe-fs-message {
    font-weight: 600;
}

.cwe-fs-achieved .cwe-fs-progress-fill {
    width: 100% !important;
}


/* ========== Ultra Compact Quantity ========== */
.cwe-side-cart .cwe-cart-item-qty {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 90px !important;
    height: 26px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: none !important;
    margin-top: 6px !important;
}

.cwe-side-cart .cwe-qty-minus,
.cwe-side-cart .cwe-qty-plus {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    border: none !important;
    background: #f5f5f5 !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #444 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.cwe-side-cart .cwe-qty-minus:hover,
.cwe-side-cart .cwe-qty-plus:hover {
    background: #ebebeb !important;
    color: #111 !important;
}

.cwe-side-cart .cwe-qty-input {
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 26px !important;
    border: none !important;
    border-left: 1px solid #eee !important;
    border-right: 1px solid #eee !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #222 !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
    box-sizing: border-box !important;
}

.cwe-side-cart .cwe-qty-input::-webkit-outer-spin-button,
.cwe-side-cart .cwe-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.cwe-side-cart .cwe-cart-item-details {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}



/* Default square-ish floating (radius controlled via settings) */
.cwe-floating-cart {
    border-radius: 8px;
}

/* Cart footer buttons layout */
.cwe-cart-buttons.cwe-buttons-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cwe-cart-buttons.cwe-buttons-block .button {
    width: 100%;
    text-align: center;
}
.cwe-cart-buttons.cwe-buttons-inline {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.cwe-cart-buttons.cwe-buttons-inline .button {
    flex: 1 1 0;
    text-align: center;
}

/* Beautiful remove button */
.cwe-cart-item-remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 8px !important;
    background: #fef2f2 !important;
    color: #dc2626 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    line-height: 1 !important;
}
.cwe-cart-item-remove:hover {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    transform: scale(1.05);
}
.cwe-cart-item-remove:active {
    transform: scale(0.96);
}
.cwe-cart-item-remove svg {
    display: block;
    pointer-events: none;
}



/* ========== Product Page Modern Quantity (− 1 +) — unified box ========== */
.single-product form.cart .quantity,
.cwe-sticky-atc .quantity {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: auto !important;
    min-width: 112px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: 0 1px 2px rgba(16,24,40,0.06) !important;
    float: none !important;
}

/* Hide EVERY theme +/- / spinner UI */
.single-product form.cart .quantity .minus,
.single-product form.cart .quantity .plus,
.single-product form.cart .quantity button.minus,
.single-product form.cart .quantity button.plus,
.single-product form.cart .quantity a.minus,
.single-product form.cart .quantity a.plus,
.single-product form.cart .quantity .quantity-minus,
.single-product form.cart .quantity .quantity-plus,
.single-product form.cart .quantity button[class*="minus"],
.single-product form.cart .quantity button[class*="plus"],
.single-product form.cart .quantity .qty-button,
.cwe-sticky-atc .quantity .minus,
.cwe-sticky-atc .quantity .plus {
    display: none !important;
}

/* Our buttons */
.single-product form.cart .quantity .cwe-q-minus,
.single-product form.cart .quantity .cwe-q-plus,
.cwe-sticky-atc .quantity .cwe-q-minus,
.cwe-sticky-atc .quantity .cwe-q-plus {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #6b7280 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    outline: none !important;
}

.single-product form.cart .quantity .cwe-q-minus:hover,
.single-product form.cart .quantity .cwe-q-plus:hover,
.cwe-sticky-atc .quantity .cwe-q-minus:hover,
.cwe-sticky-atc .quantity .cwe-q-plus:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
}

/* Number input only */
.single-product form.cart .quantity input.qty,
.single-product form.cart .quantity input[type="number"],
.cwe-sticky-atc .quantity input.qty {
    display: block !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 48px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-left: 1px solid #f3f4f6 !important;
    border-right: 1px solid #f3f4f6 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.single-product form.cart .quantity input.qty::-webkit-outer-spin-button,
.single-product form.cart .quantity input.qty::-webkit-inner-spin-button,
.single-product form.cart .quantity input[type="number"]::-webkit-outer-spin-button,
.single-product form.cart .quantity input[type="number"]::-webkit-inner-spin-button,
.cwe-sticky-atc .quantity input.qty::-webkit-outer-spin-button,
.cwe-sticky-atc .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}
