/**
 * RFQ for WooCommerce — floating quote counter.
 *
 * Intentionally has no Bootstrap dependency: this widget loads on
 * every frontend page, so it stays as small/self-contained as possible.
 */

.rfq-wc-floating-counter {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.rfq-wc-floating-counter-link {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #2c3338;
	color: #fff;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.2 );
	transition: transform 0.15s ease;
}

.rfq-wc-floating-counter-link:hover {
	transform: translateY( -2px );
	color: #fff;
}

.rfq-wc-floating-counter-icon {
	font-size: 16px;
	line-height: 1;
}

.rfq-wc-floating-counter-count {
	background: #fff;
	color: #2c3338;
	font-weight: 600;
	font-size: 12px;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 999px;
	padding: 0 5px;
}

.rfq-wc-floating-counter.rfq-wc-is-empty {
	opacity: 0.6;
}

@media ( max-width: 480px ) {
	.rfq-wc-floating-counter {
		right: 12px;
		bottom: 12px;
	}

	.rfq-wc-floating-counter-link {
		padding: 10px 12px;
	}

	.rfq-wc-floating-counter-label {
		display: none;
	}
}
