/* ═══════════════════════════════════════════════════════════════
   KOKKEN — WooCommerce Cart
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   1. PAGE LAYOUT
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
    .woocommerce-cart .woocommerce {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 0 28px;
        align-items: start;
    }

    .woocommerce-cart .woocommerce-notices-wrapper { grid-column: 1 / -1; }

    .woocommerce-cart form.woocommerce-cart-form {
        grid-column: 1;
        grid-row: 2;
        min-width: 0;
    }

    .woocommerce-cart .cart-collaterals {
        grid-column: 2;
        grid-row: 2;
        position: sticky;
        top: 24px;
        min-width: 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   2. CART TABLE
   table-layout: fixed → browser MUST use the th widths,
   ignores the natural image size (300px → 68px)
   ══════════════════════════════════════════════════════════════ */

.woocommerce-cart table.shop_table.cart {
    border: none !important;
    border-collapse: collapse !important;
    width: 100% !important;
    table-layout: fixed !important;   /* ← KEY FIX */
}

/* ── Column widths (set on <th>, honored by fixed layout) ────── */
.woocommerce-cart table.shop_table.cart thead th.product-remove    { width: 44px !important; }
.woocommerce-cart table.shop_table.cart thead th.product-thumbnail { width: 88px !important; }
/* th.product-name → no width → gets all remaining space          */
.woocommerce-cart table.shop_table.cart thead th.product-price    { width: 110px !important; }
.woocommerce-cart table.shop_table.cart thead th.product-quantity { width: 120px !important; }
.woocommerce-cart table.shop_table.cart thead th.product-subtotal { width: 110px !important; }

/* ── Header style ───────────────────────────────────────────── */
.woocommerce-cart table.shop_table.cart thead tr {
    border-bottom: 2px solid #f0f0f0 !important;
}

.woocommerce-cart table.shop_table.cart thead th {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.09em !important;
    color: #c0c0c0 !important;
    padding: 0 10px 14px !important;
    border: none !important;
    background: none !important;
    overflow: hidden !important;
    text-align: left !important;
}

/* Per-column alignment — th & td match */
.woocommerce-cart table.shop_table.cart th.product-price,
.woocommerce-cart table.shop_table.cart td.product-price    { text-align: left !important; }

.woocommerce-cart table.shop_table.cart th.product-quantity { text-align: center !important; }

.woocommerce-cart table.shop_table.cart th.product-subtotal,
.woocommerce-cart table.shop_table.cart td.product-subtotal { text-align: right !important; }

/* ── Rows ───────────────────────────────────────────────────── */
.woocommerce-cart table.shop_table.cart tbody tr.cart_item {
    border-bottom: 1px solid #f2f2f2 !important;
    transition: background 0.12s;
}

.woocommerce-cart table.shop_table.cart tbody tr.cart_item:hover {
    background: #fafafa !important;
}

.woocommerce-cart table.shop_table.cart tbody tr.cart_item td {
    padding: 16px 10px !important;
    vertical-align: middle !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden !important;
}

/* ── Remove ─────────────────────────────────────────────────── */
.woocommerce-cart table.shop_table.cart td.product-remove {
    padding: 16px 8px 16px 0 !important;
    text-align: center !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #efefef !important;
    color: #999 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s !important;
    border: none !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* ── Thumbnail — constrained to 68px regardless of image size ── */
.woocommerce-cart table.shop_table.cart td.product-thumbnail {
    padding: 14px 10px 14px 0 !important;
    overflow: hidden !important;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail a {
    display: block !important;
    width: 68px !important;
    height: 68px !important;
    border-radius: 8px !important;
    border: 1px solid #eee !important;
    background: #f7f7f7 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
    display: block !important;
    width: 68px !important;
    height: 68px !important;
    max-width: 68px !important;
    max-height: 68px !important;
    object-fit: contain !important;
    padding: 5px !important;
    box-sizing: border-box !important;
}

/* ── Product name ───────────────────────────────────────────── */
.woocommerce-cart table.shop_table.cart td.product-name {
    padding-right: 12px !important;
    overflow: hidden !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    line-height: 1.45 !important;
    transition: color 0.15s !important;
    display: block !important;
    word-break: break-word !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a:hover { color: #555 !important; }

/* ── Price & Subtotal ───────────────────────────────────────── */
.woocommerce-cart table.shop_table.cart td.product-price,
.woocommerce-cart table.shop_table.cart td.product-subtotal {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}
/* subtotal text-align: right defined in per-column section above */

.woocommerce-cart table.shop_table.cart td.product-price bdi,
.woocommerce-cart table.shop_table.cart td.product-subtotal bdi {
    color: #1a1a1a !important;
}

/* ── Quantity cell — center the whole group under the header ── */
.woocommerce-cart table.shop_table.cart td.product-quantity {
    text-align: center !important;
}

/* ── Quantity wrapper — flex row for −  input  + ───────────── */
.woocommerce-cart table.shop_table.cart td.product-quantity .quantity {
    display: inline-flex !important;
    align-items: center !important;
}

/* ── +/- buttons ─────────────────────────────────────────────── */
.woocommerce-cart .kk-qty-btn {
    width: 32px !important;
    height: 38px !important;
    background: #f5f5f5 !important;
    border: 1.5px solid #ddd !important;
    color: #1a1a1a !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s, border-color 0.15s, color 0.15s !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
    user-select: none !important;
}

.woocommerce-cart .kk-qty-minus {
    border-radius: 7px 0 0 7px !important;
    border-right: none !important;
}

.woocommerce-cart .kk-qty-plus {
    border-radius: 0 7px 7px 0 !important;
    border-left: none !important;
}

.woocommerce-cart .kk-qty-btn:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important;
}

/* ── Quantity input (μεταξύ − και +) ─────────────────────────── */
.woocommerce-cart table.shop_table.cart td.product-quantity .qty {
    width: 46px !important;
    height: 38px !important;
    border: 1.5px solid #ddd !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    background: #fff !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
    outline: none !important;
    transition: border-color 0.15s !important;
    box-shadow: none !important;
    font-family: inherit !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity .qty:focus {
    border-color: #1a1a1a !important;
    position: relative !important;
    z-index: 1 !important;
}

.woocommerce-cart table.shop_table.cart td.product-quantity .qty::-webkit-inner-spin-button,
.woocommerce-cart table.shop_table.cart td.product-quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   3. ACTIONS ROW (coupon + update)
   ══════════════════════════════════════════════════════════════ */

.woocommerce-cart table.shop_table.cart td.actions {
    border-top: 2px solid #f0f0f0 !important;
    border-bottom: none !important;
    padding: 20px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    overflow: visible !important;
}

.woocommerce-cart .coupon {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.woocommerce-cart .coupon label { display: none !important; }

.woocommerce-cart .coupon #coupon_code {
    height: 40px !important;
    border: 1.5px solid #ddd !important;
    border-radius: 7px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    color: #1a1a1a !important;
    outline: none !important;
    width: 150px !important;
    background: #fff !important;
    font-family: inherit !important;
    transition: border-color 0.15s !important;
}

.woocommerce-cart .coupon #coupon_code::placeholder { color: #ccc !important; }
.woocommerce-cart .coupon #coupon_code:focus { border-color: #1a1a1a !important; }

.woocommerce-cart .coupon .button {
    height: 40px !important;
    padding: 0 14px !important;
    background: #fff !important;
    border: 1.5px solid #1a1a1a !important;
    border-radius: 7px !important;
    color: #1a1a1a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.15s, color 0.15s !important;
    white-space: nowrap !important;
    font-family: inherit !important;
}

.woocommerce-cart .coupon .button:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* Same style as coupon button — always active-looking */
.woocommerce-cart button[name="update_cart"] {
    height: 40px !important;
    padding: 0 14px !important;
    background: #fff !important;
    border: 1.5px solid #1a1a1a !important;
    border-radius: 7px !important;
    color: #1a1a1a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.15s, color 0.15s !important;
    font-family: inherit !important;
    white-space: nowrap !important;
    opacity: 1 !important;
}

.woocommerce-cart button[name="update_cart"]:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

.woocommerce-cart button[name="update_cart"]:disabled {
    border-color: #ddd !important;
    color: #bbb !important;
    background: #fff !important;
    cursor: default !important;
    opacity: 0.5 !important;
}

/* ══════════════════════════════════════════════════════════════
   4. CART TOTALS
   table-layout: auto here → th takes natural width (no wrapping)
   ══════════════════════════════════════════════════════════════ */

.cart_totals {
    background: #f9f9f9 !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 14px !important;
    padding: 24px 24px 22px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.cart_totals h2 {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin: 0 0 18px !important;
    padding-bottom: 14px !important;
    border-bottom: 2px solid #e5e5e5 !important;
    white-space: nowrap !important;
}

.cart_totals table.shop_table {
    border: none !important;
    width: 100% !important;
    border-collapse: collapse !important;
    background: transparent !important;
    table-layout: auto !important;   /* auto → th takes natural width */
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
    padding: 12px 0 !important;
    border: none !important;
    border-bottom: 1px solid #eee !important;
    vertical-align: top !important;
    background: transparent !important;
}

.cart_totals table.shop_table th {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #888 !important;
    white-space: nowrap !important;  /* ← never break labels */
    padding-right: 14px !important;
}

.cart_totals table.shop_table td {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-align: right !important;
}

.cart_totals table.shop_table td bdi {
    color: #1a1a1a !important;
}

/* ── Shipping — label αριστερά (th), επιλογές δεξιά (td) ────── */
.cart_totals table.shop_table tr.shipping {
    border-bottom: 1px solid #eee !important;
}

.cart_totals table.shop_table tr.shipping th {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #888 !important;
    white-space: nowrap !important;
    padding-right: 14px !important;
    vertical-align: top !important;
}

.cart_totals table.shop_table tr.shipping td {
    text-align: right !important;
    padding: 12px 0 !important;
    border: none !important;
    border-bottom: none !important;
}

.cart_totals table.shop_table tr.shipping ul#shipping_method {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cart_totals table.shop_table tr.shipping ul#shipping_method li {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    margin-bottom: 9px !important;
}

.cart_totals table.shop_table tr.shipping ul#shipping_method li:last-child {
    margin-bottom: 0 !important;
}

.cart_totals table.shop_table tr.shipping ul#shipping_method li input[type="radio"] {
    accent-color: #1a1a1a !important;
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
    cursor: pointer !important;
    order: 2 !important;
}

.cart_totals table.shop_table tr.shipping ul#shipping_method li label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
    text-align: right !important;
    order: 1 !important;
}

.cart_totals .woocommerce-shipping-destination {
    font-size: 11px !important;
    color: #bbb !important;
    margin-top: 8px !important;
    font-weight: 400 !important;
    display: block !important;
    line-height: 1.4 !important;
    text-align: right !important;
}

/* ── Order total ────────────────────────────────────────────── */
.cart_totals table.shop_table tr.order-total th,
.cart_totals table.shop_table tr.order-total td {
    border-bottom: none !important;
    padding-top: 16px !important;
    padding-bottom: 0 !important;
}

.cart_totals table.shop_table tr.order-total th {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}

.cart_totals table.shop_table tr.order-total td {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
}

.cart_totals table.shop_table tr.order-total small.includes_tax {
    display: block !important;
    font-size: 11px !important;
    color: #aaa !important;
    font-weight: 400 !important;
    margin-top: 4px !important;
    text-align: right !important;
    white-space: normal !important;
}

/* ── Checkout button ────────────────────────────────────────── */
.wc-proceed-to-checkout {
    margin-top: 18px !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Beats WooCommerce .button / .button.alt / .wc-forward specificity */
.woocommerce-cart .wc-proceed-to-checkout a,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.button,
.woocommerce-cart .wc-proceed-to-checkout a.button.alt {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 12px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 9px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-decoration: none !important;
    letter-spacing: 0.02em !important;
    transition: background 0.18s !important;
    cursor: pointer !important;
    font-family: inherit !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: normal !important;
}

.woocommerce-cart .wc-proceed-to-checkout a:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.button.alt:hover {
    background: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.wc-proceed-to-checkout::after {
    content: '🔒 Ασφαλής πληρωμή';
    display: block;
    text-align: center;
    font-size: 11px;
    color: #bbb;
    margin-top: 10px;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   5. WOOCOMMERCE NOTICES
   ══════════════════════════════════════════════════════════════ */

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-top: none !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}

/* Remove default WC arrow/icon before message */
.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before {
    display: none !important;
}

/* "Αναίρεση;" link inside message */
.woocommerce-cart .woocommerce-message a,
.woocommerce-cart .woocommerce-message a.restore-item,
.woocommerce-cart .woocommerce-info a {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    margin-left: auto !important;
    transition: color 0.15s !important;
}

.woocommerce-cart .woocommerce-message a:hover,
.woocommerce-cart .woocommerce-message a.restore-item:hover,
.woocommerce-cart .woocommerce-info a:hover {
    color: #fff !important;
    text-decoration: none !important;
}

/* Error notice — dark red */
.woocommerce-cart .woocommerce-error {
    background: #c0392b !important;
}

/* ══════════════════════════════════════════════════════════════
   6. EMPTY CART
   ══════════════════════════════════════════════════════════════ */

.woocommerce-cart .cart-empty {
    text-align: center !important;
    padding: 80px 20px !important;
    color: #888 !important;
    font-size: 18px !important;
}

.return-to-shop { text-align: center !important; }

.return-to-shop a.button {
    display: inline-block !important;
    padding: 14px 36px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border: none !important;
    transition: background 0.15s !important;
}

.return-to-shop a.button:hover {
    background: #333 !important;
    color: #fff !important;
}

/* ══════════════════════════════════════════════════════════════
   7. MOBILE  ≤ 767px
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
    .woocommerce-cart .cart-collaterals { margin-top: 32px !important; }
}

@media (max-width: 767px) {

    /* ── Header κρυμμένο ────────────────────────────────────────── */
    .woocommerce-cart table.shop_table.cart thead { display: none !important; }

    /* ── Κενό πριν το πρώτο προϊόν ─────────────────────────────── */
    .woocommerce-cart form.woocommerce-cart-form { margin-top: 0 !important; }
    .woocommerce-cart table.shop_table.cart { margin-top: 0 !important; border: none !important; }

    /* ── Table / tbody / tfoot → block ─────────────────────────── */
    .woocommerce-cart table.shop_table.cart,
    .woocommerce-cart table.shop_table.cart tbody,
    .woocommerce-cart table.shop_table.cart tfoot,
    .woocommerce-cart table.shop_table.cart tfoot tr { display: block !important; }

    /* ══════════════════════════════════════════════════════════════
       CARD LAYOUT — κάθε tr.cart_item σαν flex wrap:

       [ × ]  [ img ]
       [ Όνομα Προϊόντος (full width)    ]
       [ Τιμή          40,00€            ]
       [ Ποσότητα      - 1 +             ]
       [ Υποσύνολο     40,00€            ]
       ══════════════════════════════════════════════════════════════ */
    /* ── Κάθε προϊόν = card ────────────────────────────────────── */
    .woocommerce-cart table.shop_table.cart tr.cart_item {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 14px 14px 10px 14px !important;
        margin-bottom: 12px !important;
        border: 1px solid #e8e8e8 !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
        position: relative !important;
    }

    /* ── Κρύβουμε ::before σε όλα εκτός από price/qty/subtotal ─── */
    .woocommerce-cart table.shop_table.cart td.product-remove::before,
    .woocommerce-cart table.shop_table.cart td.product-thumbnail::before,
    .woocommerce-cart table.shop_table.cart td.product-name::before {
        display: none !important;
        content: none !important;
    }

    /* ── Remove (×) — absolute overlay πάνω-δεξιά στο card ────── */
    .woocommerce-cart table.shop_table.cart td.product-remove {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        width: auto !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
        display: block !important;
        z-index: 10 !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-remove a.remove {
        background: #fff !important;
        border: 1.5px solid #e0e0e0 !important;
        box-shadow: 0 2px 6px rgba(0,0,0,.1) !important;
    }

    /* ── Thumbnail — full width ─────────────────────────────────── */
    .woocommerce-cart table.shop_table.cart td.product-thumbnail {
        flex: 0 0 100% !important;
        padding: 0 0 10px 0 !important;
        border: none !important;
        display: block !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-thumbnail a {
        display: block !important;
        width: 100% !important;
        height: 180px !important;
        border-radius: 10px !important;
        border: 1px solid #eee !important;
        background: #fff !important;
        overflow: hidden !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-thumbnail img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }

    /* ── Όνομα — full width (νέα γραμμή) ───────────────────────── */
    .woocommerce-cart table.shop_table.cart td.product-name {
        flex: 0 0 100% !important;
        padding: 0 0 4px 0 !important;
        border: none !important;
        display: block !important;
        text-align: left !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-name a {
        font-size: 15px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
        color: #1a1a1a !important;
        white-space: normal !important;
        text-align: left !important;
        display: block !important;
    }

    /* ── Τιμή / Ποσότητα / Υποσύνολο — full width rows ─────────── */
    /* Χρειάζεται tbody tr.cart_item για να κερδίσει το desktop rule */
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-price,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-quantity,
    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-subtotal {
        flex: 0 0 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 6px 0 !important;
        margin: 0 !important;
        border: none !important;
        border-top: 1px solid #f2f2f2 !important;
        min-height: 0 !important;
        line-height: 1.2 !important;
    }

    /* Labels (custom — αγνοούμε attr(data-title) για έλεγχο) */
    .woocommerce-cart table.shop_table.cart td.product-price::before {
        content: "Τιμή" !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #aaa !important;
        text-transform: uppercase !important;
        letter-spacing: .05em !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-quantity::before {
        content: "Ποσότητα" !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #aaa !important;
        text-transform: uppercase !important;
        letter-spacing: .05em !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .woocommerce-cart table.shop_table.cart tbody tr.cart_item td.product-subtotal {
        border-top: 1px solid #e0e0e0 !important;
        margin-top: 0 !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-subtotal::before {
        content: "Υποσύνολο" !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        text-transform: uppercase !important;
        letter-spacing: .05em !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .woocommerce-cart table.shop_table.cart td.product-subtotal .woocommerce-Price-amount {
        font-size: 16px !important;
        font-weight: 800 !important;
        color: #1a1a1a !important;
    }

    /* ── Qty buttons mobile ─────────────────────────────────────── */
    .woocommerce-cart .kk-qty-btn {
        width: 30px !important;
        height: 36px !important;
        font-size: 15px !important;
    }
    .woocommerce-cart table.shop_table.cart td.product-quantity .qty {
        width: 40px !important;
        height: 36px !important;
        font-size: 13px !important;
    }

    /* ── Actions row ────────────────────────────────────────────── */
    .woocommerce-cart table.shop_table.cart tr.actions { display: block !important; }
    .woocommerce-cart table.shop_table.cart td.actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }
    .woocommerce-cart .coupon                    { flex-direction: column !important; }
    .woocommerce-cart .coupon #coupon_code       { width: 100% !important; }
    .woocommerce-cart .coupon .button,
    .woocommerce-cart button[name="update_cart"] { width: 100% !important; }

    /* ── Cart totals ────────────────────────────────────────────── */
    .cart_totals { padding: 20px 16px !important; border-radius: 12px !important; }

    /* Shipping: ήδη καλύπτεται από το global rule παραπάνω */
}
