/* ================================
   CART PAGE
   ================================ */

.woocommerce-cart {
    background: #ffffff;
    color: #111111;
}

.woocommerce-cart .woocommerce {
    color: #111111;
}

/* ================================
   MAIN CART FORM
   ================================ */

.woocommerce-cart .woocommerce-cart-form {
    background: #ffffff !important;
    border-radius: 30px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
}

/* Cart table */

.woocommerce-cart table.shop_table {
    width: 100% !important;
    background: #ffffff !important;

    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;

    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

/* Header */

.woocommerce-cart table.shop_table thead th {
    background: #f7f7f8 !important;
    color: #111111 !important;

    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;

    padding: 22px 20px !important;

    font-weight: 900 !important;
    font-size: 15px !important;
}

/* Cells */

.woocommerce-cart table.shop_table tbody td {
    background: #ffffff !important;
    color: #111111 !important;

    border: none !important;
    border-bottom: 1px dashed rgba(0,0,0,0.10) !important;

    padding: 22px 20px !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.shop_table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Links */

.woocommerce-cart table.shop_table td a {
    color: #111111 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.woocommerce-cart table.shop_table td a:hover {
    color: var(--primary) !important;
}

/* Product image */

.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 96px !important;
    height: 96px !important;

    object-fit: contain;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 18px;
    padding: 6px;
}

/* Product name */

.woocommerce-cart table.shop_table .product-name {
    font-weight: 900 !important;
    line-height: 1.45 !important;
}

.woocommerce-cart table.shop_table .product-name .variation,
.woocommerce-cart table.shop_table .product-name .variation * {
    color: #555555 !important;
    font-weight: 600 !important;
}

/* Price */

.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal,
.woocommerce-cart table.shop_table .product-price *,
.woocommerce-cart table.shop_table .product-subtotal * {
    color: #111111 !important;
    font-weight: 900 !important;
}

/* Quantity */

.woocommerce-cart table.shop_table .quantity {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 44px !important;

    border: 1px solid var(--primary) !important;
    border-radius: 0 !important;
    overflow: hidden !important;

    background: #ffffff !important;
}

.woocommerce-cart table.shop_table .quantity input {
    width: 56px !important;
    min-height: 42px !important;

    text-align: center !important;

    border: none !important;
    background: #ffffff !important;
    color: #111111 !important;

    padding: 0 !important;
}

/* Remove icon */

.woocommerce-cart table.shop_table .product-remove a {
    color: #777777 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

.woocommerce-cart table.shop_table .product-remove a:hover {
    color: var(--primary) !important;
}

/* ================================
   COUPON / ACTIONS
   ================================ */

.woocommerce-cart table.shop_table td.actions {
    background: #ffffff !important;
    padding: 22px !important;
}

.woocommerce-cart .coupon {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.woocommerce-cart .coupon input {
    min-height: 54px !important;

    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.12) !important;

    background: #ffffff !important;
    color: #111111 !important;

    padding: 0 18px !important;
    box-shadow: none !important;
}

/* Buttons */

.woocommerce-cart .button,
.woocommerce-cart .checkout-button {
    min-height: 54px !important;

    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 16px !important;

    padding: 0 24px !important;

    font-weight: 900 !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart .checkout-button:hover {
    background: var(--primary-hover) !important;
    color: #ffffff !important;

    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255,0,0,0.22);
}

/* Disabled update cart */

.woocommerce-cart .button:disabled,
.woocommerce-cart .button[disabled],
.woocommerce-cart .button.disabled {
    opacity: .55 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ================================
   CART TOTALS — LIKE CHECKOUT
   ================================ */

.woocommerce-cart .cart-collaterals {
    margin-top: 0 !important;
}

.woocommerce-cart .cart_totals {
    width: 100% !important;

    background: #ffffff !important;
    color: #111111 !important;

    border-radius: 30px !important;
    padding: 28px !important;

    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.10) !important;

    overflow: visible !important;
}

.woocommerce-cart .cart_totals h2 {
    color: #111111 !important;

    font-size: 20px !important;
    font-weight: 900 !important;

    margin: 0 0 22px !important;
}

/* Totals table */

.woocommerce-cart .cart_totals table,
.woocommerce-cart .cart_totals table.shop_table {
    width: 100% !important;

    background: #f7f7f8 !important;

    border: none !important;
    border-radius: 22px !important;

    overflow: hidden !important;
    box-shadow: none !important;

    border-collapse: separate !important;
    border-spacing: 0 !important;

    margin: 0 0 22px !important;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    background: transparent !important;
    color: #111111 !important;

    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;

    padding: 15px 16px !important;

    line-height: 1.45 !important;
    vertical-align: top !important;
}

.woocommerce-cart .cart_totals table tr:last-child th,
.woocommerce-cart .cart_totals table tr:last-child td {
    border-bottom: none !important;
}

.woocommerce-cart .cart_totals table th {
    font-weight: 900 !important;
    text-align: left !important;
}

.woocommerce-cart .cart_totals table td {
    text-align: right !important;
}

.woocommerce-cart .cart_totals .amount {
    color: var(--primary) !important;
    font-weight: 900 !important;
}

.woocommerce-cart .cart_totals small,
.woocommerce-cart .cart_totals .tax_label {
    color: #555555 !important;
    font-size: 12px !important;
}

/* Shipping text */

.woocommerce-cart .cart_totals .woocommerce-shipping-methods,
.woocommerce-cart .cart_totals .woocommerce-shipping-methods li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
    color: #555555 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.woocommerce-cart .cart_totals .shipping-calculator-button {
    color: #111111 !important;
    font-weight: 900 !important;
}

.woocommerce-cart .cart_totals .shipping-calculator-button:hover {
    color: var(--primary) !important;
}

/* Checkout button */

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 60px !important;

    margin: 0 !important;

    border-radius: 18px !important;

    font-size: 18px !important;
    font-weight: 900 !important;
}

/* ================================
   CROSS SELLS / RECOMMENDED
   ================================ */

.woocommerce-cart .cross-sells {
    margin-top: 36px !important;
}

.woocommerce-cart .cross-sells h2 {
    color: #111111 !important;
    font-weight: 900 !important;
}

/* ================================
   CART FINAL — DESKTOP + MOBILE
   ================================ */

/* Ховаємо дубль Blocksy всередині назви товару */
.woocommerce-cart table.shop_table .product-name .product-mobile-actions,
.woocommerce-cart table.shop_table .product-name .price.ct-hidden-sm,
.woocommerce-cart table.shop_table .product-name .price.ct-hidden-md,
.woocommerce-cart table.shop_table .product-name .ct-product-multiply-symbol {
    display: none !important;
}

/* ================================
   DESKTOP QUANTITY
   ================================ */

@media (min-width: 769px) {

    .woocommerce-cart table.shop_table .product-quantity {
        text-align: center !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity {
        display: inline-grid !important;
        grid-template-columns: 38px 48px 38px !important;
        align-items: center !important;

        width: 124px !important;
        min-width: 124px !important;
        max-width: 124px !important;

        height: 42px !important;
        min-height: 42px !important;

        background: #ffffff !important;
        border: 1px solid var(--primary) !important;
        border-radius: 14px !important;

        overflow: hidden !important;
        box-shadow: none !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease {
        order: 1 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity input.qty {
        order: 2 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase {
        order: 3 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity label,
    .woocommerce-cart table.shop_table .product-quantity .quantity .screen-reader-text {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip-path: inset(50%) !important;
        white-space: nowrap !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease,
    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase {
        width: 38px !important;
        height: 42px !important;
        min-height: 42px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        border-radius: 0 !important;

        font-size: 0 !important;
        line-height: 1 !important;

        cursor: pointer !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease {
        background: #ffffff !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase {
        background: var(--primary) !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease::before {
        content: "−";
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #777777 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase::before {
        content: "+";
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #ffffff !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity input.qty {
        display: block !important;

        width: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;

        height: 42px !important;
        min-height: 42px !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        border-left: 1px solid rgba(0,0,0,0.08) !important;
        border-right: 1px solid rgba(0,0,0,0.08) !important;
        border-radius: 0 !important;

        background: #ffffff !important;
        color: #111111 !important;
        -webkit-text-fill-color: #111111 !important;

        text-align: center !important;
        font-size: 16px !important;
        font-weight: 900 !important;

        opacity: 1 !important;
        visibility: visible !important;

        box-shadow: none !important;

        appearance: textfield !important;
        -moz-appearance: textfield !important;
    }

    .woocommerce-cart table.shop_table .product-quantity input.qty::-webkit-outer-spin-button,
    .woocommerce-cart table.shop_table .product-quantity input.qty::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }
}

/* ================================
   MOBILE CART
   ================================ */

@media (max-width: 768px) {

    .woocommerce-cart .entry-content,
    .woocommerce-cart .woocommerce {
        overflow-x: hidden !important;
    }

    .woocommerce-cart .woocommerce-cart-form {
        border-radius: 26px !important;
        overflow: hidden !important;
    }

    .woocommerce-cart table.shop_table {
        display: block !important;
        width: 100% !important;
        border-radius: 26px !important;
        overflow: hidden !important;
    }

    .woocommerce-cart table.shop_table thead {
        display: none !important;
    }

    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table tr,
    .woocommerce-cart table.shop_table td {
        display: block !important;
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table td::before {
        display: none !important;
        content: none !important;
    }

    .woocommerce-cart table.shop_table tr.cart_item {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        padding: 22px !important;

        background: #ffffff !important;
        border-bottom: 1px dashed rgba(0,0,0,0.12) !important;
    }

    .woocommerce-cart table.shop_table tr.cart_item td {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;

        float: none !important;
        clear: none !important;

        background: transparent !important;
        text-align: left !important;
    }

    /* Фото */
    .woocommerce-cart table.shop_table .product-thumbnail {
        order: 1 !important;
        margin-bottom: 18px !important;
        text-align: center !important;
    }

    .woocommerce-cart table.shop_table .product-thumbnail img {
        width: 220px !important;
        height: 220px !important;
        max-width: 100% !important;

        object-fit: contain !important;

        background: #ffffff !important;
        border: 1px solid rgba(0,0,0,0.10) !important;
        border-radius: 26px !important;

        padding: 8px !important;
        margin: 0 auto !important;
    }

    /* Назва */
    .woocommerce-cart table.shop_table .product-name {
        order: 2 !important;

        padding-right: 42px !important;
        margin-bottom: 18px !important;

        font-size: 22px !important;
        line-height: 1.25 !important;
        font-weight: 900 !important;

        color: #111111 !important;
        text-align: left !important;
    }

    .woocommerce-cart table.shop_table .product-name a {
        display: block !important;
        color: #111111 !important;
        text-decoration: none !important;
    }

    /* Смітник */
    .woocommerce-cart table.shop_table .product-remove {
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;

        width: auto !important;
        height: auto !important;

        display: block !important;
        z-index: 5 !important;
    }

    .woocommerce-cart table.shop_table .product-remove a {
        color: #6f777d !important;
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .woocommerce-cart table.shop_table .product-remove a:hover {
        color: var(--primary) !important;
    }

    /* Ціну за одиницю ховаємо */
    .woocommerce-cart table.shop_table .product-price {
        display: none !important;
    }

    /* Кількість */
    .woocommerce-cart table.shop_table .product-quantity {
        order: 3 !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        margin: 0 0 20px !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity {
        display: grid !important;
        grid-template-columns: 52px 70px 52px !important;
        align-items: center !important;

        width: 174px !important;
        min-width: 174px !important;
        max-width: 174px !important;

        height: 54px !important;
        min-height: 54px !important;

        background: #ffffff !important;
        border: 1px solid var(--primary) !important;
        border-radius: 20px !important;

        overflow: hidden !important;
        box-shadow: none !important;
        position: relative !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease {
        order: 1 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity input.qty {
        order: 2 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase {
        order: 3 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity label,
    .woocommerce-cart table.shop_table .product-quantity .quantity .screen-reader-text {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip-path: inset(50%) !important;
        white-space: nowrap !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease,
    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase {
        width: 52px !important;
        height: 54px !important;
        min-height: 54px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        border-radius: 0 !important;

        font-size: 0 !important;
        line-height: 1 !important;

        cursor: pointer !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease {
        background: #ffffff !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase {
        background: var(--primary) !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-decrease::before {
        content: "−";
        font-size: 26px !important;
        font-weight: 800 !important;
        color: #777777 !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity .ct-increase::before {
        content: "+";
        font-size: 28px !important;
        font-weight: 800 !important;
        color: #ffffff !important;
    }

    .woocommerce-cart table.shop_table .product-quantity .quantity input.qty {
        display: block !important;

        width: 70px !important;
        min-width: 70px !important;
        max-width: 70px !important;

        height: 54px !important;
        min-height: 54px !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        border-left: 1px solid rgba(0,0,0,0.08) !important;
        border-right: 1px solid rgba(0,0,0,0.08) !important;
        border-radius: 0 !important;

        background: #ffffff !important;
        color: #111111 !important;
        -webkit-text-fill-color: #111111 !important;

        text-align: center !important;

        font-size: 22px !important;
        font-weight: 900 !important;
        line-height: 54px !important;

        opacity: 1 !important;
        visibility: visible !important;

        box-shadow: none !important;

        appearance: textfield !important;
        -moz-appearance: textfield !important;
    }

    .woocommerce-cart table.shop_table .product-quantity input.qty::-webkit-outer-spin-button,
    .woocommerce-cart table.shop_table .product-quantity input.qty::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }

    /* Підсумок */
    .woocommerce-cart table.shop_table .product-subtotal {
        order: 4 !important;

        padding-top: 20px !important;
        margin-top: 0 !important;

        border-top: 1px dashed rgba(0,0,0,0.12) !important;

        font-size: 28px !important;
        line-height: 1.2 !important;
        font-weight: 900 !important;

        color: #111111 !important;
        text-align: left !important;
    }

    .woocommerce-cart table.shop_table .product-subtotal *,
    .woocommerce-cart table.shop_table .product-subtotal .amount {
        color: #111111 !important;
        font-weight: 900 !important;
    }

    /* Купон і кнопки */
    .woocommerce-cart table.shop_table tr:not(.cart_item),
    .woocommerce-cart table.shop_table td.actions {
        display: block !important;
        width: 100% !important;

        padding: 22px !important;
        background: #ffffff !important;
        border: none !important;
    }

    .woocommerce-cart .coupon {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .woocommerce-cart .coupon input,
    .woocommerce-cart .coupon .button,
    .woocommerce-cart table.shop_table td.actions > .button {
        width: 100% !important;
        min-height: 60px !important;
        font-size: 17px !important;
        border-radius: 20px !important;
    }

    /* Підсумки кошика */
    .woocommerce-cart .cart_totals {
        margin-top: 28px !important;
        padding: 20px !important;
        border-radius: 26px !important;
    }

    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td {
        display: block !important;
        width: 100% !important;

        text-align: left !important;
        padding: 12px 16px !important;
    }

    .woocommerce-cart .cart_totals table td {
        padding-top: 0 !important;
    }

    .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
        min-height: 60px !important;
        border-radius: 20px !important;
        font-size: 17px !important;
    }
}

/* ================================
   CART QUANTITY INPUT VISIBILITY FIX
   ================================ */

/* Сам контейнер кількості */
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] {
    display: grid !important;
    grid-template-columns: 42px 54px 42px !important;
    align-items: center !important;
    justify-content: center !important;

    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;

    height: 44px !important;
    min-height: 44px !important;

    padding: 0 !important;
    margin: 0 auto !important;

    background: #ffffff !important;
    border: 1px solid var(--primary) !important;
    border-radius: 16px !important;

    overflow: hidden !important;
    position: relative !important;
}

/* Порядок: мінус, число, плюс */
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-decrease {
    order: 1 !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input.input-text.qty.text {
    order: 2 !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-increase {
    order: 3 !important;
}

/* Ховаємо тільки label, не input */
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] label,
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Кнопки мінус/плюс */
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-decrease,
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-increase {
    width: 42px !important;
    height: 44px !important;
    min-height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    border-radius: 0 !important;

    font-size: 0 !important;
    line-height: 1 !important;

    position: static !important;
    transform: none !important;

    cursor: pointer !important;
    user-select: none !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-decrease {
    background: #ffffff !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-increase {
    background: var(--primary) !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-decrease::before {
    content: "−" !important;
    color: #777777 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-increase::before {
    content: "+" !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

/* Головне: примусово показуємо число */
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input.input-text.qty.text,
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input[type="number"] {
    display: block !important;
    position: static !important;

    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;

    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #ffffff !important;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;

    border: none !important;
    border-left: 1px solid rgba(0,0,0,0.08) !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 0 !important;

    text-align: center !important;

    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 44px !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
    clip: auto !important;
    clip-path: none !important;

    appearance: textfield !important;
    -moz-appearance: textfield !important;

    box-shadow: none !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input.qty::-webkit-outer-spin-button,
.woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* На телефоні робимо трохи більшим */
@media (max-width: 768px) {

    .woocommerce-cart table.shop_table td.product-quantity {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] {
        grid-template-columns: 52px 68px 52px !important;

        width: 172px !important;
        min-width: 172px !important;
        max-width: 172px !important;

        height: 54px !important;
        min-height: 54px !important;

        border-radius: 20px !important;
    }

    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-decrease,
    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-increase {
        width: 52px !important;
        height: 54px !important;
        min-height: 54px !important;
    }

    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input.input-text.qty.text,
    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] input[type="number"] {
        width: 68px !important;
        min-width: 68px !important;
        max-width: 68px !important;

        height: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;

        font-size: 22px !important;
        line-height: 54px !important;
    }

    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-decrease::before,
    .woocommerce-cart table.shop_table td.product-quantity .quantity[data-type="type-2"] .ct-increase::before {
        font-size: 26px !important;
    }
}