/* IWT Click-to-Call Bar — Frontend */
#iwt-ctc-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	padding: 10px 16px;
	box-shadow: 0 -2px 16px rgba(0,0,0,0.18);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#iwt-ctc-bar.mobile-only {
	display: none;
}
.iwt-ctc-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	max-width: 600px;
	margin: 0 auto;
}
.iwt-ctc-left {
	flex: 1;
	min-width: 0;
}
.iwt-ctc-tagline {
	font-size: 11px;
	opacity: 0.7;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.iwt-ctc-number {
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.iwt-ctc-phone-ico {
	font-size: 14px;
}
.iwt-ctc-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.iwt-ctc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s, transform 0.15s;
	font-family: inherit;
	border: 2px solid transparent;
	cursor: pointer;
}
.iwt-ctc-btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}
.iwt-ctc-btn.directions {
	background: transparent !important;
	border-width: 2px;
	border-style: solid;
}
#iwt-ctc-spacer {
	height: 62px;
}
#iwt-ctc-spacer.mobile-only {
	display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
	#iwt-ctc-bar.mobile-only {
		display: block;
	}
	#iwt-ctc-spacer.mobile-only {
		display: block;
	}
}

/* Slide up animation on load */
@keyframes iwtCtcSlideUp {
	from { transform: translateY(100%); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}
#iwt-ctc-bar {
	animation: iwtCtcSlideUp 0.35s ease forwards;
}
