/* ===================================================================
 * Flatsome / UX Builder compatibility styles
 * Tái tạo bố cục section / row / col / page_header / button... của
 * Flatsome mà KHÔNG cần plugin. Dùng biến màu của theme (--dtc-*).
 * =================================================================== */

/* ---------- SECTION ---------- */
.fs-section {
	position: relative;
	background-position: center;
	background-size: cover;
	padding: 30px 0;
}
.fs-section.fs-has-pad {
	padding-top: var(--fs-pad, 60px);
	padding-bottom: var(--fs-pad, 60px);
}
@media (max-width: 767px) {
	.fs-section.fs-has-pad {
		padding-top: var(--fs-pad-sm, var(--fs-pad, 40px));
		padding-bottom: var(--fs-pad-sm, var(--fs-pad, 40px));
	}
}
.fs-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.fs-section--dark,
.fs-section--dark a { color: #fff; }

/* ---------- TRANG FULL-WIDTH (page.php tự nhận diện [section]) ---------- */
.dtc-page-fullwidth { margin: 0; }
.dtc-fullwidth-content { width: 100%; }
/* Section/banner/page-header tràn viền; nội dung thường vẫn thụt vào giữa */
.dtc-fullwidth-content > *:not(.fs-section):not(.fs-banner):not(.fs-page-header) {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}
.dtc-fullwidth-content > .fs-section { width: 100%; }

/* ---------- ROW / COL (lưới 12 cột, flex) ---------- */
.fs-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	max-width: 1200px;
	margin-top: 0;
	margin-bottom: 0;
}
.fs-section .fs-row { max-width: none; }
.fs-row--full-width,
.fs-row--full-screen { max-width: none; }

.fs-col {
	position: relative;
	padding: 0 15px 30px;
	width: 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.fs-col-inner { height: 100%; }

/* Mặc định (mobile-first): full width; .fs-small-* ghi đè nếu có */
.fs-small-1  { flex-basis: 8.333%;  max-width: 8.333%;  }
.fs-small-2  { flex-basis: 16.666%; max-width: 16.666%; }
.fs-small-3  { flex-basis: 25%;     max-width: 25%;     }
.fs-small-4  { flex-basis: 33.333%; max-width: 33.333%; }
.fs-small-5  { flex-basis: 41.666%; max-width: 41.666%; }
.fs-small-6  { flex-basis: 50%;     max-width: 50%;     }
.fs-small-7  { flex-basis: 58.333%; max-width: 58.333%; }
.fs-small-8  { flex-basis: 66.666%; max-width: 66.666%; }
.fs-small-9  { flex-basis: 75%;     max-width: 75%;     }
.fs-small-10 { flex-basis: 83.333%; max-width: 83.333%; }
.fs-small-11 { flex-basis: 91.666%; max-width: 91.666%; }
.fs-small-12 { flex-basis: 100%;    max-width: 100%;    }

/* Tablet >= 550px */
@media (min-width: 550px) {
	.fs-medium-1  { flex-basis: 8.333%;  max-width: 8.333%;  }
	.fs-medium-2  { flex-basis: 16.666%; max-width: 16.666%; }
	.fs-medium-3  { flex-basis: 25%;     max-width: 25%;     }
	.fs-medium-4  { flex-basis: 33.333%; max-width: 33.333%; }
	.fs-medium-5  { flex-basis: 41.666%; max-width: 41.666%; }
	.fs-medium-6  { flex-basis: 50%;     max-width: 50%;     }
	.fs-medium-7  { flex-basis: 58.333%; max-width: 58.333%; }
	.fs-medium-8  { flex-basis: 66.666%; max-width: 66.666%; }
	.fs-medium-9  { flex-basis: 75%;     max-width: 75%;     }
	.fs-medium-10 { flex-basis: 83.333%; max-width: 83.333%; }
	.fs-medium-11 { flex-basis: 91.666%; max-width: 91.666%; }
	.fs-medium-12 { flex-basis: 100%;    max-width: 100%;    }
}

/* Desktop >= 850px */
@media (min-width: 850px) {
	.fs-large-flex { flex: 1 1 0; max-width: 100%; }
	.fs-large-1  { flex-basis: 8.333%;  max-width: 8.333%;  }
	.fs-large-2  { flex-basis: 16.666%; max-width: 16.666%; }
	.fs-large-3  { flex-basis: 25%;     max-width: 25%;     }
	.fs-large-4  { flex-basis: 33.333%; max-width: 33.333%; }
	.fs-large-5  { flex-basis: 41.666%; max-width: 41.666%; }
	.fs-large-6  { flex-basis: 50%;     max-width: 50%;     }
	.fs-large-7  { flex-basis: 58.333%; max-width: 58.333%; }
	.fs-large-8  { flex-basis: 66.666%; max-width: 66.666%; }
	.fs-large-9  { flex-basis: 75%;     max-width: 75%;     }
	.fs-large-10 { flex-basis: 83.333%; max-width: 83.333%; }
	.fs-large-11 { flex-basis: 91.666%; max-width: 91.666%; }
	.fs-large-12 { flex-basis: 100%;    max-width: 100%;    }
}

/* Căn dọc / ngang của row */
.fs-valign-top    { align-items: flex-start; }
.fs-valign-middle { align-items: center; }
.fs-valign-bottom { align-items: flex-end; }
.fs-valign-equal  { align-items: stretch; }
.fs-halign-left   { justify-content: flex-start; }
.fs-halign-center { justify-content: center; }
.fs-halign-right  { justify-content: flex-end; }

/* Gutter theo [row style="..."] */
.fs-row-gutter-large { margin-left: -25px; margin-right: -25px; }
.fs-row-gutter-large > .fs-col { padding-left: 25px; padding-right: 25px; }
.fs-row-gutter-collapse { margin-left: 0; margin-right: 0; }
.fs-row-gutter-collapse > .fs-col { padding-left: 0; padding-right: 0; }

.fs-text-left   { text-align: left; }
.fs-text-center { text-align: center; }
.fs-text-right  { text-align: right; }

.fs-depth-1 .fs-col-inner,
.fs-depth-2 .fs-col-inner,
.fs-depth-3 .fs-col-inner { box-shadow: 0 3px 8px rgba(0,0,0,.12); }

/* ---------- PAGE HEADER ---------- */
.fs-page-header {
	position: relative;
	padding: 24px 0;
	background: #f7f7f7;
}
.fs-page-header .fs-section-inner { padding: 0 15px; }
.fs-page-header--dark  { color: #333; }
.fs-page-header--light { color: #fff; }
.fs-page-header__title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
}
.fs-page-header__subtitle { opacity: .8; margin-top: 6px; }
.fs-page-header--subnav { padding: 8px 0; background: transparent; border-bottom: 1px solid #eee; }
/* Header rỗng (height 0) không chiếm chỗ */
.fs-page-header[style*="min-height"] { padding-top: 0; padding-bottom: 0; }

/* ---------- GAP / DIVIDER ---------- */
.fs-gap { width: 100%; }
.fs-divider {
	border: 0;
	border-top: 2px solid var(--dtc-primary, #1A8922);
	max-width: 60px;
	margin: 18px 0;
	opacity: .9;
}
.fs-divider--center { margin-left: auto; margin-right: auto; }
.fs-divider--right  { margin-left: auto; }

/* ---------- TITLE ---------- */
.fs-title { position: relative; margin: 0 0 18px; line-height: 1.25; }
.fs-title--center { text-align: center; }
.fs-title--bold-center { text-align: center; font-weight: 800; }
.fs-title span { position: relative; display: inline-block; padding-bottom: 10px; }
/* Gạch chân accent: mặc định canh trái, style center thì ra giữa */
.fs-title span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 3px;
	border-radius: 3px;
	background: var(--dtc-primary, #1A8922);
}
.fs-title--center span::after,
.fs-title--bold-center span::after {
	left: 50%;
	width: 40px;
	transform: translateX(-50%);
}

/* ---------- BUTTON ---------- */
.fs-button {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 4px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: opacity .2s, background .2s;
	background: var(--dtc-primary, #1A8922);
	color: #fff;
	border: 2px solid var(--dtc-primary, #1A8922);
}
.fs-button:hover { opacity: .88; color: #fff; }
.fs-button--secondary { background: var(--dtc-secondary, #4A9553); border-color: var(--dtc-secondary, #4A9553); }
.fs-button--success   { background: #46b450; border-color: #46b450; }
.fs-button--alert     { background: #d63638; border-color: #d63638; }
.fs-button--white     { background: #fff; color: var(--dtc-primary, #1A8922); border-color: #fff; }
.fs-button--outline   { background: transparent; color: var(--dtc-primary, #1A8922); }
.fs-button--outline:hover { background: var(--dtc-primary, #1A8922); color: #fff; }
.fs-button--link      { background: transparent; border-color: transparent; color: var(--dtc-primary, #1A8922); padding-left: 0; padding-right: 0; }
.fs-button--small     { padding: 6px 14px; font-size: .85rem; }
.fs-button--large     { padding: 14px 30px; font-size: 1.1rem; }
.fs-button--expand    { display: block; width: 100%; text-align: center; }

/* ---------- IMAGE ---------- */
.fs-image { margin: 0 0 1rem; }
.fs-image__img { display: block; height: auto; border-radius: 3px; }
.fs-image.fs-text-center { text-align: center; }
.fs-image.fs-text-center .fs-image__img { margin-left: auto; margin-right: auto; }

/* ---------- BANNER ---------- */
.fs-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	position: relative;
	color: #fff;
}
.fs-banner__inner { max-width: 1200px; padding: 30px 15px; width: 100%; }

/* ---------- TAB / ACCORDION ---------- */
.fs-tabgroup, .fs-accordion { margin: 0 0 1.5rem; }
.fs-tab, .fs-accordion__item {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	margin-bottom: 8px;
	background: #fff;
}
.fs-tab__title, .fs-accordion__item > summary {
	cursor: pointer;
	padding: 12px 16px;
	font-weight: 600;
	list-style: none;
}
.fs-tab__title::-webkit-details-marker,
.fs-accordion__item > summary::-webkit-details-marker { display: none; }
.fs-tab__content, .fs-accordion__content { padding: 0 16px 14px; }

/* ---------- LƯỚI SẢN PHẨM / BÀI VIẾT từ shortcode ---------- */
.fs-shop-grid {
	display: grid;
	grid-template-columns: repeat(var(--fs-cols, 4), 1fr);
	gap: 24px;
	margin: 0 0 1.5rem;
}
/* Override số cột trên khung grid gốc của theme để bám --fs-cols */
.fs-shop-grid.dtc-product-grid,
.fs-shop-grid.dtc-cat-grid,
.fs-shop-grid.dtc-card-grid { grid-template-columns: repeat(var(--fs-cols, 4), 1fr); }

@media (max-width: 849px) {
	.fs-shop-grid,
	.fs-shop-grid.dtc-product-grid,
	.fs-shop-grid.dtc-cat-grid,
	.fs-shop-grid.dtc-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 549px) {
	.fs-shop-grid,
	.fs-shop-grid.dtc-product-grid,
	.fs-shop-grid.dtc-cat-grid,
	.fs-shop-grid.dtc-card-grid { grid-template-columns: 1fr; }
}
.fs-empty { padding: 20px; color: #888; font-style: italic; text-align: center; }

/* ---------- IMAGE BOX ([ux_image_box]) ---------- */
.fs-imagebox { margin: 0 0 20px; }
.fs-imagebox-img { overflow: hidden; border-radius: 8px; background: #eaf3de; }
.fs-imagebox-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.fs-imagebox:hover .fs-imagebox-img img { transform: scale(1.06); }
.fs-imagebox-cap { padding: 12px 6px 0; }
.fs-imagebox-cap h4 { margin: 0; font-size: 15px; font-weight: 700; }

/* ---------- GALLERY ([ux_gallery]) ---------- */
.fs-gallery {
	display: grid;
	grid-template-columns: repeat(var(--fs-gcols, 3), 1fr);
	gap: 14px;
	margin: 0 0 20px;
}
.fs-gallery-item {
	position: relative;
	display: block;
	height: 0;
	overflow: hidden;
	background: #eaf3de;
}
.fs-gallery-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.fs-gallery-item { cursor: zoom-in; }
.fs-gallery-item:hover img { transform: scale(1.08); }
@media (max-width: 767px) {
	.fs-gallery { grid-template-columns: repeat(var(--fs-gcols-sm, 1), 1fr); }
}

/* ---------- LIGHTBOX xem ảnh to ---------- */
.fs-lightbox-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .92);
	display: none;
	align-items: center;
	justify-content: center;
	animation: fs-fade .2s ease;
}
.fs-lightbox-overlay.is-open { display: flex; }
.fs-lb-stage {
	max-width: 92vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fs-lb-img {
	max-width: 92vw;
	max-height: 88vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 12px 44px rgba(0, 0, 0, .55);
}
.fs-lb-close {
	position: absolute;
	top: 16px;
	right: 22px;
	font-size: 40px;
	line-height: 1;
	color: #fff;
	background: none;
	border: 0;
	cursor: pointer;
	opacity: .85;
}
.fs-lb-close:hover { opacity: 1; }
.fs-lb-prev,
.fs-lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 68px;
	font-size: 32px;
	color: #fff;
	background: rgba(0, 0, 0, .3);
	border: 0;
	cursor: pointer;
	border-radius: 6px;
	transition: background .2s;
}
.fs-lb-prev { left: 14px; }
.fs-lb-next { right: 14px; }
.fs-lb-prev:hover,
.fs-lb-next:hover { background: rgba(255, 255, 255, .18); }
.fs-lb-count {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 14px;
	letter-spacing: .5px;
}
@media (max-width: 600px) {
	.fs-lb-prev, .fs-lb-next { width: 42px; height: 54px; font-size: 24px; }
	.fs-lb-close { top: 8px; right: 12px; font-size: 34px; }
}

/* ---------- TABS ([tabgroup]/[tab]) ---------- */
.fs-tabs { margin: 0 0 24px; }
.fs-tabs-nav {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.fs-tabs--center .fs-tabs-nav { justify-content: center; }
.fs-tabs-btn {
	background: #fff;
	border: 1px solid var(--dtc-border, #d4e4c0);
	color: #555;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 24px;
	border-radius: 50px;
	cursor: pointer;
	transition: all .25s;
}
.fs-tabs-btn:hover { border-color: var(--dtc-primary, #4a8a28); color: var(--dtc-primary, #4a8a28); }
.fs-tabs-btn.is-active {
	background: var(--dtc-primary, #4a8a28);
	border-color: var(--dtc-primary, #4a8a28);
	color: #fff;
}
.fs-tabs-panel { display: none; }
.fs-tabs-panel.is-active { display: block; animation: fs-fade .4s ease; }

/* ---------- ANIMATE (fadeIn...) ----------
 * Chỉ ẩn khi JS đã sẵn sàng (body.fs-anim-ready) → JS lỗi thì nội dung VẪN hiện. */
.fs-anim-ready .fs-animate { opacity: 0; will-change: transform, opacity; transition: opacity .7s ease, transform .7s ease; }
.fs-anim-ready .fs-animate.fs-animated { opacity: 1; transform: none !important; }
.fs-anim-ready .fs-anim-fadeInLeft  { transform: translateX(-40px); }
.fs-anim-ready .fs-anim-fadeInRight { transform: translateX(40px); }
.fs-anim-ready .fs-anim-fadeInUp    { transform: translateY(40px); }
.fs-anim-ready .fs-anim-fadeInDown  { transform: translateY(-40px); }
@keyframes fs-fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- DANH SÁCH CHECKMARK (bullet-checkmark) ---------- */
ul.bullet-checkmark,
.fs-col-inner ul.bullet-checkmark { list-style: none; margin: 0 0 18px; padding: 0; }
ul.bullet-checkmark li {
	position: relative;
	padding: 9px 0 9px 30px;
	line-height: 1.55;
	border-bottom: 1px dashed var(--dtc-border, #e2e4e7);
	font-size: 15px;
}
ul.bullet-checkmark li:last-child { border-bottom: 0; }
ul.bullet-checkmark li::before {
	content: "\f00c"; /* Font Awesome check */
	font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 10px;
	color: var(--dtc-primary, #1A8922);
	font-size: 13px;
}
ul.bullet-checkmark li a { color: inherit; text-decoration: none; }
ul.bullet-checkmark li strong { color: var(--dtc-dark, #006666); }

/* ---------- Bản đồ nhúng trong nội dung ---------- */
.fs-col-inner iframe[src*="google.com/maps"],
.dtc-single-content iframe[src*="google.com/maps"],
.dtc-fullwidth-content iframe[src*="google.com/maps"] {
	width: 100%;
	min-height: 260px;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
	display: block;
}

/* ---------- FORM TƯ VẤN (site-wide, cho fallback wpforms/cf7) ---------- */
.dtc-consult-form { background: #fff; border: 1px solid var(--dtc-border, #e5e5e5); border-radius: 12px; padding: 22px; box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.dtc-consult-title { font-size: 18px; margin: 0 0 4px; color: var(--dtc-primary, #1A8922); }
.dtc-consult-sub { margin: 0 0 14px; font-size: 14px; color: var(--dtc-muted, #777); }
.dtc-consult-form input[type=text],
.dtc-consult-form input[type=tel],
.dtc-consult-form input[type=email] {
	width: 100%; padding: 12px 14px; border: 1px solid var(--dtc-border, #e5e5e5);
	border-radius: 8px; margin-bottom: 12px; font-size: 15px; background: #fff;
}
.dtc-consult-form input:focus { outline: none; border-color: var(--dtc-primary, #1A8922); }
.dtc-consult-submit { width: 100%; justify-content: center; }
.dtc-consult-msg { margin-top: 10px; font-size: 14px; }
.dtc-consult-msg.ok { color: #1A8922; }
.dtc-consult-msg.err { color: #e02424; }

/* ===================================================================
 * TEMPLATE TRANG LIÊN HỆ  — [section class="contactlienhe"]
 * Trái = thông tin + bản đồ · Phải = form. Responsive stack ở mobile.
 * =================================================================== */
.contactlienhe { background: var(--dtc-bg-soft, #f4f8f1); padding: 50px 0; }
.contactlienhe .fs-row { align-items: flex-start; }
.contactlienhe-intro { text-align: center; color: var(--dtc-muted, #5a6a4a); max-width: 640px; margin: 0 auto 30px; font-size: 1rem; line-height: 1.6; }
.contactlienhe-map { line-height: 0; }

/* Mỗi cột là 1 thẻ trắng */
.contactlienhe .fs-col-inner {
	background: #fff;
	border: 1px solid var(--dtc-border, #e5e5e5);
	border-radius: 16px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

/* Tiêu đề đỏ của họ */
.contactlienhe .fs-title { margin-bottom: 14px; }
.contactlienhe .fs-title:not(:first-child) { margin-top: 26px; }
.contactlienhe .fs-title span { padding-bottom: 12px; }

/* Danh sách địa chỉ */
.contactlienhe ul.bullet-checkmark { margin: 0 0 6px; }
.contactlienhe ul.bullet-checkmark li { font-size: 14.5px; }

/* Bản đồ trong cột thông tin */
.contactlienhe iframe[src*="maps"] {
	width: 100%;
	min-height: 240px;
	border: 0;
	border-radius: 10px;
	margin-top: 4px;
	box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.contactlienhe p { margin: 0; }

/* ---- Form (WPForms thật) ---- */
.contactlienhe .wpforms-container { margin: 0; }
.contactlienhe .wpforms-field-label { font-weight: 600; font-size: 14px; color: var(--dtc-text, #444); margin-bottom: 6px; }
.contactlienhe .wpforms-form input[type=text],
.contactlienhe .wpforms-form input[type=email],
.contactlienhe .wpforms-form input[type=tel],
.contactlienhe .wpforms-form input[type=url],
.contactlienhe .wpforms-form input[type=number],
.contactlienhe .wpforms-form textarea,
.contactlienhe .wpforms-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--dtc-border, #e5e5e5);
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	box-shadow: none;
}
.contactlienhe .wpforms-form textarea { min-height: 110px; }
.contactlienhe .wpforms-form input:focus,
.contactlienhe .wpforms-form textarea:focus,
.contactlienhe .wpforms-form select:focus { outline: none; border-color: var(--dtc-primary, #1A8922); }
.contactlienhe .wpforms-form button[type=submit],
.contactlienhe .wpforms-submit {
	width: 100%;
	background: var(--dtc-primary, #1A8922) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 50px !important;
	padding: 14px 30px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	cursor: pointer;
	transition: opacity .2s, transform .2s;
}
.contactlienhe .wpforms-form button[type=submit]:hover,
.contactlienhe .wpforms-submit:hover { opacity: .9; transform: translateY(-1px); }

/* WPForms Lite: ÉP MỌI FIELD FULL-WIDTH, xếp dọc ĐỀU NHAU (bỏ cột 1/3, 2/3...) */
.contactlienhe .wpforms-field {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	clear: both !important;
	padding: 0 !important;
	margin: 0 0 18px !important;
}
.contactlienhe .wpforms-field-row,
.contactlienhe .wpforms-field-large,
.contactlienhe .wpforms-field-medium { width: 100% !important; max-width: 100% !important; }
.contactlienhe .wpforms-field-label { display: block; margin-bottom: 6px; }
.contactlienhe .wpforms-required-label { color: #e02424; }

/* Ẩn field "mồi" chống spam mà WPForms chèn (label/input aria-hidden) */
.contactlienhe .wpforms-field:has(> label[aria-hidden="true"]),
.contactlienhe .wpforms-field:has(input[aria-hidden="true"]) { display: none !important; }

/* Ô chọn nhiều sản phẩm (Choices.js) */
.contactlienhe .choices { margin: 0; }
.contactlienhe .choices__inner {
	border: 1px solid var(--dtc-border, #e5e5e5) !important;
	border-radius: 8px !important;
	min-height: 48px;
	background: #fff;
	padding: 6px 8px;
	font-size: 14px;
}
.contactlienhe .choices.is-focused .choices__inner { border-color: var(--dtc-primary, #1A8922) !important; }
.contactlienhe .choices__list--multiple .choices__item {
	background: var(--dtc-primary, #1A8922);
	border: 0;
	border-radius: 6px;
	font-size: 12.5px;
	padding: 4px 10px;
}
.contactlienhe .choices__list--dropdown .choices__item--selectable.is-highlighted { background: var(--dtc-bg-soft, #eaf3de); color: var(--dtc-dark, #1e3d0f); }

/* Báo lỗi validate */
.contactlienhe .wpforms-error,
.contactlienhe input.wpforms-error,
.contactlienhe textarea.wpforms-error { border-color: #e02424 !important; }
.contactlienhe label.wpforms-error { color: #e02424; font-size: 12.5px; margin-top: 4px; display: block; }
.contactlienhe .wpforms-submit-container { margin-top: 4px; }

/* ---- Form dự phòng của theme (khi chưa cài WPForms): bỏ thẻ trắng lồng ---- */
.contactlienhe .dtc-consult-form { background: transparent; border: 0; box-shadow: none; padding: 0; }

/* ---- Responsive ---- */
@media (max-width: 849px) {
	.contactlienhe .fs-col-inner { padding: 22px; }
}
@media (max-width: 549px) {
	.contactlienhe .fs-col-inner { padding: 18px; border-radius: 12px; }
	.contactlienhe iframe[src*="maps"] { min-height: 220px; }
}

/* Dark mode */
body.dtc-dark .contactlienhe .fs-col-inner { background: #1e1e1e; border-color: #333; }

/* ---------- Ẩn class visibility của Flatsome ---------- */
@media (max-width: 549px)  { .fs-hide-show-for-medium, .fs-hide-hide-for-small { display: none !important; } }
@media (min-width: 850px)  { .fs-hide-hide-for-large { display: none !important; } }
