/**
 * Frontend styles for WooCommerce Offertförfrågan.
 */

.wcof-add-to-quote-wrapper {
	display: inline-block;
}

.wcof-add-to-quote {
	display: inline-block;
	padding: 0.618em 1.41575em;
	font-size: 1em;
	font-weight: 600;
	line-height: 1.618;
	text-align: center;
	cursor: pointer;
	border: 2px solid currentColor;
	background: transparent;
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 0;
}

.wcof-add-to-quote:hover {
	background-color: currentColor;
	color: #fff;
	text-decoration: none;
}

.wcof-add-to-quote:disabled,
.wcof-add-to-quote.loading {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.wcof-add-to-quote.loading::after {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: 0.5em;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: wcof-spin 0.6s linear infinite;
	vertical-align: middle;
}

@keyframes wcof-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Quote count badge */
.wcof-quote-count {
	display: inline-block;
	min-width: 1.5em;
	padding: 0.25em 0.5em;
	background-color: #000;
	color: #fff;
	border-radius: 1em;
	font-size: 0.85em;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.wcof-add-to-quote {
		width: 100%;
		display: block;
		text-align: center;
	}
}
