/* Sticky Contact Floating Bar (Fixed Right Side) */
.sticky-contact-widget {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99990;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}

.sticky-contact-btn {
	position: relative;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	border: none;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.sticky-contact-btn .sticky-icon {
	width: 30px;
	height: 30px;
}

.sticky-contact-btn:hover {
	transform: scale(1.12);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38);
}

.sticky-contact-location {
	background: linear-gradient(135deg, #e60000 0%, #ff4d4d 100%);
}

.sticky-contact-zalo {
	background: #0068ff;
}

.sticky-contact-phone {
	background: linear-gradient(135deg, #00c853 0%, #28a745 100%);
}

/* Pulsing effect for Phone button */
.pulse-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #28a745;
	animation: sticky-pulse 1.8s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
	pointer-events: none;
}

@keyframes sticky-pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Tooltip on Hover */
.sticky-contact-tooltip {
	position: absolute;
	right: 66px;
	top: 50%;
	transform: translateY(-50%) scale(0.9);
	background: rgba(17, 17, 17, 0.9);
	color: #ffffff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	pointer-events: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sticky-contact-btn:hover .sticky-contact-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) scale(1);
}

/* Move Theme's Scroll-to-top Button to Bottom Left */
.scroll-top__block {
	position: fixed !important;
	left: 24px !important;
	right: auto !important;
	bottom: 24px !important;
	z-index: 99985 !important;
}

/* Showroom Modal Popup */
.showroom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.showroom-modal.is-active {
	opacity: 1;
	visibility: visible;
}

.showroom-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
}

.showroom-modal-content {
	position: relative;
	width: 90%;
	max-width: 580px;
	max-height: 85vh;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: translateY(20px) scale(0.95);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 1;
}

.showroom-modal.is-active .showroom-modal-content {
	transform: translateY(0) scale(1);
}

.showroom-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	background: #f8f9fa;
	border-bottom: 1px solid #eeeeee;
}

.showroom-modal-title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: #111111;
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.showroom-modal-close {
	background: transparent;
	border: none;
	font-size: 26px;
	line-height: 1;
	color: #777777;
	cursor: pointer;
	padding: 0 4px;
	transition: color 0.2s ease;
}

.showroom-modal-close:hover {
	color: #e60000;
}

.showroom-modal-body {
	padding: 24px;
	overflow-y: auto;
	color: #333333;
	font-size: 14px;
	line-height: 1.6;
}

.showroom-badge {
	display: inline-block;
	background: #e60000;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.showroom-company {
	margin: 0 0 12px 0;
	font-size: 15px;
	font-weight: 700;
	color: #111111;
}

.showroom-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.showroom-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.info-icon {
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 1px;
}

.info-text {
	color: #444444;
}

.info-text strong {
	color: #111111;
}

.map-link {
	color: #0068ff;
	text-decoration: none;
	font-weight: 600;
	margin-left: 6px;
}

.map-link:hover {
	text-decoration: underline;
}

.showroom-divider {
	border: 0;
	height: 1px;
	background: #eeeeee;
	margin: 20px 0;
}

.showroom-modal-footer {
	padding: 14px 24px;
	background: #f8f9fa;
	border-top: 1px solid #eeeeee;
	text-align: center;
}

.btn-call-now {
	display: inline-block;
	background: #00c853;
	color: #ffffff;
	font-weight: 700;
	padding: 10px 24px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 14px;
	transition: background 0.2s ease, transform 0.2s ease;
	box-shadow: 0 4px 10px rgba(0, 200, 83, 0.25);
}

.btn-call-now:hover {
	background: #00a844;
	transform: translateY(-1px);
	color: #ffffff;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
	/* Scroll top button positioned at Bottom-Left on Mobile */
	.scroll-top__block {
		left: 16px !important;
		right: auto !important;
		bottom: 18px !important;
	}

	/* Sticky Contact Bar positioned at Bottom-Right on Mobile */
	.sticky-contact-widget {
		bottom: 20px !important;
		right: 16px !important;
		gap: 12px;
	}

	.sticky-contact-btn {
		width: 58px;  /* Larger icons on mobile */
		height: 58px;
		box-shadow: 0 5px 18px rgba(0, 0, 0, 0.32);
	}

	.sticky-contact-btn .sticky-icon {
		width: 34px;
		height: 34px;
	}

	.sticky-contact-tooltip {
		display: none; /* Hide tooltips on mobile touch screens */
	}

	.showroom-modal-content {
		width: 94%;
		max-height: 88vh;
	}

	.showroom-modal-body {
		padding: 18px;
	}
}
