/**
 * Rate Filter Styles
 *
 * Controls the visibility of rate rows filtered by the active cart rate.
 * Applied by wp_roomcloud-rate-filter.js when the "Enforce single rate in cart"
 * setting is enabled.
 *
 * @since   1.4.111
 * @package wp_roomcloud
 */

/**
 * Rate rows hidden because they don't match the active cart rate.
 * Uses display:none to fully remove from layout and accessibility tree.
 * !important overrides both the default hidden state (.wpr-room-card__rate--hidden)
 * and any theme styles.
 */
.wpr-room-card__rate.wpr-room-card__rate--rate-filtered {
	display: none !important;
}

/**
 * Notice shown inside a room card when none of its rates match the active
 * cart rate. This lets the user know they must clear the cart to change rates.
 */
.wpr-rate-filter-notice {
	font-size: 0.875em;
	color: #666;
	font-style: italic;
	padding: 0.5em 0;
	margin: 0;
}
