/* Woo Cart Table widget — structural styles only. Colors/typography/spacing
   for the header, cells, product name/price, thumbnail, quantity input,
   buttons, and outer box all come from the widget's style controls (compiled
   per-instance), so this file just keeps WooCommerce's own cart table usable
   before any styling is applied. */

.ractro-cart-table .shop_table {
	width: 100%;
	border-collapse: collapse;
}

.ractro-cart-table .shop_table th,
.ractro-cart-table .shop_table td {
	padding: 12px;
	vertical-align: middle;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ractro-cart-table .product-thumbnail img {
	width: 64px;
	height: auto;
	display: block;
}

.ractro-cart-table .product-remove {
	text-align: center;
}

.ractro-cart-table .product-remove a {
	display: inline-block;
	text-decoration: none;
}

.ractro-cart-table .quantity .qty {
	width: 4.5em;
	padding: 6px 8px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}

.ractro-cart-table .actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
}

.ractro-cart-table .coupon {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.ractro-cart-table .coupon .input-text {
	padding: 8px 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}

.ractro-cart-table .actions .button,
.ractro-cart-table .actions input[type="submit"],
.ractro-cart-table button[name="update_cart"] {
	display: inline-block;
	cursor: pointer;
	border: 1px solid transparent;
	padding: 10px 20px;
	border-radius: 4px;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ractro-cart-table--notice {
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	color: #94a3b8;
	font-size: 13px;
	text-align: center;
}
