/* CHXN page: contact — info cards, quick-order, form, map. Contact Form 7's
   own markup (id 456) is skinned via ".chxn-contact-form-card .wpcf7-form"
   below — CF7 itself is theme-agnostic, still works unmodified. */

.chxn-page-h1 {
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 4px;
}
.chxn-page-sub {
	color: var(--chxn-ink-2);
	font-size: 14px;
	margin: 0 0 24px;
}

.chxn-contact-row {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 28px;
	align-items: start;
}
/* below ~1380px there's no spare margin outside this row's own
   container padding for the fixed floating contact cluster (components/
   fab.css, bottom-right) to sit in — its controls end up overlapping the
   right column's form/map (e.g. the embedded map's own fullscreen
   button). Same fix as pages/checkout.css, shop.css, blog.css,
   product-detail.css, policy.css, about.css. */
@media (min-width: 851px) and (max-width: 1380px) {
	.chxn-contact-row {
		padding-right: 90px;
	}
}

.chxn-contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.chxn-info-card {
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.chxn-info-card span:first-child { font-size: 24px; flex: none; }
.chxn-info-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--chxn-green-d);
	text-transform: uppercase;
	letter-spacing: .06em;
}
.chxn-info-value {
	font-size: 14.5px;
	margin-top: 4px;
	line-height: 1.5;
}

.chxn-quick-order {
	background: var(--chxn-green);
	border-radius: 12px;
	padding: 20px 22px;
	color: #fff;
	margin-top: 14px;
}
.chxn-quick-order-title { font-weight: 700; font-size: 15px; }
.chxn-quick-order p { font-size: 13px; color: #d6ece2; margin: 6px 0 14px; line-height: 1.55; }
.chxn-quick-order-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.chxn-btn-white-sm,
.chxn-btn-zalo {
	flex: 1;
	min-width: 120px;
	text-decoration: none;
	text-align: center;
	border-radius: var(--chxn-radius-pill);
	padding: 11px;
	font-weight: 700;
	font-size: 13.5px;
}
.chxn-btn-white-sm { background: #fff; color: var(--chxn-green-d); }
.chxn-btn-zalo { background: #0068ff; color: #fff; }

.chxn-contact-form-col {
	display: flex;
	flex-direction: column;
}
.chxn-contact-form-card,
.chxn-map-card {
	background: var(--chxn-card);
	border: 1px solid var(--chxn-line);
	border-radius: var(--chxn-radius-card);
	padding: 30px 32px;
}
.chxn-map-card { padding: 20px; margin-top: 24px; }
.chxn-contact-form-card h2,
.chxn-map-card h2 {
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 4px;
}
.chxn-form-sub {
	font-size: 13.5px;
	color: var(--chxn-ink-2);
	margin: 0 0 20px;
}
.chxn-map-embed {
	border: 1px solid var(--chxn-line);
	border-radius: 14px;
	overflow: hidden;
	margin-top: 14px;
}
.chxn-map-embed iframe {
	display: block;
	width: 100%;
}

.chxn-contact-form-card .wpcf7-form p {
	margin: 0 0 12px;
}
.chxn-contact-form-card .wpcf7-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--chxn-ink);
	margin-bottom: 6px;
}
.chxn-contact-form-card .wpcf7-form input:not([type=submit]),
.chxn-contact-form-card .wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1.5px solid var(--chxn-line);
	border-radius: 9px;
	padding: 12px 14px;
	font-size: 14px;
	background: var(--chxn-bg);
	font-family: inherit;
	box-shadow: none;
}
.chxn-contact-form-card .wpcf7-form textarea {
	resize: vertical;
	min-height: 110px;
}
.chxn-contact-form-card .wpcf7-form input[type=submit] {
	margin-top: 4px;
	background: var(--chxn-green);
	color: #fff;
	border: 0;
	border-radius: var(--chxn-radius-pill);
	padding: 14px 30px;
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
	cursor: pointer;
}
.chxn-contact-form-card .wpcf7-form input[type=submit]:hover {
	background: var(--chxn-green-d);
}
.chxn-contact-form-card .wpcf7-form .wpcf7-not-valid-tip {
	font-size: 12px;
	margin-top: 4px;
}

@media (max-width: 850px) {
	.chxn-contact-row {
		grid-template-columns: 1fr;
	}
}
