/* 3-col row: image | details | total */
.woocommerce-cart-form__contents .cart-row{
  display:grid;
  grid-template-columns:88px 1fr 110px;
  gap:16px;
  align-items:start;
  border-top:1px solid var(--wc-border,#eee);
  padding:16px 0;
}
.woocommerce-cart-form__contents .cart-row > td{border:0;padding:0;background:transparent}

/* image */
.cell-image img{width:72px;height:72px;object-fit:cover;border-radius:6px}

/* details */
.cell-details .cart-item__title{
  display:inline-block;font-weight:700;line-height:1.25;margin:0 0 4px;text-decoration:none
}
.cell-details .cart-item__unit-price{font-size:13px;color:#666;margin-bottom:8px}
.cell-details .variation,.cell-details .wc-item-meta{
  margin:4px 0 10px;font-size:13px;color:#444;list-style:none;padding:0
}
.cell-details .variation dt,.cell-details .variation dd{margin:0;padding:0}
.cell-details .variation dd p{margin:0}
.cart-item__qty-remove{display:flex;align-items:center;gap:12px}

/* +/- qty */
.rwd-qty{display:inline-flex;align-items:center;border:1px solid #ddd;border-radius:6px;overflow:hidden}
.rwd-qty .qty{width:56px;height:36px;border:0;text-align:center;box-shadow:none;padding:0}

.rwd-qty-btn{
    width:36px;
    height:36px;
    line-height:36px;
    border:0;
    background:#f5f5f5;
    cursor:pointer;
    font-size:18px;
    padding: 0;
}
.rwd-qty-minus{border-right:1px solid #ddd}
.rwd-qty-plus{border-left:1px solid #ddd}
.cart-item__remove{background:none;border:0;color:#666;text-decoration:underline;padding:0;cursor:pointer}

/* total */
.cell-total{text-align:right;font-weight:700;font-size:16px}

/* tidy thead/borders */
.woocommerce-cart-form__contents thead{display:none}
.woocommerce table.shop_table th,.woocommerce table.shop_table td{border:0}

td.product-name.cell-details .input-text.qty.text {
    border: 0px !important;
    text-align: center !important;
}

button.rwd-qty-btn.rwd-qty-plus:hover, button.rwd-qty-btn.rwd-qty-minus:hover {
    border: 0px;
}

@media only screen and (max-width: 640px) {
tr.woocommerce-cart-form__cart-item.cart_item.cart-row
 {
    display: inline-flex;
}

td.product-name.cell-details .cart-item__wrap {
    text-align: left !important;
}

td.product-name.cell-details:before, td.product-subtotal.cell-total:before {
    display: none !important;
}

.variation-Answer {
    font-size: 11px;
    padding: 5px 0px;
}

tr.woocommerce-cart-form__cart-item.cart_item.cart-row {
    padding: 5px !important;
}

.e-shop-table.e-cart-section button.button {
    margin: 0px !important;
}

.cart-item__qty-remove {
    flex-wrap: wrap;
}

a.wc-block-cart-item__remove-link.cart-item__remove {
    font-size: 10px;
    color: black !important;
}

}

/* mobile */
@media (max-width:640px){
  .woocommerce-cart-form__contents .cart-row{
    grid-template-columns:64px 1fr auto;
    gap:12px
  }
  .cell-image img{width:60px;height:60px;border-radius:4px}
  .cell-total{font-size:15px}
}
