/* ==========================================================================
   Cart, mini cart and checkout
   ========================================================================== */

/* ------------------------------------------------------------- mini cart -- */
.tdu-cart-wrap{position:relative}
.tdu-minicart{position:absolute;right:0;top:calc(100% + 12px);z-index:1050;width:min(92vw,360px);
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 24px 60px rgba(16,24,40,.24);
  padding:16px 18px 18px}
.tdu-minicart[hidden]{display:none}
.tdu-minicart::before{content:"";position:absolute;top:-7px;right:16px;width:12px;height:12px;background:#fff;
  border-left:1px solid var(--line);border-top:1px solid var(--line);transform:rotate(45deg)}
.mc-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding-bottom:10px;margin-bottom:12px;
  border-bottom:2px solid var(--line)}
.mc-head strong{font-size:14px;text-transform:uppercase;letter-spacing:.6px;color:var(--ink)}
.mc-close{border:0;background:none;font-size:22px;line-height:1;color:var(--muted);cursor:pointer;padding:0 2px}
.mc-close:hover{color:var(--red)}

.mc-list{list-style:none;margin:0;padding:0;max-height:min(46vh,320px);overflow-y:auto}
.mc-list li{display:flex;gap:11px;align-items:flex-start;padding:11px 0;border-bottom:1px solid var(--line);position:relative}
.mc-list li:last-child{border-bottom:none}
.mc-thumb{width:56px;height:46px;border-radius:8px;overflow:hidden;background:#eceef1;flex:none}
/* WooCommerce's widget CSS (.woocommerce ul.cart_list li img{width:32px}) is
   more specific and was shrinking the thumbnail to 32px, leaving the grey box
   showing around it. Override it so the image fills the thumb. */
.mc-thumb img,
.woocommerce ul.product_list_widget.mc-list li .mc-thumb img{width:100%!important;height:100%!important;
  max-width:none;object-fit:cover;display:block;float:none;margin:0}
.mc-body{min-width:0;flex:1;padding-right:18px}
.mc-name{display:block;font-size:13px;font-weight:700;color:var(--ink);line-height:1.35}
.mc-name:hover{color:var(--red)}
.mc-qty{display:block;font-size:13px;color:var(--muted);margin-top:3px}
.mc-qty .woocommerce-Price-amount{color:var(--red);font-weight:800}
.mc-list .remove{position:absolute;top:10px;right:0;width:20px;height:20px;border-radius:50%;display:grid;
  place-items:center;color:var(--muted);font-size:17px;line-height:1;background:#f2f3f5}
.mc-list .remove:hover{background:var(--red);color:#fff}
.mc-list dl.variation{margin:4px 0 0;font-size:12px;color:var(--muted)}
.mc-list dl.variation dt,.mc-list dl.variation dd{display:inline;margin:0;font-weight:600}
.mc-list dl.variation dd{margin-right:6px}
.mc-list dl.variation p{margin:0;display:inline}

.mc-totals{padding-top:12px;margin-top:4px;border-top:2px solid var(--gold)}
.mc-row{display:flex;justify-content:space-between;align-items:baseline;font-size:14px;color:var(--muted)}
.mc-row strong{font-size:19px;color:var(--red);font-weight:900}
.mc-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:14px}
.mc-actions .btn{width:100%}
.mc-empty{text-align:center;padding:14px 0 6px}
.mc-empty .ic{width:34px;height:34px;margin:0 auto 10px;color:#c9ced6}
.mc-empty p{color:var(--muted);font-size:14px;margin-bottom:12px}

/* ------------------------------------------------------------ cart page -- */
.cartpage{padding-block:8px 12px}
.cart-head{margin-bottom:26px}
.cart-head h1{font-size:clamp(26px,3.6vw,38px);font-weight:900;margin-bottom:6px}
.cart-head p{color:var(--muted);font-size:15.5px;margin:0}
.cart-head b{color:var(--ink)}

.cart-table-wrap{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);
  overflow:hidden}
.woocommerce table.shop_table.cart{width:100%;border:0;border-radius:0;margin:0;border-collapse:collapse}
.woocommerce table.shop_table.cart thead th{background:#fafbfc;border-bottom:1px solid var(--line);
  font-size:13px;text-transform:uppercase;letter-spacing:.6px;color:var(--muted);font-weight:800;padding:14px 16px;
  text-align:left}
.woocommerce table.shop_table.cart thead th.product-price,
.woocommerce table.shop_table.cart thead th.product-quantity,
.woocommerce table.shop_table.cart thead th.product-subtotal{text-align:left}
.woocommerce table.shop_table.cart thead th.product-remove{text-align:right}
.woocommerce table.shop_table.cart td{border-top:1px solid var(--line);padding:18px 16px;vertical-align:middle}
.woocommerce table.shop_table.cart tbody tr:first-child td{border-top:0}

/* WooCommerce ships `table.shop_table td.product-thumbnail img{width:32px}`,
   so the override has to carry at least the same specificity. */
.woocommerce table.shop_table.cart td.product-thumbnail{width:104px}
.woocommerce table.shop_table.cart td.product-thumbnail img,
.woocommerce-page table.shop_table.cart td.product-thumbnail img{
  width:88px;height:88px;object-fit:cover;border-radius:9px;display:block;max-width:none}
.ci-name{display:block;font-size:15px;font-weight:800;color:var(--ink);line-height:1.35;max-width:34ch}
.ci-name:hover{color:var(--red)}
.ci-sku,.ci-stock{display:block;font-size:13px;color:var(--muted);margin-top:4px}
.ci-stock{color:#8a5a13;font-weight:700}
td.product-name dl.variation{margin:6px 0 0;font-size:13px;color:var(--muted)}
td.product-name dl.variation dt,td.product-name dl.variation dd{display:inline;margin:0}
td.product-name dl.variation dt{font-weight:700;color:#4a4f57}
td.product-name dl.variation dd{margin-right:8px}
td.product-name dl.variation p{display:inline;margin:0}
td.product-price,td.product-subtotal{font-size:16px;font-weight:800;color:var(--ink);white-space:nowrap}
td.product-subtotal{color:var(--red);font-size:19px;font-weight:900}
td.product-price del{display:block;color:#b5b9bf;font-size:13px;font-weight:600}
td.product-price ins{text-decoration:none}
td.product-remove{text-align:right;width:70px}
.woocommerce table.shop_table.cart td.product-remove a.remove{width:38px;height:38px;border-radius:9px;
  border:1px solid var(--line);display:inline-grid;place-items:center;color:var(--muted);background:#fff;font-size:0;
  transition:.15s}
.woocommerce table.shop_table.cart td.product-remove a.remove svg{width:18px;height:18px}
.woocommerce table.shop_table.cart td.product-remove a.remove:hover{background:var(--red);border-color:var(--red);color:#fff}

/* The stepper styles live in product.css, which does not load on the cart, so
   the base rules are repeated here rather than left to fall back to unstyled. */
.qty{display:inline-flex;align-items:center;border:1.5px solid var(--line);border-radius:9px;background:#fff;
  overflow:hidden;flex:none}
.qty .qty-btn{width:38px;min-height:44px;border:none;background:none;font-size:18px;cursor:pointer;color:var(--ink);
  font-family:inherit;transition:.15s;padding:0;flex:none}
.qty .qty-btn:hover{background:#f2f3f5;color:var(--red)}
.woocommerce .qty .quantity{margin:0;float:none;display:flex}
.woocommerce .qty input[type=number],.qty input.qty{width:48px;border:none;text-align:center;font-size:15px;
  font-weight:800;font-family:inherit;outline:none;background:none;color:var(--ink);padding:0;
  -moz-appearance:textfield;box-shadow:none;min-height:44px}
.qty input[type=number]::-webkit-outer-spin-button,
.qty input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.qty-cart{max-width:136px}

.cart-actions{display:flex;gap:11px;flex-wrap:wrap;margin-top:18px}
.cart-coupon{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:22px 24px;margin-top:20px}
.cart-coupon h2{font-size:20px;font-weight:900;margin-bottom:5px}
.cart-coupon p{color:var(--muted);font-size:14px;margin-bottom:14px}
.coupon-row{display:flex;gap:10px;flex-wrap:wrap}
.coupon-row input[type=text]{flex:1;min-width:200px;height:48px;border:1.5px solid var(--line);border-radius:9px;
  padding:0 14px;font-size:15px;font-family:inherit;outline:none;transition:border-color .15s}
.coupon-row input[type=text]:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(226,33,28,.12)}
.coupon-row .btn{min-height:48px;padding-inline:28px}

/* ------------------------------------------------- summary card (shared) -- */
/* WooCommerce floats the totals at 48% inside .cart-collaterals, which here is
   already a Bootstrap column — left alone the card shrinks to half its column. */
.woocommerce .cart-collaterals{width:100%;float:none;padding:0;margin:0}
/* Width and float only — .cart_totals is the .summary-card itself, so resetting
   its padding here would strip the card's own inner spacing. */
.woocommerce .cart-collaterals .cart_totals{width:100%;float:none;margin:0}
.woocommerce .cart-collaterals::before,.woocommerce .cart-collaterals::after{display:none}

.summary-card,.co-summary{background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:22px 24px 24px}
@media(min-width:992px){.summary-card,.co-summary{position:sticky;top:calc(var(--header-h) + 14px)}}
.summary-card h2,.co-summary h2{font-size:18px;text-transform:uppercase;letter-spacing:.6px;margin:0 0 16px;
  padding-bottom:11px;border-bottom:2px solid var(--line);position:relative}
.summary-card h2::after,.co-summary h2::after{content:"";position:absolute;left:0;bottom:-2px;width:44px;height:2px;
  background:var(--red)}
.sum-row{display:flex;justify-content:space-between;align-items:baseline;gap:12px;padding:9px 0;font-size:15px;
  color:#4a4f57;border-bottom:1px dashed var(--line)}
.sum-row:last-of-type{border-bottom:none}
.sum-row span:last-child{font-weight:800;color:var(--ink);text-align:right}
.sum-row.order-total{border-top:2px solid var(--gold);border-bottom:none;margin-top:8px;padding-top:14px;
  align-items:center}
.sum-row.order-total span:first-child{font-size:14px;font-weight:800;text-transform:uppercase;letter-spacing:.6px;
  color:var(--muted)}
.sum-row.order-total span:last-child,.sum-row.order-total .woocommerce-Price-amount{font-size:26px;font-weight:900;
  color:var(--red)}
.sum-note{font-size:13px;color:var(--muted);margin:10px 0 0}
.woocommerce ul#shipping_method{list-style:none;margin:0;padding:0}
.woocommerce ul#shipping_method li{padding:8px 0;font-size:14.5px;display:flex;gap:9px;align-items:center}
.woocommerce ul#shipping_method input{accent-color:var(--red);width:17px;height:17px}
.woocommerce .woocommerce-shipping-destination{font-size:13px;color:var(--muted);margin-top:6px}

.wc-proceed-to-checkout{margin-top:18px;padding:0}
.woocommerce .wc-proceed-to-checkout a.checkout-button{display:flex;width:100%;justify-content:center;
  background:var(--red);color:#fff;font-weight:800;font-size:16px;border-radius:9px;padding:15px 20px;margin:0;
  text-align:center}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover{background:var(--red-dark);color:#fff}

.sum-trust{list-style:none;margin:18px 0 0;padding:16px 0 0;border-top:1px solid var(--line);display:grid;gap:9px}
.sum-trust li{display:flex;align-items:center;gap:9px;font-size:13.5px;color:#4a4f57;font-weight:600}
.sum-trust .ic{width:17px;height:17px;color:var(--ok);flex:none}
.sum-call{display:flex;align-items:center;gap:9px;margin-top:14px;padding-top:14px;border-top:1px solid var(--line);
  font-size:14px;color:#4a4f57}
.sum-call .ic{width:17px;height:17px;color:var(--red);flex:none}
.sum-call b{color:var(--red);font-weight:900}
.sum-call:hover b{color:var(--red-dark)}

/* -------------------------------------------------------- checkout page -- */
.checkoutpage{padding-block:8px 12px}
.checkout-head{margin-bottom:26px}
.checkout-head h1{font-size:clamp(26px,3.6vw,38px);font-weight:900;margin-bottom:6px}
.checkout-head p{color:var(--muted);font-size:15.5px;margin:0;max-width:640px}

/* Login / coupon toggles. WooCommerce ships these as blue .woocommerce-info
   bars; they sit outside .woocommerce-notices-wrapper so pages.css misses them. */
.checkoutpage .woocommerce-form-login-toggle,
.checkoutpage .woocommerce-form-coupon-toggle{margin-bottom:12px}
.checkoutpage .woocommerce-form-login-toggle .woocommerce-info,
.checkoutpage .woocommerce-form-coupon-toggle .woocommerce-info{background:#fff;border:1px solid var(--line);
  border-left:4px solid var(--gold);border-radius:9px;padding:13px 16px;margin:0;font-size:14.5px;color:var(--text);
  display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.checkoutpage .woocommerce-info::before{display:none}
.checkoutpage :is(.woocommerce-form-login,.woocommerce-form-coupon){background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow);padding:20px 22px;margin:0 0 16px}
.checkoutpage .woocommerce-form-coupon .form-row{display:inline-block;vertical-align:top;margin-bottom:0}
.checkoutpage .woocommerce-form-coupon .form-row-first{width:min(320px,100%);margin-right:10px}
.checkoutpage :is(.woocommerce-form-login,.woocommerce-form-coupon) button{background:var(--red);color:#fff;
  font-weight:800;border:0;border-radius:9px;padding:12px 22px;font-size:15px}
.checkoutpage :is(.woocommerce-form-login,.woocommerce-form-coupon) button:hover{background:var(--red-dark)}
/* Login row: keep the button and "Remember me" on one line, vertically centred,
   and align the checkbox with its label. */
.checkoutpage .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme){
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:0}
.checkoutpage .woocommerce-form-login__rememberme{display:inline-flex;align-items:center;gap:8px;margin:0;
  font-weight:600;line-height:1}
.checkoutpage .woocommerce-form-login__rememberme input{width:17px;height:17px;margin:0;flex:none;
  accent-color:var(--red)}
/* Password show/hide toggle: a small subtle eye inside the field, not the
   full-height red button the generic login-button rule turned it into. */
.checkoutpage .woocommerce-form-login .password-input{position:relative;display:block}
.checkoutpage .woocommerce-form-login .password-input input{width:100%;padding-right:46px}
.checkoutpage .woocommerce-form-login .show-password-input,
.checkoutpage .woocommerce-form-login .password-input button{position:absolute;top:50%;right:14px;
  transform:translateY(-50%);width:26px;height:26px;min-width:0;margin:0;padding:0;
  background:transparent!important;border:0!important;box-shadow:none!important;color:var(--muted)!important;
  cursor:pointer;display:grid;place-items:center;font-size:0}
.checkoutpage .woocommerce-form-login .show-password-input:hover,
.checkoutpage .woocommerce-form-login .password-input button:hover{color:var(--ink)!important}

.co-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:24px 26px;margin-bottom:20px}
.co-card h2{font-size:18px;text-transform:uppercase;letter-spacing:.6px;margin:0 0 16px;padding-bottom:11px;
  border-bottom:2px solid var(--line);position:relative}
.co-card h2::after{content:"";position:absolute;left:0;bottom:-2px;width:44px;height:2px;background:var(--red)}
.co-login{font-size:14px;color:var(--muted);margin:-6px 0 16px}
.woocommerce .col2-set{display:grid;gap:0}
.woocommerce .col2-set .col-1,.woocommerce .col2-set .col-2{width:100%;float:none;max-width:none;padding:0}
.woocommerce form .form-row{padding:0;margin:0 0 14px;display:block}
.woocommerce form .form-row label{display:block;font-size:13.5px;font-weight:700;color:var(--ink);margin-bottom:6px}
.woocommerce form .form-row .required{color:var(--red);text-decoration:none}
.woocommerce form .form-row-first,.woocommerce form .form-row-last{width:100%}
@media(min-width:576px){
  .woocommerce form .form-row-first,.woocommerce form .form-row-last{width:calc(50% - 7px);display:inline-block;
    vertical-align:top}
  .woocommerce form .form-row-first{margin-right:12px}
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single{
  width:100%;border:1.5px solid var(--line);border-radius:9px;padding:12px 13px;font-size:15px;font-family:inherit;
  color:var(--text);background:#fff;outline:none;height:auto;transition:border-color .15s,box-shadow .15s}
.woocommerce form .form-row :is(input,textarea,select):focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(226,33,28,.12)}
.woocommerce form .form-row textarea{min-height:110px;resize:vertical}
/* Australia is the only selling country, so WooCommerce prints the name as
   static text instead of a select. Dress it as a read-only field so it does
   not read as a stray word between two inputs. */
.woocommerce form .form-row .country_to_state--single{display:block;width:100%;border:1.5px solid var(--line);
  border-radius:9px;padding:12px 13px;font-size:15px;background:#f7f8fa;color:var(--muted);font-weight:600}
.woocommerce-additional-fields h3,.woocommerce-billing-fields h3,.woocommerce-shipping-fields h3{
  font-size:15px;text-transform:uppercase;letter-spacing:.5px;margin:18px 0 12px}
.woocommerce-shipping-fields label.checkbox,.woocommerce-form__label-for-checkbox{display:flex;align-items:center;
  gap:9px;font-weight:600;font-size:14px}
.woocommerce-form__label-for-checkbox input{accent-color:var(--red);width:17px;height:17px}

/* payment — WooCommerce prints the radio and its label as siblings inside the
   <li>, so the row itself has to be the grid or the two stack vertically. */
.co-payment .wc_payment_methods{list-style:none;margin:0;padding:0}
.co-payment .wc_payment_method{display:grid;grid-template-columns:auto 1fr;align-items:center;column-gap:11px;
  border:1.5px solid var(--line);border-radius:10px;margin-bottom:10px;padding:15px 16px;overflow:hidden;
  transition:border-color .15s,background .15s}
.co-payment .wc_payment_method:hover{border-color:#c9ced6}
.co-payment .wc_payment_method > label{grid-column:2;display:flex;align-items:center;gap:11px;cursor:pointer;
  font-weight:700;font-size:15px;margin:0;padding:0}
.co-payment .wc_payment_method > input[type=radio]{grid-column:1;accent-color:var(--red);width:18px;height:18px;
  margin:0;flex:none}
.co-payment .wc_payment_method:has(input:checked){border-color:var(--red);background:#fff8f8}
.co-payment .wc_payment_method label img{max-height:26px;width:auto;margin-left:auto}
/* WooCommerce paints #payment grey and payment_box mauve, both at a
   specificity my class selectors cannot reach — matched here rather than !important. */
.woocommerce .co-payment #payment{background:transparent;border-radius:0;padding:0}
.woocommerce .co-payment #payment div.payment_box{grid-column:1/-1;background:#fafbfc;
  border-top:1px solid var(--line);border-radius:0;font-size:14px;color:#4a5058;
  margin:15px -16px -15px;padding:14px 16px;width:auto}
.woocommerce .co-payment #payment div.payment_box::before{display:none}
.co-payment .payment_box p:last-child{margin-bottom:0}
.woocommerce-terms-and-conditions-wrapper{margin-top:14px;font-size:14px}
.woocommerce #payment #place_order,.woocommerce .form-row.place-order button{width:100%;background:var(--red);
  color:#fff;font-weight:800;font-size:16.5px;border-radius:9px;padding:16px 20px;margin-top:14px;float:none}
.woocommerce #payment #place_order:hover{background:var(--red-dark)}

/* order summary items */
.co-items{margin-bottom:16px}
.co-item{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--line)}
.co-item:last-child{border-bottom:none}
.co-thumb{position:relative;width:66px;height:56px;border-radius:9px;overflow:hidden;background:#eceef1;flex:none}
.co-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.co-count{position:absolute;top:-7px;right:-7px;min-width:22px;height:22px;padding:0 6px;border-radius:100px;
  background:var(--ink);color:#fff;font-size:12px;font-weight:800;display:grid;place-items:center;line-height:1}
.co-detail{flex:1;min-width:0}
.co-name{display:block;font-size:14px;font-weight:700;color:var(--ink);line-height:1.35}
.co-detail dl.variation{margin:5px 0 0;font-size:12.5px;color:var(--muted)}
.co-detail dl.variation dt,.co-detail dl.variation dd{display:inline;margin:0}
.co-detail dl.variation dd{margin-right:6px}
.co-detail dl.variation p{display:inline;margin:0}
.co-price{font-size:15px;font-weight:800;color:var(--ink);white-space:nowrap}
.co-shipping{padding:12px 0;border-bottom:1px dashed var(--line)}
.co-shipping h3{font-size:13px;text-transform:uppercase;letter-spacing:.6px;color:var(--muted);margin:0 0 8px}
.co-edit{display:inline-block;margin-top:14px;font-size:13.5px;font-weight:700;color:var(--red);text-decoration:underline}
.co-edit:hover{color:var(--red-dark)}

/* ========================================================== responsive ==== */
@media(max-width:991.98px){
  .cart-table-wrap{border:0;background:none;box-shadow:none;overflow:visible}
  .woocommerce table.shop_table.cart thead{display:none}
  .woocommerce table.shop_table.cart,
  .woocommerce table.shop_table.cart tbody,
  .woocommerce table.shop_table.cart tr,
  .woocommerce table.shop_table.cart td{display:block;width:100%}
  .woocommerce table.shop_table.cart tr{background:#fff;border:1px solid var(--line);border-radius:var(--radius);
    box-shadow:var(--shadow);margin-bottom:14px;padding:14px 16px;position:relative;
    display:grid;grid-template-columns:104px 1fr;gap:0 14px;align-items:start}
  .woocommerce table.shop_table.cart td{border-top:0;padding:0}
  /* WooCommerce's smallscreen sheet hides the thumbnail cell outright
     (`.woocommerce #content table.cart .product-thumbnail{display:none}`).
     This layout keeps a column for the image, and that rule wins the cascade
     even against an ID-matched override, so it is forced — same approach as
     the padding and border overrides below. */
  .woocommerce table.shop_table.cart td.product-thumbnail{display:block!important;grid-row:1/4}
  td.product-thumbnail::before{display:none}
  /* Smallscreen right-aligns every cell so the data-title labels sit opposite
     their value. The name cell has no label, so it reads as stray text. */
  .woocommerce table.shop_table.cart td.product-name{padding-right:44px!important;text-align:left!important}
  td.product-name::before{display:none}
  /* The thumbnail spans rows 1-3 of column 1, so auto-placement would drop the
     last cell into the leftover column-1 slot. Every text cell is pinned right. */
  .woocommerce table.shop_table.cart td:not(.product-thumbnail){grid-column:2}
  .woocommerce table.shop_table.cart td.product-price,
  .woocommerce table.shop_table.cart td.product-quantity,
  .woocommerce table.shop_table.cart td.product-subtotal{display:flex;justify-content:space-between;
    align-items:center;padding:8px 0!important;border-top:1px dashed var(--line)!important}
  td.product-price::before,td.product-quantity::before,td.product-subtotal::before{
    content:attr(data-title);font-size:13px;font-weight:700;color:var(--muted);text-transform:uppercase;
    letter-spacing:.5px}
  td.product-remove{position:absolute;top:12px;right:12px;width:auto}
}

@media(max-width:575.98px){
  /* The 88px thumbnail still fits beside the title down to the narrowest
     phones, so the two-column row is kept rather than stacked. */
  .woocommerce table.shop_table.cart tr{grid-template-columns:88px 1fr;padding:12px 14px}
  .mc-actions{grid-template-columns:1fr}
  .coupon-row .btn{width:100%}
  .cart-actions .btn{flex:1 1 100%}
}
