@import "../section-contact/assets/styles.css";
@import "../section-stores/assets/styles.css";
@import "../section-cta-quote/assets/styles.css";
@import "../../components/mobile-cta-bar/assets/styles.css";

/* ============================================
Page Liên Hệ — Layout & Breadcrumbs
============================================ */

.lien-he {
	background: #f9f9f9;
	padding-bottom: 0;
	padding-top: 5.5rem;
}

/* ---- Breadcrumbs ---- */
.lien-he__breadcrumbs {
	display: flex;
	align-items: center;
	padding: 1.5rem 6.5rem; /* y=128 from top (after header ~104px + 24px) */
	font-family: 'SVN-Gilroy', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
}

.lien-he__breadcrumb {
	color: rgba(66, 66, 66, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.lien-he__breadcrumb:hover {
	color: #09B8B3;
}

.lien-he__breadcrumb.active {
	color: #424242;
	font-weight: 600;
}

.lien-he__breadcrumb-separator {
	display: inline-block;
	width: 0.375rem;
	height: 0.375rem;
	margin: 0 0.5rem;
	background: #424242;
    border-radius: 50%;
}

.okhub-toast-container {
	position: fixed;
	top: 6rem;
	right: 1.5rem;
	z-index: 9999;
	max-width: 22rem;
	pointer-events: none;
}

.okhub-toast-container > * + * {
	margin-top: 0.625rem;
}

.okhub-toast {
	font-family: SVN-Gilroy;
	display: flex;
	align-items: center;
	padding: 0.875rem 1.125rem;
	background: #fff;
	color: #1f2937;
	font-size: 0.875rem;
	line-height: 1.375;
	border-radius: 0.625rem;
	box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateY(-0.625rem);
	pointer-events: none;
	transition: opacity 250ms ease, transform 250ms ease;
}

.okhub-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.okhub-toast--error {
	color: #b91c1c;
}

.okhub-toast__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	background: #10b981;
	color: #fff;
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.875rem;
}

.okhub-toast--error .okhub-toast__icon {
	background: #ef4444;
}

.okhub-toast__body {
	min-width: 0;
	margin-left: 0.625rem;
}

.okhub-toast__message {
	margin: 0;
	font-family: SVN-Gilroy;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.375;
	color: inherit;
}

.okhub-toast__close {
	flex-shrink: 0;
	margin-left: 0.625rem;
	border: none;
	background: transparent;
	color: inherit;
	font-family: SVN-Gilroy;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 250ms ease;
}

.okhub-toast__close:hover {
	opacity: 1;
}

/* ---- Responsive ---- */
@media screen and (max-width: 639.98px) {
	.lien-he__breadcrumbs {
		padding: 1rem;
		font-size: 0.875rem;
	}

	.lien-he__breadcrumb-separator {
		width: 0.375rem;
		height: 0.375rem;
		border: none;
		border-radius: 50%;
/* 		background: rgba(66, 66, 66, 0.4); */
		transform: none;
	}
	.okhub-toast-container {
		top: auto;
		right: 1rem;
		bottom: 1rem;
		left: 1rem;
		max-width: none;
	}
}