/**
 * Pallet Delivery for WooCommerce - Checkout Styles
 *
 * @package Pallet_Delivery_WooCommerce
 */

#pdw-pallet-surcharges {
	margin: 12px 0 0 0;
	padding: 0;
}

.pdw-surcharges-wrapper {
	background: #f8f9fa;
	border: 1px solid #e2e4e7;
	border-radius: 4px;
	padding: 14px 16px;
	margin-top: 8px;
}

.pdw-surcharges-title {
	margin: 0 0 10px 0;
	padding: 0 0 8px 0;
	border-bottom: 1px solid #e2e4e7;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.pdw-surcharge-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 0;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.pdw-surcharge-label:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pdw-surcharge-label:first-of-type {
	padding-top: 0;
}

.pdw-surcharge-checkbox {
	margin-top: 3px;
	flex-shrink: 0;
}

.pdw-surcharge-text {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	width: 100%;
	flex-wrap: wrap;
	gap: 4px;
}

.pdw-surcharge-name {
	font-size: 13px;
	color: #333;
	font-weight: 500;
}

.pdw-surcharge-cost {
	font-size: 13px;
	color: #666;
	white-space: nowrap;
}

.pdw-surcharge-cost small {
	font-size: 11px;
	color: #999;
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.pdw-surcharge-text {
		flex-direction: column;
		gap: 2px;
	}
}
