/**
 * WooCommerce — Single Product Overrides
 *
 * Only loaded on single product pages.
 *
 * @package PLGutterMaterials
 */

/* ── Tiered Pricing Table ── */

.tiered-pricing-wrapper {
	margin-top: 1rem;
	margin-bottom: 1.25rem;
}

.shop_table.tiered-pricing-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #ddd;
	font-size: 0.9rem;
	table-layout: fixed;
}

.shop_table.tiered-pricing-table thead th {
	background: #2c2c2c;
	color: #fff;
	font-weight: 600;
	padding: 0.65rem 1rem;
	border-bottom: 2px solid #c8944a;
}

.shop_table.tiered-pricing-table tbody td {
	padding: 0.65rem 1rem;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

/* Uniform center alignment for all columns */
.shop_table.tiered-pricing-table thead th,
.shop_table.tiered-pricing-table tbody td {
	text-align: center;
}

.shop_table.tiered-pricing-table tbody tr:last-child td {
	border-bottom: none;
}

.shop_table.tiered-pricing-table tbody tr:hover td {
	background-color: #f9f6f1;
}

/* Active tier — gold background is set via the tiered_pricing_table/display_settings
   filter in Frontend::override_tiered_pricing_settings(). */
.shop_table.tiered-pricing-table .tiered-pricing--active td {
	color: #fff;
	font-weight: 600;
	padding: 0.65rem 1rem;
}

.shop_table.tiered-pricing-table .tiered-pricing--active td span,
.shop_table.tiered-pricing-table .tiered-pricing--active td .woocommerce-Price-amount {
	color: #fff;
}

/* ── Fix product page vertical spacing ── */

.wc-block-add-to-cart-form .tpt__tiered-pricing {
	padding: 0;
}
