/* Block cart: hide quantity + extra metadata, keep remove (trash) under product name/price */
.wc-block-components-quantity-selector,
.wc-block-components-product-metadata {
  display: none !important;
}

.wc-block-cart-item__quantity {
  display: flex !important;
  margin-top: 10px;
  padding: 0;
}

.wc-block-cart-item__remove-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #6b7280;
}

.wc-block-cart-item__remove-link:hover,
.wc-block-cart-item__remove-link:focus {
  color: #111827;
  background: transparent;
}

.wc-block-cart-item__remove-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Classic cart (shortcode template): quantity hidden via PHP filter; ensure remove stays visible */
.woocommerce-cart .product-quantity {
  display: none;
}

.woocommerce-cart td.product-remove a.remove {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  text-decoration: none;
}

.woocommerce-cart td.product-remove a.remove:hover {
  color: #111827;
}
