/* Nhà Xinh — additive upgrade styles (L12). Không ghi đè style_app.css */

/* Ẩn nút gọi cũ (quick-alo) nếu còn inject từ CMS */
.call-now-button {
    display: none !important;
}

/* Nút gọi mới — FAB góc trái dưới */
.nx-call-fab {
    position: fixed;
    left: max(12px, env(safe-area-inset-left, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ee1d25 0%, #c62828 100%);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(198, 40, 40, 0.42), 0 2px 6px rgba(0, 0, 0, 0.14);
    transition: box-shadow 0.2s ease, filter 0.2s ease;
    max-width: min(240px, calc(100vw - 148px));
}

.nx-call-fab:hover,
.nx-call-fab:focus-visible {
    transform: none !important;
    filter: brightness(1.06);
    box-shadow: 0 6px 22px rgba(198, 40, 40, 0.48), 0 3px 8px rgba(0, 0, 0, 0.16);
    color: #fff !important;
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 2px;
}

.nx-call-fab__icon {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-call-fab__icon::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    animation: nx-call-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes nx-call-pulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.nx-call-fab__icon .nx-footer-svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    color: #fff;
}

.nx-call-fab__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    line-height: 1.2;
}

.nx-call-fab__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.nx-call-fab__number {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

a.call-mobile-footer {
    transition: box-shadow 0.15s ease, filter 0.15s ease;
}

a.call-mobile-footer:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    filter: brightness(1.04);
}

/* Ảnh trong nội dung không tràn khung */
.body_content_inc img,
.main_content img,
.tab-content img {
    max-width: 100%;
    height: auto;
}

/* Breadcrumb & tiêu đề dễ đọc hơn */
.breadcrumb,
.breadcrumbs {
    font-size: 14px;
    line-height: 1.5;
}

/* Form liên hệ — input rõ ràng hơn */
.page-lien-he input[type="text"],
.page-lien-he input[type="email"],
.page-lien-he textarea,
#lien-he-form input,
#lien-he-form textarea {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-lien-he input:focus,
.page-lien-he textarea:focus,
#lien-he-form input:focus,
#lien-he-form textarea:focus {
    border-color: #c0392b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

/* Header menu — tăng vùng chạm mobile */
@media (max-width: 991px) {
    #primary-menu li a {
        padding: 12px 16px;
        display: block;
    }
}

/* Footer — khoảng cách đọc tốt hơn */
.footer_view_container p,
.footer_view_container li {
    line-height: 1.6;
}

/* ── Site footer — bố cục hiện đại ── */
.site-footer {
    --nx-footer-bg: #0f0f0f;
    --nx-footer-surface: #171717;
    --nx-footer-border: rgba(255, 255, 255, 0.1);
    --nx-footer-text: rgba(255, 255, 255, 0.88);
    --nx-footer-muted: rgba(255, 255, 255, 0.58);
    --nx-footer-accent: #85b716;
    --nx-footer-accent-soft: rgba(133, 183, 22, 0.14);
    background: var(--nx-footer-bg);
    color: var(--nx-footer-text);
    margin-top: 0;
    position: relative;
    clear: both;
}

.site-footer__inner {
    overflow: hidden;
}

.site-footer__nav {
    border-bottom: 1px solid var(--nx-footer-border);
    background: var(--nx-footer-surface);
}

.site-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav-list li a,
.site-footer__nav-label {
    display: block;
    padding: 14px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer__nav-list li a:hover {
    color: var(--nx-footer-accent);
}

.site-footer__main {
    padding: 40px 0 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.05fr) minmax(280px, 1.25fr) minmax(220px, 0.95fr);
    gap: 32px 40px;
    align-items: start;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__heading {
    position: relative;
    margin: 0 0 16px;
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.site-footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: var(--nx-footer-accent);
}

.site-footer__heading--accent {
    color: #e6ee9c;
}

.site-footer__heading--accent::after {
    width: 48px;
    background: linear-gradient(90deg, #c6d438, #85b716);
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 10px;
}

.site-footer__logo img {
    max-width: 170px;
    height: auto;
}

.site-footer__tagline {
    margin: 0 0 22px;
    font-size: 13px;
    color: var(--nx-footer-muted);
    letter-spacing: 0.04em;
}

.site-footer__contact-block {
    margin-bottom: 16px;
}

/* Icon chung — cố định kích thước, không bị max-width:100% kéo giãn */
.site-footer__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    line-height: 1;
}

.site-footer__icon .nx-footer-svg,
.nx-fab-dock__icon .nx-footer-svg {
    display: block;
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
    flex-shrink: 0;
}

.site-footer__icon--phone .nx-footer-svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
}

.nx-fab-dock__icon .nx-footer-svg {
    width: 15px;
    height: 15px;
    max-width: 15px;
    max-height: 15px;
}

.site-footer__icon--muted {
    background: rgba(255, 255, 255, 0.08);
    color: var(--nx-footer-accent);
    border: 1px solid rgba(133, 183, 22, 0.25);
}

.site-footer__icon--phone {
    width: 44px;
    height: 44px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(145deg, #6fa010, #85b716);
    box-shadow: 0 4px 12px rgba(133, 183, 22, 0.35);
}

.site-footer__address,
.site-footer__hotline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-style: normal;
    color: var(--nx-footer-text);
    text-decoration: none;
}

.site-footer__address {
    font-size: 14px;
    line-height: 1.55;
}

.site-footer__address > span:last-child {
    flex: 1;
    min-width: 0;
}

.site-footer__hotline {
    margin: 20px 0 22px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(133, 183, 22, 0.18) 0%, rgba(133, 183, 22, 0.08) 100%);
    border: 1px solid rgba(133, 183, 22, 0.35);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.site-footer__hotline:hover {
    background: linear-gradient(135deg, rgba(133, 183, 22, 0.28) 0%, rgba(133, 183, 22, 0.14) 100%);
    border-color: rgba(133, 183, 22, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

.site-footer__hotline-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.site-footer__hotline-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer__hotline-number {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--nx-footer-border);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.site-footer__social-link:hover {
    transform: translateY(-2px);
    color: #fff;
}

.site-footer__social-link--fb:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.site-footer__social-link--tiktok:hover {
    background: #010101;
    border-color: #fe2c55;
}

.site-footer__social-img {
    display: block;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    object-fit: contain;
}

.site-footer__map-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--nx-footer-border);
    background: #1a1a1a;
    aspect-ratio: 16 / 10;
    max-height: 220px;
}

.site-footer__map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--nx-footer-accent);
    text-decoration: none;
    transition: color 0.15s ease, gap 0.15s ease;
}

.site-footer__map-link .nx-footer-svg {
    width: 14px;
    height: 14px;
    max-width: 14px;
    max-height: 14px;
    opacity: 0.9;
}

.site-footer__map-link:hover {
    color: #a8d830;
    gap: 10px;
}

.site-footer__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__tag-list a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--nx-footer-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--nx-footer-border);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-footer__tag-list li:first-child a,
.site-footer__tag-list li:nth-child(2) a {
    background: rgba(133, 183, 22, 0.12);
    border-color: rgba(133, 183, 22, 0.35);
    color: #fff;
    font-weight: 600;
}

.site-footer__tag-list a:hover {
    color: #fff;
    background: var(--nx-footer-accent-soft);
    border-color: rgba(133, 183, 22, 0.4);
}

.site-footer__bar {
    border-top: 1px solid var(--nx-footer-border);
    background: #080808;
    padding: 18px 0 22px;
}

.site-footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer__copyright {
    margin: 0;
    font-size: 13px;
    color: var(--nx-footer-muted);
}

.site-footer__badge {
    display: block;
    height: 52px;
    width: auto;
    opacity: 0.95;
}

.nx-fab-dock {
    position: fixed;
    right: 0;
    bottom: 130px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    width: 130px;
}

.nx-fab-dock__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 130px;
    min-height: 38px;
    padding: 4px 8px;
    margin: 1px 10px 1px 0;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible;
    gap: 6px;
    transition: box-shadow 0.25s ease, color 0.25s ease;
}

@media (min-width: 768px) {
    .nx-fab-dock {
        bottom: 24px;
    }

    .nx-call-fab {
        bottom: max(20px, env(safe-area-inset-bottom, 0px));
    }

    .nx-totop {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.nx-fab-dock__item:hover {
    transform: none;
}

/* Về trang chủ — xanh lá, viền trắng */
.nx-fab-dock__item--home {
    background-color: #009210 !important;
    border: 1px solid #fff;
    justify-content: center;
    padding: 6px 8px;
    margin-top: 2px;
}

.nx-fab-dock__item--home:hover {
    box-shadow: inset 175px 0 0 0 #85b716;
    color: #ff0;
}

.nx-fab-dock__item--home .nx-fab-dock__icon {
    display: none;
}

.nx-fab-dock__item--home .nx-fab-dock__label {
    font-size: 0;
    opacity: 1;
    max-width: none;
    text-align: center;
}

.nx-fab-dock__item--home .nx-fab-dock__label::after {
    content: "Về Trang Chủ";
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.nx-fab-dock__item--home:hover .nx-fab-dock__label::after {
    color: #ff0;
}

/* Google Map — nền đen, viền xanh */
.nx-fab-dock__item--map {
    background: rgba(0, 0, 0, 0.81) !important;
    border: 2px solid #639700;
    padding: 3px 5px;
    align-items: center;
    min-height: 44px;
    overflow: visible;
}

.nx-fab-dock__item--map .nx-fab-dock__icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-shrink: 0;
}

.nx-fab-dock__item--map .nx-fab-dock__icon .nx-footer-svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    color: #fff;
}

.nx-fab-dock__item--map .nx-fab-dock__label {
    font-size: 0;
    line-height: 1.15;
    opacity: 1;
    max-width: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    min-width: 0;
    flex: 1;
    overflow: visible;
}

.nx-fab-dock__label--map .nx-fab-dock__map-title {
    display: block;
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #fff;
    font-weight: 400;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nx-fab-dock__label--map .nx-fab-dock__map-stats {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 2px;
    font-size: 7px;
    line-height: 1.1;
    text-transform: none;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}

.nx-map-count-num {
    color: #ee1d25;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* Zalo — nền xanh, viền xanh lá */
.nx-fab-dock__item--zalo {
    background: rgba(4, 169, 224, 0.81) !important;
    border: 2px solid #639700;
    padding: 2px 6px;
}

.nx-fab-dock__item--zalo .nx-fab-dock__icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    border-radius: 50% !important;
    background: #fff url("https://nhaxinhdesign.com/wp-content/plugins/floating-click-to-contact-buttons/zalo.png") center / 22px no-repeat !important;
    box-shadow: none !important;
    font-size: 0 !important;
    color: transparent !important;
}

.nx-fab-dock__item--zalo .nx-fab-dock__label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 1;
    max-width: none;
    text-align: left;
}

.nx-fab-dock__item:hover .nx-fab-dock__icon {
    transform: none;
    box-shadow: none;
}

.nx-fab-dock__item:hover .nx-fab-dock__label {
    opacity: 1;
}

/* Ẩn nút nổi cũ nếu còn trong DOM */
.zalo-button,
.gotohome,
.fb-button {
    display: none !important;
}

/* Quick nav mobile — ẩn mặc định (desktop/tablet) */
.nx-mobile-quicknav {
    display: none;
}

@media (min-width: 768px) {
    .nx-mobile-quicknav {
        display: none !important;
    }
}

#footer.site-footer,
footer .site-footer__inner {
    position: static !important;
    height: auto !important;
    width: 100%;
}

.site-footer .coppyrights,
.site-footer .content[style*="margin:50px"] {
    display: none;
}

.nx-totop {
    bottom: 28px !important;
    left: 14px !important;
    top: auto !important;
}

/* #toTop — ẩn chữ thừa, hiện icon mũi tên */
#page > a#toTop:not(.nx-totop) {
    display: none !important;
}

#toTop,
a#toTop.nx-totop,
.tm-totop-scroller#toTop {
    position: fixed !important;
    font-size: 0 !important;
    color: transparent !important;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none !important;
    z-index: 9997;
}

#toTop span,
#toTop #toTopHover {
    display: none !important;
}

#toTop::after,
a.nx-totop::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 205.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z'/%3E%3C/svg%3E");
    text-indent: 0;
    pointer-events: none;
}

/* ── Mobile push menu — sang trọng ── */
.push-body {
    overflow: hidden;
}

body.nx-mobile-nav-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}

.nx-mobile-nav__overlay,
.push-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
}

.nx-mobile-nav__overlay:not([hidden]),
.push-overlay:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

.nx-mobile-nav.push-menu {
    --nx-nav-bg: #101010;
    --nx-nav-bg-soft: #171717;
    --nx-nav-text: rgba(255, 255, 255, 0.92);
    --nx-nav-muted: rgba(255, 255, 255, 0.55);
    --nx-nav-gold: #c9a84c;
    --nx-nav-green: #85b716;
    --nx-nav-border: rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(88vw, 380px);
    max-width: 380px;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden !important;
    background: linear-gradient(165deg, #161616 0%, #0d0d0d 48%, #0a0a0a 100%) !important;
    color: var(--nx-nav-text);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nx-mobile-nav.push-menu[hidden] {
    display: flex;
}

.nx-mobile-nav.push-menu.is-open {
    transform: translateX(0);
}

.nx-mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--nx-nav-border);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, transparent 100%);
    flex-shrink: 0;
}

.nx-mobile-nav__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    min-width: 0;
}

.nx-mobile-nav__brand img {
    display: block;
    max-width: 118px;
    width: auto;
    height: auto;
}

.nx-mobile-nav__brand-tag {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9d4a8;
    font-weight: 600;
}

.nx-mobile-nav__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--nx-nav-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.nx-mobile-nav__close:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.35);
    transform: rotate(90deg);
}

.nx-mobile-nav__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding: 8px 0 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.35) transparent;
}

.nx-mobile-nav__body::-webkit-scrollbar {
    width: 5px;
}

.nx-mobile-nav__body::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.35);
    border-radius: 4px;
}

.nx-mobile-nav__list,
.nx-mobile-nav .sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nx-mobile-nav .nav-item {
    position: relative;
}

.nx-mobile-nav .nav-item::before,
.nx-mobile-nav .nav-item::marker {
    display: none !important;
    content: none !important;
}

.nx-mobile-nav__row {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px 0 16px;
}

.nx-mobile-nav .nav-link {
    flex: 1;
    display: block;
    padding: 14px 8px 14px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--nx-nav-text) !important;
    text-decoration: none !important;
    border-bottom: 1px solid var(--nx-nav-border);
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.nx-mobile-nav .nav-item:last-child > .nx-mobile-nav__row > .nav-link {
    border-bottom-color: transparent;
}

.nx-mobile-nav .nav-link:hover {
    color: var(--nx-nav-gold) !important;
    padding-left: 4px;
}

.nx-mobile-nav .nav-item.is-active > .nx-mobile-nav__row > .nav-link {
    color: #fff !important;
    font-weight: 700;
    padding-left: 8px;
    border-left: 3px solid var(--nx-nav-green);
    margin-left: -3px;
}

.nx-mobile-nav .sub-toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #d8e8a8;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.2s ease;
}

.nx-mobile-nav .sub-toggle:hover {
    background: rgba(133, 183, 22, 0.18);
    color: #fff;
    border-color: rgba(133, 183, 22, 0.45);
}

.nx-mobile-nav .nav-item.is-expanded > .nx-mobile-nav__row .sub-toggle {
    color: #fff;
    background: rgba(133, 183, 22, 0.22);
    border-color: rgba(133, 183, 22, 0.5);
    transform: rotate(180deg);
}

.nx-mobile-nav__chevron {
    display: block;
    width: 16px;
    height: 16px;
    color: inherit;
}

.nx-mobile-nav .sub-list[hidden] {
    display: none !important;
}

.nx-mobile-nav .sub-list:not([hidden]) {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    animation: nxSubReveal 0.22s ease;
}

@keyframes nxSubReveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nx-mobile-nav .sub-list {
    margin: 0;
    padding: 4px 0 8px 0;
    background: rgba(0, 0, 0, 0.22);
    border-left: 2px solid rgba(133, 183, 22, 0.35);
    margin-left: 18px;
}

.nx-mobile-nav .sub-list .nav-link {
    padding: 11px 12px 11px 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--nx-nav-muted) !important;
}

.nx-mobile-nav .sub-list .nav-item.is-active > .nx-mobile-nav__row > .nav-link {
    color: #fff !important;
    border-left-color: var(--nx-nav-gold);
}

.nx-mobile-nav .sub-list .sub-list {
    margin-left: 14px;
    border-left-color: rgba(201, 168, 76, 0.28);
}

.nx-mobile-nav__foot {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--nx-nav-border);
    background: rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.nx-mobile-nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 13px;
    background: linear-gradient(135deg, rgba(133, 183, 22, 0.95) 0%, rgba(106, 154, 18, 0.95) 100%);
    box-shadow: 0 6px 20px rgba(133, 183, 22, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nx-mobile-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(133, 183, 22, 0.38);
    color: #fff !important;
}

.nx-mobile-nav__cta strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nx-mobile-nav__cta svg {
    flex-shrink: 0;
}

/* Nút hamburger khi menu mở */
body.nx-mobile-nav-open .navbar-toggle.menu_mobile_header {
    border-color: rgba(133, 183, 22, 0.45);
    box-shadow: 0 0 0 2px rgba(133, 183, 22, 0.15);
}

body.nx-mobile-nav-open .navbar-toggle .bar1 {
    transform: translateY(5px) rotate(45deg);
}

body.nx-mobile-nav-open .navbar-toggle .bar2 {
    opacity: 0;
}

body.nx-mobile-nav-open .navbar-toggle .bar3 {
    transform: translateY(-5px) rotate(-45deg);
}

.navbar-toggle .bar1,
.navbar-toggle .bar2,
.navbar-toggle .bar3 {
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Ghi đè style_app.css cũ cho panel menu mới */
#main_navigation.nx-mobile-nav,
#main_navigation.nx-mobile-nav * {
    mix-blend-mode: normal !important;
}

#main_navigation.nx-mobile-nav .nav-link {
    color: var(--nx-nav-text) !important;
}

@media (min-width: 1025px) {
    .nx-mobile-nav.push-menu,
    .nx-mobile-nav__overlay {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__map {
        grid-column: 1 / -1;
    }

    .site-footer__map-wrap {
        max-height: 240px;
    }
}

@media (max-width: 767px) {
    .site-footer__nav-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .site-footer__nav-list::-webkit-scrollbar {
        display: none;
    }

    .site-footer__nav-list li a,
    .site-footer__nav-label {
        padding: 12px 14px;
        white-space: nowrap;
    }

    .site-footer__main {
        padding: 28px 0 24px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__logo {
        text-align: center;
        display: block;
    }

    .site-footer__logo img {
        margin: 0 auto;
    }

    .site-footer__tagline {
        text-align: center;
    }

    .site-footer__social {
        justify-content: center;
    }

    .site-footer__hotline-number {
        font-size: 18px;
    }

    .site-footer__bar-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Slider — tránh ảnh méo trên mobile */
#slider img,
.slick-slide img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Accessibility — focus ring cho link chính */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #c0392b;
    outline-offset: 2px;
}

/* Khối Bootstrap từ editor — responsive nội dung bài viết */
.nx-bs-shell {
    margin-bottom: 1.25em;
    max-width: 100%;
}

.nx-bs-shell .row {
    margin-left: -10px;
    margin-right: -10px;
}

.nx-bs-shell .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 12px;
}

.nx-bs-shell img,
.nx-bs-shell .img-responsive,
.nx-bs-shell .media-object {
    max-width: 100%;
    height: auto;
}

.nx-bs-shell .embed-responsive {
    margin-bottom: 1em;
}

.nx-bs-shell .nx-spacer-sm {
    height: 12px;
}

.nx-bs-shell .nx-spacer-lg {
    height: 32px;
}

.nx-bs-shell .nx-divider {
    border-color: #e0e0e0;
}

.nx-bs-shell .nx-cta-row .nx-cta-title {
    margin-top: 0;
}

@media (max-width: 767px) {
    .nx-bs-shell .nx-cta-action {
        text-align: center;
        margin-top: 12px;
    }

    .nx-bs-shell .nx-cta-action .btn {
        width: 100%;
        max-width: 320px;
    }

    .nx-bs-shell .media-left,
    .nx-bs-shell .media-right {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }

    .nx-bs-shell .media-object {
        margin: 0 auto;
    }

    .nx-bs-shell .jumbotron {
        padding: 24px 16px;
    }

    .nx-bs-shell .jumbotron h1 {
        font-size: 26px;
    }

    .nx-bs-shell .btn-group-justified {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .nx-bs-shell .btn-group-justified .btn {
        width: 100%;
        border-radius: 4px !important;
    }

    .nx-bs-shell .table-responsive {
        border: none;
        margin-bottom: 0;
    }

    .nx-bs-shell table {
        font-size: 13px;
    }

    .nx-bs-shell .panel,
    .nx-bs-shell .well {
        margin-bottom: 16px;
    }

    .nx-bs-shell .thumbnail {
        display: block;
        max-width: 100%;
    }

    .nx-bs-shell .list-group-item {
        word-break: break-word;
    }

    .nx-bs-shell blockquote {
        font-size: 16px;
        padding: 12px 16px;
    }
}

@media (max-width: 991px) {
    .nx-bs-shell .row > [class*="col-md-"],
    .nx-bs-shell .row > [class*="col-lg-"] {
        width: 100%;
        float: none;
    }

    .nx-bs-shell .media {
        display: block;
    }

    .nx-bs-shell .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ── Single article / page / theme — cổ điển hiện đại ── */

/* Legacy: .leftContent { float: right } trong style_app.css — gây lệch bố cục single */
.nx-single-page {
    overflow-x: clip;
}

.nx-single-page .main_content,
.nx-single-page .container,
.nx-single-page .body-container,
.nx-single-page .section,
.nx-single-page .group-section-wrap,
.nx-single-page .row-content,
.nx-single-page .leftContent,
.nx-single-page .listNews,
.nx-single-page .listProduct,
.nx-single-page .container_single_product_view,
.nx-single-page .cate_desc,
.nx-single-page .cate_desc_content {
    float: none !important;
    width: 100% !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.nx-single-page .container {
    max-width: 1080px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.nx-single-page .body-container {
    background: #faf9f6;
    border: none;
    box-shadow: none;
}

.nx-single-page .listNews,
.nx-single-page .listProduct {
    padding: 0;
}

.nx-single-page .contentNews {
    padding: 0;
    text-align: inherit;
}

.nx-single-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.nx-single-article__body {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(44, 38, 28, 0.06);
    padding: 24px 28px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .nx-single-page .container,
    .nx-single-page.single_tin_tuc_view .container,
    .nx-single-page.single_tin_tuc_not_cat_view .container {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .nx-single-page .contentNews,
    .nx-single-page .contentNews.boxImg,
    .nx-single-page .listNews .contentNews {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nx-single-article {
        padding-bottom: 16px;
    }

    .nx-single-article__body {
        padding: 10px 8px;
        border-radius: 4px;
    }
}

/* Hero */
.nx-article-hero {
    text-align: center;
    padding: 20px 0 18px;
    margin-bottom: 12px;
    width: 100%;
}

.nx-article-breadcrumb {
    text-align: left;
    margin-bottom: 18px;
}

.nx-article-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #7a7268;
}

.nx-article-breadcrumb__item:not(:last-child)::after {
    content: "›";
    margin-left: 6px;
    color: #b5aea3;
}

.nx-article-breadcrumb__item a {
    color: #5c6b4a;
    text-decoration: none;
}

.nx-article-breadcrumb__item a:hover {
    color: #3d4a32;
    text-decoration: underline;
}

.nx-article-breadcrumb__item--current span {
    color: #8a8278;
}

.nx-article-hero__title {
    font-family: Roboto, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e2a;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #c5b896;
    position: relative;
    letter-spacing: 0;
    word-spacing: normal;
    font-feature-settings: normal;
    text-rendering: optimizeLegibility;
}

.nx-article-hero__title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 2px;
    background: #85b716;
}

.nx-article-hero__thumb {
    margin: 0 0 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8e4dc;
}

.nx-article-hero__thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(420px, 56vw);
    object-fit: cover;
}

.nx-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    font-size: 13px;
    color: #6b6560;
}

.nx-article-hero__meta-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.nx-article-hero__meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a39e96;
}

.nx-article-hero__author strong {
    color: #3d4a32;
    font-weight: 600;
}

/* Nội dung bài */
.nx-single-page .nx-article-content.details-sumary,
.nx-single-page .entry-content.nx-article-content,
.nx-single-page .details-sumary.nx-article-content {
    display: block !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
    font-size: 16px;
    line-height: 1.75;
    color: #2a2826;
    text-align: justify;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.nx-single-page .nx-article-content img,
.nx-single-page .nx-article-content figure img,
.nx-single-page .nx-article-content .img-responsive,
.nx-single-page .nx-article-content amp-img,
.nx-single-page .nx-article-content iframe,
.nx-single-page .nx-article-content video,
.nx-single-page .nx-article-content embed,
.nx-single-page .nx-article-content object {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: 1rem auto !important;
    float: none !important;
}

.nx-single-page .nx-article-content figure {
    max-width: 100%;
    margin: 1rem auto;
}

.nx-single-page .nx-article-content table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nx-single-page .nx-article-content .row,
.nx-single-page .nx-article-content [class*="col-"] {
    max-width: 100%;
}

.nx-single-page .nx-article-content .alignleft,
.nx-single-page .nx-article-content .alignright,
.nx-single-page .nx-article-content .uk-align-left,
.nx-single-page .nx-article-content .uk-align-right {
    float: none !important;
    display: block;
    margin: 1rem auto !important;
    text-align: center;
}

.nx-single-page .nx-article-content p {
    margin: 0 0 1em;
    padding: 0;
}

.nx-single-page .nx-article-content h2,
.nx-single-page .nx-article-content h3,
.nx-single-page .nx-article-content h4 {
    font-family: Roboto, "Segoe UI", system-ui, -apple-system, sans-serif;
    color: #2c3e2a;
    text-align: left;
    margin: 1.6em 0 0.6em;
    scroll-margin-top: 90px;
    letter-spacing: 0;
    font-feature-settings: normal;
}

.nx-single-page .nx-article-content h2 {
    font-size: 1.45em;
    border-left: 3px solid #85b716;
    padding-left: 12px;
}

.nx-single-page .nx-article-content h3 {
    font-size: 1.2em;
}

.nx-section-heading.container_title_category {
    border-bottom-color: #c5b896;
    margin-top: 32px;
}

.nx-section-heading .title_product {
    color: #2c3e2a !important;
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-size: 20px !important;
}

.nx-section-label.cusstom_after_slick {
    border-bottom: 2px solid #d8d8d0 !important;
    width: 100%;
    font-size: 15px !important;
    color: #2c3e2a !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 16px 0;
    padding-bottom: 8px;
}

/* TOC — cổ điển hiện đại + FAB popup */
.nx-toc,
#toc_container.nx-toc {
    display: block;
    width: 100%;
    background: linear-gradient(145deg, #fdfbf7 0%, #f5f1e8 48%, #f0ebe2 100%);
    border: 1px solid #d9d0c0;
    border-radius: 10px;
    margin: 0 0 32px;
    padding: 0;
    box-shadow:
        0 2px 8px rgba(44, 38, 28, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.nx-toc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #85b716 0%, #6a9a12 100%);
    border-radius: 10px 0 0 10px;
}

.nx-toc::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 64px;
    height: 64px;
    opacity: 0.06;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232c3e2a'%3E%3Cpath d='M4 6h16v2H4V6zm0 5h16v2H4v-2zm0 5h10v2H4v-2z'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.nx-toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px 18px 28px;
    border-bottom: 1px solid #e2d9ca;
    background: rgba(255, 255, 255, 0.35);
}

.nx-toc__title,
.nx-toc .toc_title {
    font-family: Roboto, "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2c3e2a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0;
}

.nx-toc__ornament {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2385b716'%3E%3Cpath d='M12 2L2 7v10l10 5 10-5V7L12 2zm0 2.2l7.5 3.75L12 11.7 4.5 7.95 12 4.2z'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

.nx-toc__toggle {
    flex-shrink: 0;
    border: 1px solid #c5b896;
    background: #fff;
    color: #5c5348;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nx-toc__toggle:hover {
    background: #2c3e2a;
    color: #fff;
    border-color: #2c3e2a;
    box-shadow: 0 2px 8px rgba(44, 62, 42, 0.25);
}

.nx-toc__panel {
    padding: 18px 24px 22px 28px;
}

.nx-toc__list,
.nx-toc ul.toc_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 720px) {
    .nx-toc__list,
    .nx-toc ul.toc_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nx-toc__item,
.nx-toc ul.toc_list > li {
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
}

.nx-toc__sublist,
.nx-toc ul.toc_list ul {
    grid-column: 1 / -1;
    list-style: none;
    margin: 2px 0 6px 0;
    padding: 4px 0 4px 20px;
    border-left: 2px solid #d4cbb8;
    position: relative;
}

.nx-toc__sublist::before,
.nx-toc ul.toc_list ul::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #85b716 0%, transparent 100%);
    opacity: 0.5;
}

.nx-toc__depth-3 .nx-toc__link,
.nx-toc__depth-4 .nx-toc__link,
.nx-toc__depth-5 .nx-toc__link,
.nx-toc__depth-6 .nx-toc__link {
    font-size: 13px;
}

.nx-toc__depth-3 .nx-toc__index,
.nx-toc__depth-4 .nx-toc__index,
.nx-toc__depth-5 .nx-toc__index,
.nx-toc__depth-6 .nx-toc__index {
    min-width: 22px;
    height: 22px;
    font-size: 11px;
    background: #6a9a12;
}

.nx-toc__link,
.nx-toc ul.toc_list li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 6px;
    line-height: 1.45;
    color: #3d3832;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
    border: 1px solid transparent;
}

.nx-toc__link:hover,
.nx-toc ul.toc_list li a:hover,
.nx-toc__link.is-active,
.nx-toc ul.toc_list li a.is-active {
    background: linear-gradient(90deg, rgba(133, 183, 22, 0.14) 0%, rgba(133, 183, 22, 0.04) 100%);
    color: #2c3e2a;
    border-color: rgba(133, 183, 22, 0.2);
}

.nx-toc__link.is-active .nx-toc__text,
.nx-toc ul.toc_list li a.is-active {
    font-weight: 600;
    color: #c45c1a;
}

.nx-toc__index,
.nx-toc .toc_number {
    flex-shrink: 0;
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, #95c91f 0%, #6fa010 100%);
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(106, 154, 18, 0.35);
}

.nx-toc__text {
    flex: 1;
    padding-top: 4px;
}

/* FAB mục lục — nhỏ gọn, cao hơn */
.nx-toc-fab {
    position: fixed;
    left: auto;
    right: 12px;
    bottom: 46%;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nx-toc-fab.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.nx-toc-fab__ring {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #95c91f, #6fa010);
    box-shadow: 0 3px 12px rgba(106, 154, 18, 0.4);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nx-toc-fab:hover .nx-toc-fab__ring,
.nx-toc-fab:focus-visible .nx-toc-fab__ring {
    box-shadow: 0 6px 22px rgba(106, 154, 18, 0.55);
    transform: translateX(-50%) scale(1.06);
}

.nx-toc-fab__icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 6h16v2H4V6zm0 5h16v2H4v-2zm0 5h10v2H4v-2z'/%3E%3C/svg%3E") center/18px no-repeat;
}

.nx-toc-fab__label {
    position: relative;
    z-index: 1;
    font-size: 8px;
    font-weight: 500;
    color: #6b6560;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    white-space: nowrap;
    opacity: 0.55;
}

@media (max-width: 767px) {
    .nx-toc-fab {
        right: 8px;
        bottom: calc(58px + env(safe-area-inset-bottom, 0px) + 188px);
        width: 40px;
    }

    .nx-toc-fab__ring,
    .nx-toc-fab__icon {
        width: 36px;
        height: 36px;
    }

    .nx-toc-fab__icon {
        background-size: 16px;
    }

    .nx-toc-fab__label {
        font-size: 7px;
        opacity: 0.5;
    }

    .nx-article-hero {
        padding: 8px 0 6px;
        margin-bottom: 4px;
    }

    .nx-article-hero__title {
        font-size: clamp(17px, 4.8vw, 22px);
        padding-bottom: 8px;
        margin-bottom: 4px;
        line-height: 1.45;
    }

    .nx-article-hero__meta {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-bottom: 2px;
    }

    .nx-article-hero__thumb {
        margin-bottom: 6px;
    }

    .nx-article-breadcrumb {
        margin-bottom: 8px;
    }

    .nx-article-breadcrumb__list {
        font-size: 12px;
    }

    .nx-single-page .nx-article-content p {
        margin: 0 0 0.65em;
    }

    .nx-single-page .nx-article-content h2,
    .nx-single-page .nx-article-content h3,
    .nx-single-page .nx-article-content h4 {
        margin: 0.85em 0 0.35em;
    }

    .nx-single-page .nx-article-content h2 {
        font-size: 1.25em;
        padding-left: 8px;
    }

    .nx-single-page .nx-article-content img,
    .nx-single-page .nx-article-content figure {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .nx-toc,
    #toc_container.nx-toc {
        margin: 0 0 12px;
        border-radius: 6px;
    }

    .nx-toc__header {
        padding: 10px 12px 8px 16px;
    }

    .nx-toc__title,
    .nx-toc .toc_title {
        font-size: 15px;
    }

    .nx-toc__list,
    .nx-toc ul.toc_list {
        grid-template-columns: 1fr;
    }

    .nx-single-page .contact_news_container,
    .nx-single-page .author-inquiry-form,
    .nx-single-page .question_answer_container,
    .nx-single-page .releated_page_container {
        margin-top: 12px;
    }

    .nx-article-footer {
        margin: 12px 0 10px;
        padding: 12px 8px;
        border-radius: 6px;
    }

    .nx-toc-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .nx-toc-modal__dialog {
        max-height: 82vh;
        border-radius: 12px 12px 0 0;
    }
}

/* Theme single — đồng bộ padding */
.nx-single-page .single_project_theme_view_group .cate_desc_content {
    padding: 0 !important;
}

.nx-single-page .container-products-group {
    max-width: 1080px;
    margin: 0 auto;
}

/* Form liên hệ / tác giả trong bài */
.nx-single-page .contact_news_container,
.nx-single-page .author-inquiry-form,
.nx-single-page .question_answer_container {
    max-width: 100%;
    box-sizing: border-box;
}

/* Related posts */
.nx-single-page .releated_page_container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
}

/* Modal popup TOC */
body.nx-toc-modal-open {
    overflow: hidden;
}

.nx-toc-modal {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s;
}

.nx-toc-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.nx-toc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 28, 24, 0.55);
    backdrop-filter: blur(3px);
}

.nx-toc-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: min(78vh, 620px);
    background: #fdfbf7;
    border: 1px solid #d9d0c0;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(16px) scale(0.97);
    transition: transform 0.22s ease;
}

.nx-toc-modal.is-open .nx-toc-modal__dialog {
    transform: translateY(0) scale(1);
}

.nx-toc-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e2d9ca;
    background: linear-gradient(90deg, rgba(133, 183, 22, 0.12) 0%, transparent 100%);
}

.nx-toc-modal__title {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 17px;
    font-weight: 700;
    color: #2c3e2a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-toc-modal__title-icon {
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2385b716'%3E%3Cpath d='M12 2L2 7v10l10 5 10-5V7L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nx-toc-modal__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #d9d0c0;
    border-radius: 50%;
    background: #fff;
    color: #5c5348;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.nx-toc-modal__close:hover {
    background: #2c3e2a;
    color: #fff;
    border-color: #2c3e2a;
}

.nx-toc-modal__body {
    overflow-y: auto;
    padding: 8px 12px 16px;
    -webkit-overflow-scrolling: touch;
}

/* TOC compact trong modal */
.nx-toc--compact {
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.nx-toc--compact::before,
.nx-toc--compact::after {
    display: none;
}

.nx-toc--compact .nx-toc__panel {
    padding: 4px 4px 8px;
}

.nx-toc--compact .nx-toc__list,
.nx-toc--compact ul.toc_list {
    grid-template-columns: 1fr;
    gap: 2px;
}

.nx-toc--compact .nx-toc__link,
.nx-toc--compact ul.toc_list li a {
    padding: 10px 12px;
}

/* FAQ trong bài */
.nx-single-page .question_answer_container {
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid #e8e4dc;
}

.nx-single-page .title-faq {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #2c3e2a;
}

/* ══════════════════════════════════════════════
   Category — layout cân bằng + responsive
   ══════════════════════════════════════════════ */

.nx-category-page {
    overflow-x: clip;
}

.nx-category-page .main_content,
.nx-category-page .container,
.nx-category-page .body-container,
.nx-category-page .leftContent,
.nx-category-page .rightContent,
.nx-category-page .listProduct,
.nx-category-page .listNews,
.nx-category-page .row-content {
    float: none !important;
    width: 100% !important;
    max-width: 100%;
}

.nx-category-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.nx-category-page .container_title_category .title_product {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(18px, 4vw, 26px) !important;
    color: #2c3e2a !important;
    padding: 12px 0;
}

.nx-category-page .container_description_category,
.nx-category-page .container_description_category_news {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 10px;
    line-height: 1.5 !important;
    box-sizing: border-box;
}

.nx-category-page .container_description_category > div,
.nx-category-page .container_description_category_news > div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
}

.nx-category-page .container_description_category > div[style*="inline-block"],
.nx-category-page .container_description_category_news > div[style*="inline-block"] {
    padding-bottom: 12px !important;
}

.nx-category-page .container_description_category > div > div:last-child,
.nx-category-page .container_description_category_news > div > div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.nx-category-page .container_description_category ul,
.nx-category-page .container_description_category_news ul {
    padding-left: 1.2em;
    margin: 0.5em 0;
}

.nx-category-page .menu-chill-paren {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px 0;
    margin: 12px 0;
}

.nx-category-page .list-chill {
    padding: 10px 8px;
    font-size: 13px;
    text-align: center;
    background: #f3f0e8;
    color: #2c3e2a;
    border: 1px solid #ddd6c8;
}

/* Lưới dự án / theme category */
.nx-category-page .list_theme_category {
    padding: 0 !important;
    background: transparent !important;
}

.nx-category-page .list_theme_category .row.row-listpro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 !important;
    padding: 0;
    float: none !important;
}

/* Bootstrap .row ::before/::after (clearfix) thành ô grid ảo → hàng 1 thiếu item đầu */
.nx-category-page .list_theme_category .row.row-listpro::before,
.nx-category-page .list_theme_category .row.row-listpro::after {
    display: none !important;
    content: none !important;
}

.nx-category-page .list_theme_category .row.row-listpro > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    padding: 0 !important;
    float: none !important;
}

.nx-category-page .boxImg-item {
    margin: 0 !important;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(44, 38, 28, 0.06);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.nx-category-page .item_products_thumb {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
}

.nx-category-page .tm-article-featured-image {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.nx-category-page .tm-article-content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    top: auto !important;
    background: #fff;
}

.nx-category-page .tm-article-content .uk-article-title {
    background: #fff;
    flex-shrink: 0;
}

.nx-category-page .boxImgContent {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.nx-category-page .boxImgContent::before,
.nx-category-page .boxImgContent::after {
    display: none !important;
    content: none !important;
}

.nx-category-page .boxImg-item:hover {
    box-shadow: 0 4px 14px rgba(44, 38, 28, 0.1);
    transform: translateY(-2px);
}

.nx-category-page .imgProduct-project img,
.nx-category-page .tm-article-featured-image img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.nx-category-page .tm-article-content .uk-article-title {
    background: transparent;
}

.nx-category-page .tm-article-content .title_project {
    padding: 0;
    background: transparent;
}

.nx-category-page .tm-article-content .title_project a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto !important;
    min-height: 2.8em;
    margin: 0;
    padding: 10px 10px 12px;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #2c3e2a !important;
}

.nx-category-page .tm-article-content .description-article {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nx-category-page .page_navi {
    margin-top: 20px;
    padding: 8px 0 16px;
}

/* Video TikTok — chỉ hiện mobile trên trang danh mục dự án */
.nx-category-page .nx-mobile-videos-only {
    display: none !important;
}

@media (max-width: 767px) {
    .nx-category-page .nx-mobile-videos-only {
        display: block !important;
        margin: 10px 0 4px;
    }

    .nx-category-page .nx-mobile-videos-only__item {
        padding-left: 8px;
        padding-right: 8px;
    }

    .nx-category-page .nx-mobile-videos-only video {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        padding: 6px 0;
        border-radius: 8px;
    }
}

/* Danh sách tin tức dạng list */
.nx-category-page .content_list_new_category .newsitem {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #ece8e0;
}

.nx-category-page .content_list_new_category .newsitem img {
    width: 100% !important;
    height: auto !important;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.nx-category-page .content_list_new_category .newsitem img.larger {
    grid-row: span 2;
}

.nx-category-page .content_list_new_category .newsitem h2,
.nx-category-page .content_list_new_category .newsitem h3 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 6px;
}

.nx-category-page .content_list_new_category .newsitem h2 a,
.nx-category-page .content_list_new_category .newsitem h3 a {
    color: #2c3e2a;
}

.nx-category-page .content_list_new_category .newsitem p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile — nút nổi + thanh gọi + padding nội dung */
@media (max-width: 767px) {
    /* Hamburger — gạch đen rõ trên nền trắng */
    .navbar-toggle.menu_mobile_header .bar1,
    .navbar-toggle.menu_mobile_header .bar2,
    .navbar-toggle.menu_mobile_header .bar3 {
        background: #1a1a1a !important;
        width: 20px !important;
        height: 2px !important;
        margin: 3px 0 !important;
    }

    .navbar-toggle.menu_mobile_header .bar2::after {
        display: none !important;
        content: none !important;
    }

    body {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    #public-main,
    .body_content_inc {
        padding-bottom: 8px;
    }

    .nx-category-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nx-category-page .container-products-group .list_theme_category,
    .nx-category-page .container-products-group section#section .leftContent .row-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nx-category-page .container_description_category,
    .nx-category-page .container_description_category_news {
        padding: 10px 12px;
        margin-bottom: 8px !important;
        font-size: 14px;
    }

    .nx-category-page .container_description_category > div[style],
    .nx-category-page .container_description_category_news > div[style] {
        padding: 12px 14px !important;
        padding-bottom: 10px !important;
    }

    .nx-category-page .list_theme_category .row.row-listpro {
        gap: 8px;
    }

    .nx-category-page .tm-article-content .title_project a {
        font-size: 10px !important;
        min-height: 2em;
        padding: 4px;
    }

    .nx-category-page .rightContent {
        margin-top: 20px;
    }

    .nx-category-page .content_list_new_category .newsitem {
        grid-template-columns: 96px 1fr;
        gap: 10px;
    }

    /* Nút gọi mới — mobile */
    .nx-call-fab {
        left: max(10px, env(safe-area-inset-left, 0px));
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
        padding: 7px 14px 7px 7px;
        gap: 8px;
        max-width: min(220px, calc(100vw - 142px));
    }

    .nx-call-fab__icon {
        width: 36px;
        height: 36px;
    }

    .nx-call-fab__icon .nx-footer-svg {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .nx-call-fab__number {
        font-size: 13px;
    }

    /* FAB dock — góc phải dưới */
    .nx-fab-dock {
        right: 0;
        bottom: max(12px, env(safe-area-inset-bottom, 0px));
        width: 130px;
        gap: 0;
    }

    .nx-fab-dock__item {
        width: 130px;
        margin-right: 6px;
        min-height: 36px;
    }

    .nx-fab-dock__item--home .nx-fab-dock__label::after {
        font-size: 12px;
    }

    .nx-fab-dock__label--map .nx-fab-dock__map-title {
        font-size: 11px;
    }

    .nx-fab-dock__label--map .nx-fab-dock__map-stats {
        font-size: 6px;
    }

    .nx-map-count-num {
        font-size: 6px;
    }

    .nx-fab-dock__item--map .nx-fab-dock__icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;
    }

    .nx-fab-dock__item--map .nx-fab-dock__icon .nx-footer-svg {
        width: 18px;
        height: 18px;
        max-width: 18px;
        max-height: 18px;
    }

    .nx-fab-dock__item--zalo .nx-fab-dock__icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;
        background-size: 18px !important;
    }

    .nx-fab-dock__item--zalo .nx-fab-dock__label {
        font-size: 13px;
    }

    .nx-totop {
        bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
        left: 10px !important;
        z-index: 9997;
    }

    .nx-toc-fab {
        right: 8px;
        bottom: calc(140px + env(safe-area-inset-bottom, 0px));
    }
}

@media (min-width: 768px) {
    .nx-category-page .list_theme_category .row.row-listpro {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .nx-category-page .tm-article-content .title_project a {
        font-size: 14px !important;
    }
}

@media (min-width: 1200px) {
    .nx-category-page .list_theme_category .row.row-listpro {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

/* Author inquiry form */
.nx-author-inquiry {
    margin: 24px 0;
    padding: 20px 22px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
}

.nx-author-inquiry__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.nx-author-inquiry__hint {
    margin: 0 0 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.nx-author-inquiry__field {
    margin-bottom: 14px;
}

.nx-author-inquiry__field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.nx-author-inquiry .nx-required {
    color: #dc2626;
}

.nx-author-inquiry__form .form-control {
    border-radius: 6px;
    border-color: #d1d5db;
    box-shadow: none;
}

.nx-author-inquiry__form .form-control:focus {
    border-color: #d4a017;
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15);
}

.nx-author-inquiry__submit {
    min-width: 160px;
    font-weight: 600;
    border-radius: 6px;
}

.nx-author-inquiry__alert {
    margin-bottom: 14px;
}

.nx-author-inquiry__errors {
    margin: 0;
    padding-left: 18px;
}

@media (max-width: 767px) {
    .nx-author-inquiry {
        padding: 16px;
        margin: 18px 0;
    }

    .nx-author-inquiry__submit {
        width: 100%;
    }
}

/* ============================================================
   Article footer — share, author box, comments (Nhà Xinh)
   ============================================================ */
.nx-article-footer {
    margin: 28px 0 24px;
    padding: 22px 20px 24px;
    background: #1f1f1f;
    border-radius: 10px;
    color: #e8e8e8;
}

.nx-share-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.nx-share-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.nx-share-bar__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

.nx-share-bar__btn--facebook { background: #3b5998; }
.nx-share-bar__btn--twitter { background: #1da1f2; }
.nx-share-bar__btn--pinterest { background: #bd081c; }
.nx-share-bar__btn--print { background: #6b7280; }

.nx-author-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nx-author-box__avatar {
    flex: 0 0 88px;
}

.nx-author-box__avatar img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 6px;
}

.nx-author-box__name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #c8a415;
    line-height: 1.3;
}

.nx-author-box__byline {
    margin: 0 0 8px;
    font-size: 13px;
    color: #b8b8b8;
}

.nx-author-box__bio {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #f0f0f0;
}

.nx-comments__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #c8a415;
}

.nx-comments__policy {
    margin: 0 0 16px;
    font-size: 13px;
    color: #a8a8a8;
}

.nx-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(200, 164, 21, 0.1);
    border: 1px solid rgba(200, 164, 21, 0.25);
}

.nx-rating-summary__text {
    font-size: 14px;
    color: #e8e8e8;
}

.nx-star,
.nx-star-rating__btn .fa-star {
    color: #6b7280;
}

.nx-star--on,
.nx-star-rating__btn.is-active .fa-star {
    color: #c8a415;
}

.nx-star-rating {
    display: inline-flex;
    gap: 4px;
}

.nx-star-rating__btn {
    border: none;
    background: transparent;
    padding: 2px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    transition: transform 0.1s ease, color 0.15s ease;
}

.nx-star-rating__btn:hover,
.nx-star-rating__btn.is-active {
    color: #c8a415;
    transform: scale(1.05);
}

.nx-star-rating--error {
    outline: 2px solid #c0392b;
    border-radius: 6px;
}

.nx-feedback__stars-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
}

.nx-comment__stars {
    font-size: 12px;
}

.nx-comments__list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.nx-comment {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nx-comment__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 6px;
    align-items: baseline;
}

.nx-comment__author {
    color: #c8a415;
    font-size: 14px;
}

.nx-comment__date {
    font-size: 12px;
    color: #888;
}

.nx-comment__body {
    font-size: 14px;
    line-height: 1.6;
    color: #ececec;
}

.nx-comments__field {
    margin-bottom: 14px;
}

.nx-comments__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #d0d0d0;
}

.nx-comments__textarea,
.nx-comments__form .form-control {
    background: #2a2a2a;
    border: 1px solid #3d3d3d;
    color: #f5f5f5;
    border-radius: 6px;
    box-shadow: none;
}

.nx-comments__textarea::placeholder,
.nx-comments__form .form-control::placeholder {
    color: #8a8a8a;
}

.nx-comments__textarea:focus,
.nx-comments__form .form-control:focus {
    border-color: #c8a415;
    outline: none;
    box-shadow: 0 0 0 2px rgba(200, 164, 21, 0.2);
}

.nx-comments__remember-label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: #b8b8b8;
    font-weight: 400;
    cursor: pointer;
}

.nx-comments__submit {
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #d4b44a 0%, #a88410 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.nx-comments__submit:hover,
.nx-comments__submit:focus {
    color: #fff;
    background: linear-gradient(180deg, #e0c25a 0%, #b89218 100%);
}

.nx-required {
    color: #e57373;
}

/* Thông báo chuẩn Nhà Xinh */
.nx-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    position: relative;
}

.nx-notice--success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
    color: #166534;
}

.nx-notice--error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #991b1b;
}

.nx-notice--info {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.35);
    color: #1e40af;
}

.nx-article-footer .nx-notice--success {
    background: rgba(34, 197, 94, 0.15);
    color: #bbf7d0;
    border-color: rgba(34, 197, 94, 0.4);
}

.nx-article-footer .nx-notice--error {
    background: rgba(239, 68, 68, 0.15);
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.4);
}

.nx-notice__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: currentColor;
    color: #fff;
    filter: brightness(0.85);
}

.nx-notice__title {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 14px;
}

.nx-notice__message,
.nx-notice__list {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.nx-notice__list {
    padding-left: 18px;
}

.nx-notice__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    opacity: 0.6;
    cursor: pointer;
    color: inherit;
    padding: 0;
}

.nx-notice__close:hover {
    opacity: 1;
}

.nx-author-inquiry {
    background: #faf9f6;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
}

.nx-author-inquiry__submit {
    background: linear-gradient(180deg, #d4b44a 0%, #a88410 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
}

.nx-author-inquiry__submit:hover {
    color: #fff;
    background: linear-gradient(180deg, #e0c25a 0%, #b89218 100%);
}

@media (max-width: 767px) {
    .nx-article-footer {
        padding: 16px 14px 18px;
    }

    .nx-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nx-comments__submit {
        width: 100%;
    }
}

/* ============================================================
   MOBILE HEADER — Logo trái | 3 nút nhỏ giữa | Menu phải
   Override style_app.css (cuối file)
   ============================================================ */
@media (max-width: 767px) {
    header#header-site .nav_logo_group .container_group_header {
        display: block !important;
        padding: 0 !important;
        min-height: 0 !important;
        gap: 0 !important;
        width: 100% !important;
    }

    header#header-site .container_group_header > section,
    header#header-site .container_group_header > .header-item.header-collection {
        display: none !important;
    }

    #top-head.nx-mobile-header {
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;
        flex: none !important;
        background: #fff;
        border-bottom: 1px solid #ececec;
    }

    #top-head.nx-mobile-header.is-stuck {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9990;
        width: 100%;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    #top-head.nx-mobile-header.is-scroll-hidden {
        transform: translateY(-110%);
    }

    .nx-mobile-header-spacer {
        display: block;
        width: 100%;
        flex-shrink: 0;
    }

    #top-head.nx-mobile-header .info-logo,
    #top-head.nx-mobile-header .logo_nx_dong_1,
    #top-head.nx-mobile-header .logo_nx_dong_2 {
        display: none !important;
    }

    #top-head.nx-mobile-header .nx-mobile-header__row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: flex-end !important;
        width: 100% !important;
        padding: 2px !important;
        gap: 2px !important;
        min-height: 46px !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    #top-head.nx-mobile-header .nx-mobile-header__logo {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        min-width: 62px !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    #top-head.nx-mobile-header .tm-logo {
        position: relative !important;
        line-height: 0 !important;
    }

    #top-head.nx-mobile-header .topbanner {
        margin-left: 0 !important;
        display: block !important;
    }

    #top-head.nx-mobile-header .logo_inc a img.pc {
        display: none !important;
    }

    #top-head.nx-mobile-header .logo_inc a img.mobile {
        position: static !important;
        display: block !important;
        height: 38px !important;
        width: auto !important;
        max-width: 68px !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    #top-head.nx-mobile-header .nx-mobile-quicknav {
        display: flex !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        gap: 2px !important;
        padding: 0 2px !important;
        margin: 0 0 2px 0 !important;
        align-self: flex-end !important;
    }

    #top-head.nx-mobile-header .nx-mobile-quicknav__link {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        min-height: 32px !important;
        height: auto !important;
        padding: 8px 2px !important;
        margin: 0 !important;
        font-size: clamp(9px, 2.35vw, 10px) !important;
        font-weight: 600 !important;
        font-family: Arial, Helvetica, sans-serif !important;
        line-height: 1.2 !important;
        border-radius: 5px !important;
        border: 1px solid #4a4a4a !important;
        box-shadow: none !important;
        background: #ffff00 !important;
        color: #000 !important;
        white-space: normal !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        word-break: break-word !important;
        hyphens: auto !important;
        text-decoration: none !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        -webkit-tap-highlight-color: transparent;
    }

    #top-head.nx-mobile-header .nx-mobile-quicknav__link.is-active {
        background: #ffff00 !important;
        color: #000 !important;
        border-color: #333 !important;
        font-weight: 700 !important;
    }

    #top-head.nx-mobile-header .nx-mobile-quicknav__link:hover,
    #top-head.nx-mobile-header .nx-mobile-quicknav__link:focus-visible {
        background: #ffff00 !important;
        color: #000 !important;
        filter: none !important;
        transform: none !important;
    }

    #top-head.nx-mobile-header .nx-mobile-header__menu.menu_mobile_header {
        position: relative !important;
        flex: 0 0 38px !important;
        width: 38px !important;
        height: 38px !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin: 0 0 2px 0 !important;
        margin-top: 0 !important;
        transform: none !important;
        float: none !important;
        align-self: flex-end !important;
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 6px 4px !important;
        box-sizing: border-box !important;
        background: linear-gradient(180deg, #9acc1f 0%, #85b716 100%) !important;
        border: 1px solid #6a9412 !important;
        border-radius: 6px !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
        opacity: 1 !important;
        filter: none !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        -webkit-appearance: none;
        appearance: none;
    }

    #top-head.nx-mobile-header .nx-mobile-header__menu.menu_mobile_header .bar1,
    #top-head.nx-mobile-header .nx-mobile-header__menu.menu_mobile_header .bar2,
    #top-head.nx-mobile-header .nx-mobile-header__menu.menu_mobile_header .bar3 {
        background: #fff !important;
        background-color: #fff !important;
        width: 18px !important;
        height: 2.5px !important;
        margin: 2px 0 !important;
        opacity: 1 !important;
        display: block !important;
        border-radius: 1px !important;
        flex-shrink: 0 !important;
    }

    #top-head.nx-mobile-header .nx-mobile-header__menu.menu_mobile_header .bar2::after {
        display: none !important;
        content: none !important;
    }

    body.nx-mobile-nav-open #top-head.nx-mobile-header .nx-mobile-header__menu.menu_mobile_header {
        background: linear-gradient(180deg, #7aaa10 0%, #6a9412 100%) !important;
        border-color: #5a8010 !important;
        box-shadow: 0 0 0 2px rgba(133, 183, 22, 0.35) !important;
    }

    /* Ẩn 3 nút tab cũ (CMS footer / news block) — đã có trên header */
    .footer_view_container:has(.container_tab_home),
    .footer_view_container:has(.tab_title),
    .hide-on-desktop .news-hot {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   Trang Giới thiệu — nx-about-page
   ═══════════════════════════════════════════════════════════════ */
.nx-about-page {
    --nx-about-bg: #f7f5f0;
    --nx-about-surface: #ffffff;
    --nx-about-ink: #1a1a1a;
    --nx-about-muted: #5c5a56;
    --nx-about-gold: #c9a84c;
    --nx-about-gold-dark: #a8872e;
    --nx-about-green: #6b8f2e;
    --nx-about-border: #e4dfd4;
    --nx-about-hero-bg: #121210;
    font-family: Roboto, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    color: var(--nx-about-ink);
    background: var(--nx-about-bg);
    line-height: 1.7;
}

.nx-about-page .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Hero */
.nx-about-hero {
    background: var(--nx-about-hero-bg);
    color: #f0ece4;
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
}

.nx-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 0%, rgba(107, 143, 46, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.nx-about-hero__inner {
    position: relative;
    z-index: 1;
}

.nx-about-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.nx-about-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.3);
}

.nx-about-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.nx-about-breadcrumb a:hover {
    color: var(--nx-about-gold);
}

.nx-about-hero__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nx-about-gold);
    margin: 0 0 12px;
}

.nx-about-hero__title {
    font-size: clamp(36px, 7vw, 56px);
    font-weight: 300;
    letter-spacing: 0.22em;
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.15;
}

.nx-about-hero__lead {
    font-size: clamp(15px, 2.2vw, 17px);
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin: 0 0 32px;
    line-height: 1.8;
}

.nx-about-hero__identity {
    display: grid;
    gap: 16px;
    margin-bottom: 36px;
    padding: 20px 24px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.nx-about-hero__identity-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nx-about-gold);
    margin-bottom: 4px;
}

.nx-about-hero__identity-item strong {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.nx-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nx-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nx-about-btn--primary {
    background: var(--nx-about-gold);
    color: #121210;
    border: 1px solid var(--nx-about-gold);
}

.nx-about-btn--primary:hover {
    background: var(--nx-about-gold-dark);
    border-color: var(--nx-about-gold-dark);
    color: #fff;
}

.nx-about-btn--ghost {
    background: transparent;
    color: #f0ece4;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.nx-about-btn--ghost:hover {
    border-color: var(--nx-about-gold);
    color: var(--nx-about-gold);
}

/* Sections */
.nx-about-section {
    padding: 56px 0;
}

.nx-about-section--staff {
    background: var(--nx-about-surface);
}

.nx-about-section--team {
    background: var(--nx-about-bg);
    border-top: 1px solid var(--nx-about-border);
}

.nx-about-section--history {
    background: var(--nx-about-surface);
    border-top: 1px solid var(--nx-about-border);
}

.nx-about-section--values {
    background: var(--nx-about-hero-bg);
    color: #f0ece4;
    padding: 64px 0;
}

.nx-about-section--contact {
    background: var(--nx-about-bg);
    border-top: 1px solid var(--nx-about-border);
    padding-bottom: 72px;
}

.nx-about-section__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--nx-about-gold-dark);
    margin: 0 0 8px;
}

.nx-about-section__title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 600;
    color: var(--nx-about-ink);
    margin: 0 0 20px;
    letter-spacing: 0.04em;
}

.nx-about-section__title--center {
    text-align: center;
    margin-bottom: 40px;
}

.nx-about-section--values .nx-about-section__title {
    color: #fff;
}

.nx-about-section__intro {
    font-size: 16px;
    color: var(--nx-about-muted);
    margin: 0 0 28px;
}

.nx-about-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--nx-about-ink);
}

/* Split layout */
.nx-about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.nx-about-figure {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--nx-about-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nx-about-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Profiles */
.nx-about-profile {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nx-about-border);
}

.nx-about-profile:last-of-type {
    border-bottom: none;
}

.nx-about-profile__name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--nx-about-ink);
}

.nx-about-profile__meta {
    font-weight: 400;
    font-size: 13px;
    color: var(--nx-about-muted);
}

.nx-about-profile p {
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--nx-about-muted);
}

/* Checklist */
.nx-about-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.nx-about-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--nx-about-muted);
}

.nx-about-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nx-about-green);
}

.nx-about-checklist--compact li {
    margin-bottom: 8px;
}

/* Team grid */
.nx-about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nx-about-team-card {
    background: var(--nx-about-surface);
    border: 1px solid var(--nx-about-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nx-about-team-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.nx-about-team-card__photo {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #ece8e0;
}

.nx-about-team-card--featured .nx-about-team-card__photo {
    aspect-ratio: auto;
    min-height: 280px;
}

.nx-about-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nx-about-team-card__body {
    padding: 24px;
    flex: 1;
}

.nx-about-team-card__name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--nx-about-ink);
}

.nx-about-team-card__role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-about-gold-dark);
    margin: 0 0 14px;
}

.nx-about-team-card__bio {
    font-size: 14px;
    color: var(--nx-about-muted);
    margin: 0;
    line-height: 1.75;
}

/* Prose */
.nx-about-prose p {
    font-size: 15px;
    color: var(--nx-about-muted);
    margin: 0 0 16px;
}

.nx-about-brands {
    font-style: italic;
    padding: 16px 20px;
    border-left: 3px solid var(--nx-about-gold);
    background: rgba(201, 168, 76, 0.06);
    border-radius: 0 4px 4px 0;
}

/* Milestone */
.nx-about-milestone {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--nx-about-bg);
    border: 1px solid var(--nx-about-border);
    border-radius: 4px;
}

.nx-about-milestone__year {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nx-about-gold-dark);
    margin-bottom: 10px;
}

.nx-about-milestone p {
    margin: 0;
}

/* Values */
.nx-about-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.nx-about-value {
    padding: 24px 20px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.nx-about-value__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--nx-about-gold);
    margin: 0 0 12px;
    letter-spacing: 0.04em;
}

.nx-about-value p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.7;
}

/* Contact bar */
.nx-about-contact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--nx-about-hero-bg);
    border-radius: 4px;
}

.nx-about-contact-bar__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-about-gold);
    margin-bottom: 6px;
}

.nx-about-contact-bar a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.nx-about-contact-bar a:hover {
    color: var(--nx-about-gold);
}

/* Mobile */
@media (max-width: 991px) {
    .nx-about-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nx-about-team-grid {
        grid-template-columns: 1fr;
    }

    .nx-about-team-card--featured {
        grid-template-columns: 1fr;
    }

    .nx-about-values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .nx-about-hero {
        padding: 32px 0 40px;
    }

    .nx-about-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nx-about-section {
        padding: 36px 0;
    }

    .nx-about-hero__identity {
        padding: 16px;
    }

    .nx-about-hero__actions {
        flex-direction: column;
    }

    .nx-about-btn {
        width: 100%;
        text-align: center;
    }

    .nx-about-values-grid {
        grid-template-columns: 1fr;
    }

    .nx-about-contact-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
    }

    .nx-about-team-card__body {
        padding: 16px 12px;
    }
}
