/**
 * NKP Main Styles
 * Unified design for Dental Clinic website
 * Uses body.nkp prefix for higher specificity
 */

/* ========================================
   Global Scrollbar
   ======================================== */

body.nkp,
body.nkp * {
    scrollbar-width: thin;
    scrollbar-color: var(--fs-color-primary, #c9a227) #f0f0f0;
}

body.nkp::-webkit-scrollbar,
body.nkp *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body.nkp::-webkit-scrollbar-track,
body.nkp *::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

body.nkp::-webkit-scrollbar-thumb,
body.nkp *::-webkit-scrollbar-thumb {
    background: var(--fs-color-primary, #c9a227);
    border-radius: 4px;
}

/* ========================================
   Global Scroll Navigation
   ======================================== */
body.nkp .nkp-scroll-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 850px;
    margin: 0 auto 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eee;
}

body.nkp .nkp-scroll-nav__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #fff;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

body.nkp .nkp-scroll-nav__item:hover {
    background: #f5f5f5;
    color: var(--fs-color-primary, #c9a227);
}

body.nkp .nkp-scroll-nav__item.active {
    background: linear-gradient(85.49deg, #F7F7F7 -41.52%, #FD9300 148.2%);
    color: #000;
}

body.nkp .nkp-scroll-nav__icon {
    width: 24px;
    height: 23px;
    flex-shrink: 0;
}

body.nkp::-webkit-scrollbar-thumb:hover,
body.nkp *::-webkit-scrollbar-thumb:hover {
    background: var(--fs-color-secondary, #0426a0);
}

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Input & Form */
    --nkp-input-height: 48px;
    --nkp-input-padding: 0 16px;
    --nkp-input-border-width: 1px;
    --nkp-input-border-color: #e0e0e0;
    --nkp-input-border-radius: 4px;
    --nkp-input-font-size: 15px;
    --nkp-input-text-color: var(--fs-color-base, #2a2a2a);
    --nkp-input-placeholder-color: #999;
    --nkp-input-background: #fff;
    --nkp-input-focus-border: var(--fs-color-secondary, #0426a0);
    --nkp-input-error-color: var(--fs-color-alert, #e91010);
    --nkp-input-success-color: var(--fs-color-success, #00a64c);
    --nkp-input-disabled-bg: #f5f5f5;
    --nkp-textarea-min-height: 140px;

    /* Select2 */
    --nkp-select2-height: 48px;
    --nkp-select2-border-radius: 4px;
    --nkp-select2-option-hover: rgba(4, 38, 160, 0.08);
    --nkp-select2-option-selected: var(--fs-color-secondary, #0426a0);
    --nkp-select2-dropdown-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ========================================
   Header
   ======================================== */

body.nkp .header-main {
    background: linear-gradient(94.86deg, #F7F7F7 5.1%, #F8AD11 151.85%);
}

/* NKP Header Bottom Navigation */
body.nkp .header-bottom-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 36px;
    list-style: none;
}

body.nkp .header-bottom-nav>li.menu-item {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #1B1B1B;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
}

/* Hover underline effect using ::before */
body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--fs-color-primary, #FD9300);
    transition: width 0.3s ease;
}

body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link:hover::before {
    width: 100%;
}

body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link:hover {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .header-bottom-nav>li.menu-item.active>a.nav-top-link,
body.nkp .header-bottom-nav>li.menu-item.current-menu-item>a.nav-top-link {
    color: var(--fs-color-primary, #FD9300);
}

/* Active state also shows underline */
body.nkp .header-bottom-nav>li.menu-item.active>a.nav-top-link::before,
body.nkp .header-bottom-nav>li.menu-item.current-menu-item>a.nav-top-link::before {
    width: 100%;
}

/* Home Icon Style */
body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link>i,
body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link>.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 18px;
    color: var(--fs-color-primary, #FD9300);
}

/* Trang chủ: Chỉ hiển thị icon, ẩn text */
body.nkp .header-bottom-nav>li.menu-item-home>a.nav-top-link,
body.nkp .header-bottom-nav>li.menu-item:first-child>a.nav-top-link {
    font-size: 0;
    gap: 0;
}

body.nkp .header-bottom-nav>li.menu-item-home>a.nav-top-link>i,
body.nkp .header-bottom-nav>li.menu-item-home>a.nav-top-link>.icon,
body.nkp .header-bottom-nav>li.menu-item:first-child>a.nav-top-link>i,
body.nkp .header-bottom-nav>li.menu-item:first-child>a.nav-top-link>.icon {
    font-size: 20px;
    width: 28px;
    height: 28px;
    margin: 0;
}

/* Submenu Arrow (if exists) */
body.nkp .header-bottom-nav>li.menu-item.menu-item-has-children>a.nav-top-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--fs-color-primary, #FD9300);
    border-bottom: 2px solid var(--fs-color-primary, #FD9300);
    transform: rotate(45deg);
    margin-left: 4px;
    margin-top: -2px;
}

/* Override Flatsome default nav styles */
body.nkp .header-bottom-nav.nav>li.menu-item>a {
    padding: 0;
}

body.nkp .header-bottom-nav.nav>li.menu-item>a::after {
    display: none;
}

body.nkp .header-bottom-nav.nav-uppercase li.menu-item>a {
    letter-spacing: 0;
}

/* Mobile Responsive */
@media (max-width: 849px) {
    body.nkp .header-bottom-nav {
        gap: 16px;
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
    }

    body.nkp .header-bottom-nav>li.menu-item>a.nav-top-link {
        font-size: 12px;
    }
}

/* NKP Header Contact Element */
body.nkp .nkp-header-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.nkp .nkp-header-contact__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    height: 56px;
}

body.nkp .nkp-header-contact__hours {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    height: 56px;
}

body.nkp .nkp-header-contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

body.nkp .nkp-header-contact__icon i {
    font-size: 32px;
    color: #FD9300;
}

body.nkp .nkp-header-contact__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

body.nkp .nkp-header-contact__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #1B1B1B;
}

body.nkp .nkp-header-contact__subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.5px;
    color: #1B1B1B;
}

body.nkp .nkp-header-contact__hotline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    height: 56px;
    border: 2px solid #FD9300;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.nkp .nkp-header-contact__hotline:hover {
    background: rgba(253, 147, 0, 0.1);
}

body.nkp .nkp-header-contact__hotline-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

body.nkp .nkp-header-contact__hotline .nkp-header-contact__title {
    white-space: nowrap;
}

/* NKP Menu Dịch vụ Element */
body.nkp .nkp-menu-dich-vu {
    margin: 0;
    padding: 0;
    position: relative;
}

body.nkp .nkp-menu-dich-vu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    margin: 0;
    background: var(--fs-color-secondary, #0426A0);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

body.nkp .nkp-menu-dich-vu__btn:hover {
    opacity: 0.9;
}

body.nkp .nkp-menu-dich-vu__btn svg {
    width: 17px;
    height: 15px;
    flex-shrink: 0;
}

body.nkp .nkp-menu-dich-vu__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 10px;
}

body.nkp .nkp-menu-dich-vu.active .nkp-menu-dich-vu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.nkp .nkp-menu-dich-vu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

body.nkp .nkp-menu-dich-vu__column {
    min-width: 0;
}

body.nkp .nkp-menu-dich-vu__category {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--fs-color-primary, #FD9300);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

body.nkp .nkp-menu-dich-vu__list {
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-menu-dich-vu__item {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
    text-decoration: none;
    padding: 8px 12px;
    margin: 0 -12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

body.nkp .nkp-menu-dich-vu__item:hover {
    background: #EEF4FF;
    padding-left: 16px;
}

/* Mobile */
@media (max-width: 849px) {
    body.nkp .nkp-menu-dich-vu__btn {
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
    }

    body.nkp .nkp-menu-dich-vu__btn svg {
        display: none !important;
    }

    body.nkp .nkp-menu-dich-vu__dropdown {
        position: fixed;
        top: 60px;
        right: -100%;
        bottom: 0;
        left: auto;
        width: 90%;
        min-width: auto;
        max-height: calc(100vh - 60px);
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 0;
        margin-top: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: right 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    body.nkp .nkp-menu-dich-vu.active .nkp-menu-dich-vu__dropdown {
        right: 0;
    }

    body.nkp .nkp-menu-dich-vu__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   Shared Slider Navigation & Pagination
   ======================================== */

/* Navigation Arrows - Shared */
body.nkp .nkp-slider-nav,
body.nkp .nkp-press-nav,
body.nkp .nkp-posts-nav,
body.nkp .nkp-khach-hang-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    color: var(--fs-color-secondary, #0426a0);
}

body.nkp .nkp-slider-nav:hover,
body.nkp .nkp-press-nav:hover,
body.nkp .nkp-posts-nav:hover,
body.nkp .nkp-khach-hang-nav:hover {
    background: var(--fs-color-secondary, #0426a0);
    color: #fff;
}

body.nkp .nkp-slider-nav--prev,
body.nkp .nkp-press-nav--prev,
body.nkp .nkp-posts-nav--prev,
body.nkp .nkp-khach-hang-nav--prev {
    left: 16px;
}

body.nkp .nkp-slider-nav--next,
body.nkp .nkp-press-nav--next,
body.nkp .nkp-posts-nav--next,
body.nkp .nkp-khach-hang-nav--next {
    right: 16px;
}

body.nkp .nkp-slider-nav.swiper-button-disabled,
body.nkp .nkp-press-nav.swiper-button-disabled,
body.nkp .nkp-posts-nav.swiper-button-disabled,
body.nkp .nkp-khach-hang-nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Pagination Dots - Shared */
body.nkp .nkp-slider-pagination,
body.nkp .nkp-press-pagination,
body.nkp .nkp-posts-pagination,
body.nkp .nkp-khach-hang-pagination {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

body.nkp .nkp-slider-pagination .swiper-pagination-bullet,
body.nkp .nkp-press-pagination .swiper-pagination-bullet,
body.nkp .nkp-posts-pagination .swiper-pagination-bullet,
body.nkp .nkp-khach-hang-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.2s ease;
}

body.nkp .nkp-slider-pagination .swiper-pagination-bullet-active,
body.nkp .nkp-press-pagination .swiper-pagination-bullet-active,
body.nkp .nkp-posts-pagination .swiper-pagination-bullet-active,
body.nkp .nkp-khach-hang-pagination .swiper-pagination-bullet-active {
    background: var(--fs-color-secondary, #0426a0);
    width: 24px;
    border-radius: 5px;
}

/* Hide nav on tablet/mobile */
@media (max-width: 849px) {

    body.nkp .nkp-slider-nav,
    body.nkp .nkp-press-nav,
    body.nkp .nkp-posts-nav,
    body.nkp .nkp-khach-hang-nav {
        display: none;
    }
}

/* ========================================
   Base Input Styles
   ======================================== */
body.nkp input[type="text"],
body.nkp input[type="email"],
body.nkp input[type="password"],
body.nkp input[type="tel"],
body.nkp input[type="number"],
body.nkp input[type="search"],
body.nkp input[type="url"],
body.nkp input[type="date"],
body.nkp input[type="datetime-local"],
body.nkp input[type="time"],
body.nkp input[type="month"],
body.nkp input[type="week"],
body.nkp textarea,
body.nkp select:not(.select2-hidden-accessible) {
    height: var(--nkp-input-height);
    padding: var(--nkp-input-padding);
    border: var(--nkp-input-border-width) solid var(--nkp-input-border-color);
    border-radius: var(--nkp-input-border-radius);
    background-color: var(--nkp-input-background);
    font-size: var(--nkp-input-font-size);
    font-weight: 500;
    color: var(--nkp-input-text-color);
    box-shadow: none;
    outline: none;
    transition: border-color 0.25s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body.nkp textarea {
    height: auto;
    min-height: var(--nkp-textarea-min-height);
    padding: 14px 16px;
    line-height: 1.6;
    resize: vertical;
}

/* Placeholder */
body.nkp input::placeholder,
body.nkp textarea::placeholder {
    color: var(--nkp-input-placeholder-color);
    font-weight: 400;
    opacity: 1;
}

/* Focus State */
body.nkp input[type="text"]:focus,
body.nkp input[type="email"]:focus,
body.nkp input[type="password"]:focus,
body.nkp input[type="tel"]:focus,
body.nkp input[type="number"]:focus,
body.nkp input[type="search"]:focus,
body.nkp input[type="url"]:focus,
body.nkp input[type="date"]:focus,
body.nkp input[type="datetime-local"]:focus,
body.nkp input[type="time"]:focus,
body.nkp input[type="month"]:focus,
body.nkp input[type="week"]:focus,
body.nkp textarea:focus,
body.nkp select:not(.select2-hidden-accessible):focus {
    border-color: var(--nkp-input-focus-border);
    box-shadow: none;
    background-color: var(--nkp-input-background);
    outline: none;
}

/* Hover State */
body.nkp input[type="text"]:hover:not(:focus):not(:disabled),
body.nkp input[type="email"]:hover:not(:focus):not(:disabled),
body.nkp input[type="password"]:hover:not(:focus):not(:disabled),
body.nkp input[type="tel"]:hover:not(:focus):not(:disabled),
body.nkp input[type="number"]:hover:not(:focus):not(:disabled),
body.nkp input[type="search"]:hover:not(:focus):not(:disabled),
body.nkp input[type="url"]:hover:not(:focus):not(:disabled),
body.nkp input[type="date"]:hover:not(:focus):not(:disabled),
body.nkp textarea:hover:not(:focus):not(:disabled),
body.nkp select:not(.select2-hidden-accessible):hover:not(:focus):not(:disabled) {
    border-color: #ccc;
}

/* Disabled State */
body.nkp input:disabled,
body.nkp textarea:disabled,
body.nkp select:disabled {
    background-color: var(--nkp-input-disabled-bg);
    border-color: var(--nkp-input-border-color);
    color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ========================================
   Validation States
   ======================================== */
body.nkp input.error,
body.nkp input.wpcf7-not-valid,
body.nkp input.invalid,
body.nkp textarea.error,
body.nkp textarea.wpcf7-not-valid,
body.nkp textarea.invalid,
body.nkp .woocommerce-invalid input,
body.nkp .woocommerce-invalid textarea,
body.nkp .woocommerce-invalid select {
    border-color: var(--nkp-input-error-color);
}

body.nkp input.valid,
body.nkp input.wpcf7-valid,
body.nkp textarea.valid,
body.nkp textarea.wpcf7-valid,
body.nkp .woocommerce-validated input,
body.nkp .woocommerce-validated textarea {
    border-color: var(--nkp-input-success-color);
}

/* ========================================
   Native Select
   ======================================== */
body.nkp select:not(.select2-hidden-accessible) {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232a2a2a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}

/* ========================================
   Checkbox & Radio
   ======================================== */
body.nkp input[type="checkbox"],
body.nkp input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 10px;
    border: var(--nkp-input-border-width) solid var(--nkp-input-border-color);
    border-radius: var(--nkp-input-border-radius);
    background-color: var(--nkp-input-background);
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.2s ease;
}

body.nkp input[type="radio"] {
    border-radius: 50%;
}

body.nkp input[type="checkbox"]:checked,
body.nkp input[type="radio"]:checked {
    background-color: var(--nkp-input-focus-border);
    border-color: var(--nkp-input-focus-border);
}

body.nkp input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body.nkp input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

body.nkp input[type="checkbox"]:focus,
body.nkp input[type="radio"]:focus {
    box-shadow: none;
    outline: none;
}

/* ========================================
   File Input
   ======================================== */
body.nkp input[type="file"] {
    height: auto;
    padding: 12px 16px;
    border: var(--nkp-input-border-width) dashed var(--nkp-input-border-color);
    background-color: #fafafa;
    cursor: pointer;
}

body.nkp input[type="file"]:hover {
    border-color: var(--nkp-input-focus-border);
    background-color: rgba(4, 38, 160, 0.02);
}

body.nkp input[type="file"]:focus {
    border-style: solid;
    border-color: var(--nkp-input-focus-border);
    box-shadow: none;
}

/* ========================================
   Form Labels & Spacing
   ======================================== */
body.nkp label,
body.nkp .form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--nkp-input-text-color);
}

body.nkp label .required,
body.nkp .form-row .required {
    color: var(--nkp-input-error-color);
    margin-left: 2px;
}

body.nkp .form-row,
body.nkp .woocommerce-form-row,
body.nkp p.form-row {
    margin-bottom: 20px;
}

/* ========================================
   WooCommerce Specific
   ======================================== */
body.nkp .woocommerce .password-input input[type="password"],
body.nkp .woocommerce .password-input input[type="text"] {
    padding-right: 48px;
}

body.nkp .woocommerce .quantity input.qty {
    width: 80px;
    height: var(--nkp-input-height);
    text-align: center;
    font-weight: 600;
}

body.nkp .woocommerce .coupon input.input-text {
    height: var(--nkp-input-height);
}

body.nkp .woocommerce-checkout .form-row input,
body.nkp .woocommerce-checkout .form-row textarea,
body.nkp .woocommerce-checkout .form-row select {
    width: 100%;
}

/* ========================================
   Contact Form 7 Specific
   ======================================== */
body.nkp .wpcf7-form input[type="text"],
body.nkp .wpcf7-form input[type="email"],
body.nkp .wpcf7-form input[type="tel"],
body.nkp .wpcf7-form input[type="url"],
body.nkp .wpcf7-form input[type="number"],
body.nkp .wpcf7-form textarea {
    width: 100%;
}

body.nkp .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

body.nkp .wpcf7-not-valid-tip {
    color: var(--nkp-input-error-color);
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

/* ========================================
   SELECT2 STYLES
   ======================================== */

/* Container */
body.nkp .select2-container--default .select2-selection--single {
    height: var(--nkp-select2-height);
    padding: 0 16px;
    border: var(--nkp-input-border-width) solid var(--nkp-input-border-color);
    border-radius: var(--nkp-select2-border-radius);
    background-color: #fff;
    box-shadow: none;
    transition: all 0.25s ease;
}

body.nkp .select2-container--default.select2-container--focus .select2-selection--single,
body.nkp .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--nkp-input-focus-border);
    box-shadow: none;
    outline: none;
}

/* Rendered Value */
body.nkp .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(var(--nkp-select2-height) - 4px);
    padding-left: 0;
    padding-right: 36px;
    font-size: var(--nkp-input-font-size);
    font-weight: 500;
    color: var(--nkp-input-text-color);
}

body.nkp .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--nkp-input-placeholder-color);
    font-weight: 400;
}

/* Arrow */
body.nkp .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(var(--nkp-select2-height) - 4px);
    width: 36px;
    right: 8px;
}

body.nkp .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--nkp-input-text-color) transparent transparent transparent;
    border-width: 6px 5px 0 5px;
    margin-left: -6px;
    margin-top: -3px;
    transition: transform 0.2s ease;
}

body.nkp .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: var(--nkp-input-focus-border) transparent transparent transparent;
    transform: rotate(180deg);
    margin-top: -6px;
}

/* Clear Button */
body.nkp .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin-right: 0;
    padding: 0;
}

body.nkp .select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: var(--nkp-input-error-color);
    background-color: rgba(233, 16, 16, 0.08);
}

body.nkp .select2-container--default .select2-search--dropdown .select2-search__field {
    height: 40px;
    padding: 0 12px;
    border: var(--nkp-input-border-width) solid var(--nkp-input-border-color);
    border-radius: var(--nkp-select2-border-radius);
    font-size: 14px;
    box-shadow: none;
    transition: all 0.2s ease;
}

body.nkp .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--nkp-input-focus-border);
    box-shadow: none;
}

body.nkp .select2-container--default .select2-results__option {
    padding: 12px 16px;
    font-size: var(--nkp-input-font-size);
    color: var(--nkp-input-text-color);
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

body.nkp .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--nkp-select2-option-hover);
    color: var(--nkp-input-text-color);
    border-left-color: var(--nkp-select2-option-selected);
}

body.nkp .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--nkp-select2-option-hover);
    color: var(--nkp-select2-option-selected);
    font-weight: 600;
    border-left-color: var(--nkp-select2-option-selected);
}

/* Messages */
body.nkp .select2-results__message {
    padding: 20px 16px;
    text-align: center;
    color: var(--nkp-input-placeholder-color);
    font-size: 14px;
}

body.nkp .select2-container--default .select2-results__option--loading {
    color: var(--nkp-input-placeholder-color);
}

body.nkp .select2-container--default .select2-results__option--loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: var(--nkp-input-border-width) solid var(--nkp-input-border-color);
    border-top-color: var(--nkp-input-focus-border);
    border-radius: 50%;
    animation: nkp-spin 0.6s linear infinite;
}

@keyframes nkp-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Disabled Select2 */
body.nkp .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f5f5f5;
    border-color: var(--nkp-input-border-color);
    cursor: not-allowed;
    opacity: 0.7;
}

body.nkp .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: #999;
}

/* Form Integration */
body.nkp .woocommerce-checkout .select2-container,
body.nkp .woocommerce-account .select2-container,
body.nkp .woocommerce form .select2-container {
    margin-bottom: 0;
}

body.nkp .wpcf7-form .select2-container {
    display: block;
}

body.nkp .flatsome-form .select2-container {
    width: 100%;
}

/* Select2 Dropdown Z-Index & Positioning Fix */
.select2-container--open .select2-dropdown {
    z-index: 9999 !important;
}

body.nkp .select2-dropdown {
    z-index: 9999 !important;
    border: 1px solid var(--nkp-input-border-color);
    border-radius: var(--nkp-select2-border-radius);
    box-shadow: var(--nkp-select2-dropdown-shadow);
    background-color: #fff;
}

/* Fix dropdown position - ensure it appears below the input */
body.nkp .select2-container--open .select2-dropdown--below {
    top: 100% !important;
    margin-top: 4px;
    border-top: 1px solid var(--nkp-input-border-color);
    border-top-left-radius: var(--nkp-select2-border-radius);
    border-top-right-radius: var(--nkp-select2-border-radius);
}

body.nkp .select2-container--open .select2-dropdown--above {
    bottom: 100% !important;
    top: auto !important;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--nkp-input-border-color);
    border-bottom-left-radius: var(--nkp-select2-border-radius);
    border-bottom-right-radius: var(--nkp-select2-border-radius);
}

/* Ensure container doesn't clip dropdown */
body.nkp .select2-container {
    position: relative;
    z-index: 1;
}

body.nkp .select2-container--open {
    z-index: 9999 !important;
}

/* Fix for parent containers that may clip dropdown */
body.nkp .form-row,
body.nkp .wpcf7-form-control-wrap,
body.nkp .woocommerce-input-wrapper,
body.nkp p.form-row {
    overflow: visible !important;
}

/* Ensure dropdown renders above other form elements */
body.nkp .select2-container--open+.select2-container--open .select2-dropdown,
body.nkp .select2-container--open .select2-dropdown--below,
body.nkp .select2-container--open .select2-dropdown--above {
    z-index: 9999 !important;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    :root {
        --nkp-input-height: 44px;
        --nkp-input-font-size: 16px;
        --nkp-select2-height: 44px;
    }

    body.nkp .form-row,
    body.nkp .woocommerce-form-row,
    body.nkp p.form-row {
        margin-bottom: 16px;
    }

    body.nkp input[type="checkbox"],
    body.nkp input[type="radio"] {
        width: 22px;
        height: 22px;
    }

    body.nkp .select2-container--default .select2-selection--single {
        padding: 0 12px;
    }

    body.nkp .select2-container--default .select2-results__option {
        padding: 14px 16px;
    }

    body.nkp .select2-dropdown {
        margin-top: 2px;
    }
}

/* Form Wrapper */
body.nkp .nkp-form .nkp-form-col-form .col-inner {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px !important;
    padding-bottom: 0 !important;
    border: 6px solid var(--primary-color);
    margin: 48px 0;
}

/* Submit button wrapper with arrow icon */
body.nkp .nkp-form .col:has(.nkp-submit-wrap) {
    display: flex;
    justify-content: flex-end;
}

body.nkp .nkp-form .nkp-submit-wrap {
    position: relative;
    display: inline-flex;
}

body.nkp .nkp-form input[type="submit"] {
    height: 48px;
    padding-right: 52px;
    margin: 0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fs-color-secondary);
    line-height: 1;
    color: #fff;
}

body.nkp .nkp-form .nkp-submit-wrap::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

body.nkp .nkp-form .wpcf7-spinner {
    display: none;
}

/* ========================================
   NKP Partner Slider (Marquee)
   ======================================== */
body.nkp .nkp-partner {
    overflow: hidden;
    width: 100%;
}

body.nkp .nkp-partner .swiper-wrapper {
    transition-timing-function: linear !important;
}

body.nkp .nkp-partner .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 calc(var(--nkp-partner-gap, 40px) / 2);
}

body.nkp .nkp-partner .swiper-slide img {
    height: var(--nkp-partner-height, 60px);
    width: auto;
    max-width: none;
    object-fit: contain;
    opacity: var(--nkp-partner-opacity, 1);
    transition: all 0.3s ease;
}

body.nkp .nkp-partner .swiper-slide img:hover {
    opacity: var(--nkp-partner-hover-opacity, 1);
}

/* Grayscale effect */
body.nkp .nkp-partner--grayscale .swiper-slide img {
    filter: grayscale(100%);
}

body.nkp .nkp-partner--grayscale .swiper-slide img:hover {
    filter: grayscale(0%);
}

/* Empty state */
body.nkp .nkp-partner-empty {
    text-align: center;
    padding: 20px;
    color: #999;
    font-style: italic;
}

/* ========================================
   NKP Title
   ======================================== */
body.nkp .nkp-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
}

/* Size variants */
body.nkp .nkp-title--small {
    font-size: 28px;
    line-height: 36px;
}

body.nkp .nkp-title--large {
    font-size: 56px;
    line-height: 64px;
}

@media (max-width: 768px) {
    body.nkp .nkp-title {
        font-size: 28px;
        line-height: 36px;
    }

    body.nkp .nkp-title--small {
        font-size: 20px;
        line-height: 28px;
    }

    body.nkp .nkp-title--large {
        font-size: 36px;
        line-height: 44px;
    }
}

/* ========================================
   NKP Press Slider
   ======================================== */
body.nkp .nkp-press {
    padding-bottom: 40px;
}

body.nkp .nkp-press .swiper-wrapper {
    align-items: stretch;
}

body.nkp .nkp-press .swiper-slide {
    height: auto;
}

/* Press Card */
body.nkp .nkp-press-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

body.nkp .nkp-press-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Card Image - 16:9 ratio (vertical/portrait) */
body.nkp .nkp-press-card__image {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* 16:9 vertical = 16/9 * 100 */
    background: #f5f5f5;
    overflow: hidden;
}

body.nkp .nkp-press-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-press-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

/* Card Footer */
body.nkp .nkp-press-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 12px;
}

/* Center link when no logo */
body.nkp .nkp-press--no-logo .nkp-press-card__footer {
    justify-content: center;
}

body.nkp .nkp-press-card__logo {
    max-height: 32px;
    max-width: 100px;
    width: auto;
    object-fit: contain;
}

body.nkp .nkp-press-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fs-color-secondary, #0426a0);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

body.nkp .nkp-press-card__link:hover {
    color: var(--fs-color-secondary-dark, #031d70);
}

body.nkp .nkp-press-card__link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

body.nkp .nkp-press-card__link:hover i {
    transform: translateX(3px);
}

/* Empty state */
body.nkp .nkp-press-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-press {
        overflow: hidden;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-press-card__footer {
        padding: 12px;
    }

    body.nkp .nkp-press-card__logo {
        max-height: 24px;
        max-width: 80px;
    }

    body.nkp .nkp-press-card__link {
        font-size: 13px;
    }
}

/* ========================================
   NKP Posts Slider
   ======================================== */
body.nkp .nkp-posts {
    position: relative;
}

body.nkp .nkp-posts--slider {
    padding-bottom: 40px;
    overflow: hidden;
}

body.nkp .nkp-posts--overflow-visible {
    overflow: visible;
}

body.nkp .nkp-posts--overflow-visible .nkp-posts-swiper {
    overflow: visible;
}

body.nkp .nkp-posts .swiper-wrapper {
    align-items: stretch;
}

body.nkp .nkp-posts .swiper-slide {
    height: auto;
}

/* Posts Grid */
body.nkp .nkp-posts-grid {
    display: grid;
    grid-template-columns: repeat(var(--nkp-posts-columns, 3), 1fr);
    gap: var(--nkp-posts-gap, 24px);
}

@media (max-width: 849px) {
    body.nkp .nkp-posts-grid {
        grid-template-columns: repeat(var(--nkp-posts-columns-tablet, 2), 1fr);
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-posts-grid {
        grid-template-columns: repeat(var(--nkp-posts-columns-mobile, 1), 1fr);
    }
}

/* Post Card */
body.nkp .nkp-posts-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

body.nkp .nkp-posts-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Card Image */
body.nkp .nkp-posts-card__image {
    position: relative;
    width: 100%;
    padding-top: var(--nkp-posts-image-ratio, 56.25%);
    background: #f5f5f5;
    overflow: hidden;
}

body.nkp .nkp-posts-card__image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

body.nkp .nkp-posts-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.nkp .nkp-posts-card:hover .nkp-posts-card__image img {
    transform: scale(1.05);
}

body.nkp .nkp-posts-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

/* Date Badge */
body.nkp .nkp-posts-card__date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--fs-color-primary, #fd9300);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

body.nkp .nkp-posts-card__date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

body.nkp .nkp-posts-card__date-badge .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Card Content */
body.nkp .nkp-posts-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Category */
body.nkp .nkp-posts-card__category {
    margin-bottom: 8px;
}

body.nkp .nkp-posts-card__category a {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(4, 38, 160, 0.08);
    color: var(--fs-color-secondary, #0426a0);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

body.nkp .nkp-posts-card__category a:hover {
    background: var(--fs-color-secondary, #0426a0);
    color: #fff;
}

/* Title */
body.nkp .nkp-posts-card__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.nkp .nkp-posts-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-posts-card__title a:hover {
    color: var(--fs-color-secondary, #0426a0);
}

/* Meta */
body.nkp .nkp-posts-card__meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

body.nkp .nkp-posts-card__meta i {
    margin-right: 6px;
}

/* Excerpt */
body.nkp .nkp-posts-card__excerpt {
    flex: 1;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Read More */
body.nkp .nkp-posts-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fs-color-secondary, #0426a0);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-posts-card__readmore:hover {
    color: var(--fs-color-secondary-dark, #031d70);
}

body.nkp .nkp-posts-card__readmore i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

body.nkp .nkp-posts-card__readmore:hover i {
    transform: translateX(4px);
}

/* Empty state */
body.nkp .nkp-posts-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

@media (max-width: 549px) {
    body.nkp .nkp-posts-card__content {
        padding: 16px;
    }

    body.nkp .nkp-posts-card__title {
        font-size: 16px;
    }

    body.nkp .nkp-posts-card__excerpt {
        font-size: 13px;
    }

    body.nkp .nkp-posts-card__date-badge {
        padding: 6px 10px;
    }

    body.nkp .nkp-posts-card__date-badge .day {
        font-size: 16px;
    }

    body.nkp .nkp-posts-card__date-badge .month {
        font-size: 10px;
    }
}

/* ========================================
   NKP Reels (Video Shorts Marquee Slider)
   ======================================== */
body.nkp .nkp-reels-wrapper {
    position: relative;
    overflow: hidden;
}

body.nkp .nkp-reels-swiper {
    overflow: visible;
}

body.nkp .nkp-reels-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

body.nkp .nkp-reels-swiper .swiper-slide {
    padding: 0 calc(var(--nkp-reels-gap, 16px) / 2);
}

/* Reel Card */
body.nkp .nkp-reels-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
}

body.nkp .nkp-reels-card__video {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

body.nkp .nkp-reels-card__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.nkp .nkp-reels-card:hover .nkp-reels-card__video img {
    transform: scale(1.05);
}

/* When video is playing, hide thumbnail */
body.nkp .nkp-reels-card.is-playing .nkp-reels-card__video img,
body.nkp .nkp-reels-card.is-playing .nkp-reels-card__play {
    opacity: 0;
    pointer-events: none;
}

/* Placeholder */
body.nkp .nkp-reels-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 48px;
}

/* Play Button */
body.nkp .nkp-reels-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fs-color-secondary, #0426a0);
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

body.nkp .nkp-reels-card__play i {
    margin-left: 4px;
}

body.nkp .nkp-reels-card:hover .nkp-reels-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* Iframe Container */
body.nkp .nkp-reels-card__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

body.nkp .nkp-reels-card.is-playing .nkp-reels-card__iframe {
    pointer-events: auto;
}

body.nkp .nkp-reels-card__iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Empty State */
body.nkp .nkp-reels-empty {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* UX Builder Preview */
.nkp-reels-wrapper .slider-wrapper {
    overflow: hidden;
}

.nkp-reels-wrapper .slider.row-slider .col {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-reels-card {
        padding: 12px;
        border-radius: 12px;
    }

    body.nkp .nkp-reels-card__video {
        border-radius: 12px;
    }

    body.nkp .nkp-reels-card__play {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-reels-card {
        padding: 10px;
        border-radius: 10px;
    }

    body.nkp .nkp-reels-card__video {
        border-radius: 10px;
    }

    body.nkp .nkp-reels-card__play {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ========================================
   NKP Khách hàng Swiper
   ======================================== */

/* Wrapper */
body.nkp .nkp-khach-hang-wrapper {
    position: relative;
    overflow: hidden;
}

body.nkp .nkp-khach-hang-wrapper.overflow-visible {
    overflow: visible;
}

/* Swiper */
body.nkp .nkp-khach-hang-swiper {
    overflow: visible;
}

body.nkp .nkp-khach-hang-swiper .swiper-wrapper {
    align-items: stretch;
}

/* Marquee mode - smooth continuous movement */
body.nkp .nkp-khach-hang-wrapper.is-marquee .nkp-khach-hang-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Slide - calculate width based on columns */
body.nkp .nkp-khach-hang-swiper .swiper-slide {
    width: calc((100% - (var(--nkp-kh-columns, 4) - 1) * var(--nkp-kh-gap, 16px)) / var(--nkp-kh-columns, 4));
    height: auto;
    transition: width 0.4s ease;
}

@media (max-width: 849px) {
    body.nkp .nkp-khach-hang-swiper .swiper-slide {
        width: calc((100% - (var(--nkp-kh-columns-tablet, 3) - 1) * var(--nkp-kh-gap, 16px)) / var(--nkp-kh-columns-tablet, 3));
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-khach-hang-swiper .swiper-slide {
        width: calc((100% - (var(--nkp-kh-columns-mobile, 2) - 1) * var(--nkp-kh-gap, 16px)) / var(--nkp-kh-columns-mobile, 2));
    }
}

/* Expanded slide - 2x width on both PC and mobile */
body.nkp .nkp-khach-hang-swiper .swiper-slide.is-expanded {
    width: calc(((100% - (var(--nkp-kh-columns, 4) - 1) * var(--nkp-kh-gap, 16px)) / var(--nkp-kh-columns, 4)) * 2);
    z-index: 10;
}

@media (max-width: 849px) {
    body.nkp .nkp-khach-hang-swiper .swiper-slide.is-expanded {
        width: calc(((100% - (var(--nkp-kh-columns-tablet, 3) - 1) * var(--nkp-kh-gap, 16px)) / var(--nkp-kh-columns-tablet, 3)) * 2);
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-khach-hang-swiper .swiper-slide.is-expanded {
        width: calc(((100% - (var(--nkp-kh-columns-mobile, 2) - 1) * var(--nkp-kh-gap, 16px)) / var(--nkp-kh-columns-mobile, 2)) * 2);
    }
}

/* Marquee mode */
body.nkp .nkp-khach-hang-wrapper.is-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Card Base - Fixed height, only width changes */
body.nkp .nkp-kh-card {
    position: relative;
    cursor: pointer;
    border-radius: 24px;
    overflow: hidden;
    background: #fff url('../images/bg-card.jpg') right top / cover no-repeat;
    border: 4px solid #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: calc(var(--nkp-kh-card-height, 400px) + 60px);
}

@media (max-width: 849px) {
    body.nkp .nkp-kh-card {
        height: calc(var(--nkp-kh-card-height, 400px) + 50px);
    }
}

body.nkp .nkp-kh-card:hover {
    border-color: var(--fs-color-primary, #fd9300);
}

/* Expanded Card */
body.nkp .nkp-kh-card.is-expanded {
    z-index: 100;
    border-color: var(--fs-color-primary, #fd9300);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Hide thumbnail when expanded */
body.nkp .nkp-kh-card.is-expanded .nkp-kh-card__thumb {
    opacity: 0;
    pointer-events: none;
}

/* Thumbnail - fills card */
body.nkp .nkp-kh-card__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    transition: opacity 0.3s ease;
}

body.nkp .nkp-kh-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.nkp .nkp-kh-card:hover .nkp-kh-card__thumb img {
    transform: scale(1.05);
}

body.nkp .nkp-kh-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
    font-size: 48px;
}

/* Expanded Content - fills card when expanded */
body.nkp .nkp-kh-card__expand {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    padding: 16px;
    flex-direction: column;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.nkp .nkp-kh-card.is-expanded .nkp-kh-card__expand {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Title */
body.nkp .nkp-kh-card__title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    flex-shrink: 0;
}

/* Before/After Image */
body.nkp .nkp-kh-card__before-after {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
}

body.nkp .nkp-kh-card__before-after img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Info - Grid 2 columns */
body.nkp .nkp-kh-card__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
    border-left: 8px solid var(--fs-color-secondary, #0426a0);
    border-radius: 16px;
    padding: 12px 12px 12px 16px;
    background-color: #FFFFFF;
    margin-top: auto;
}

body.nkp .nkp-kh-card__info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.nkp .nkp-kh-card__label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--fs-color-primary, #fd9300);
}

body.nkp .nkp-kh-card__value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* UX Builder Preview */
body.nkp .nkp-khach-hang-wrapper .slider-wrapper {
    overflow: hidden;
}

body.nkp .nkp-khach-hang-wrapper .slider.row-slider .col {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-kh-card__expand {
        padding: 14px;
    }

    body.nkp .nkp-kh-card__title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    body.nkp .nkp-kh-card__before-after {
        margin-bottom: 10px;
        border-radius: 10px;
    }

    body.nkp .nkp-kh-card__info {
        gap: 5px 10px;
        padding: 10px 10px 10px 14px;
        border-radius: 14px;
    }

    body.nkp .nkp-kh-card__label {
        font-size: 14px;
    }

    body.nkp .nkp-kh-card__value {
        font-size: 14px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-kh-card__expand {
        padding: 12px;
    }

    body.nkp .nkp-kh-card__title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    body.nkp .nkp-kh-card__before-after {
        margin-bottom: 8px;
        border-radius: 8px;
    }

    body.nkp .nkp-kh-card__info {
        gap: 4px 8px;
        padding: 8px 8px 8px 12px;
        border-radius: 12px;
    }

    body.nkp .nkp-kh-card__label {
        font-size: 10px;
    }

    body.nkp .nkp-kh-card__value {
        font-size: 12px;
    }
}

/* ========================================
   NKP Tab Nav Simple Override
   ======================================== */

/* Tab Nav Container */
body.nkp .nav.nav-simple {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 8px;
    flex-wrap: nowrap;
    border: none;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body.nkp .nav.nav-simple::-webkit-scrollbar {
    display: none;
}

/* When scrollable - align left */
body.nkp .nav.nav-simple.is-scrollable {
    justify-content: flex-start;
}

/* Tab Items - Base */
body.nkp .nav.nav-simple>li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    gap: 8px;
    border-radius: 8px;
    margin: 0;
    flex: none;
    flex-shrink: 0;
    min-height: 48px;
    white-space: nowrap;
}

body.nkp .nav.nav-simple>li>a {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1B1B1B;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    text-transform: none;
    letter-spacing: 0;
}

/* Override nav-uppercase */
body.nkp .nav.nav-simple.nav-uppercase>li>a {
    text-transform: none;
}

body.nkp .nav.nav-simple>li>a:hover {
    color: #1B1B1B;
    background: none;
}

/* Active Tab - Gradient background */
body.nkp .nav.nav-simple>li.active {
    background: linear-gradient(85.49deg, #F7F7F7 -41.52%, #FD9300 148.2%);
}

body.nkp .nav.nav-simple>li.active>a {
    color: #1B1B1B;
}

/* Remove default Flatsome underline/border */
body.nkp .nav.nav-simple>li>a::before,
body.nkp .nav.nav-simple>li>a::after {
    display: none;
}

body.nkp .nav.nav-simple::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    body.nkp .nav.nav-simple {
        gap: 6px;
    }

    body.nkp .nav.nav-simple>li {
        padding: 4px 10px;
    }

    body.nkp .nav.nav-simple>li>a {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ========================================
   NKP Ảnh cơ sở (Facility Images Grid)
   ======================================== */
body.nkp .nkp-anh-co-so {
    display: flex;
    gap: var(--nkp-acs-gap, 16px);
    width: 100%;
}

/* Left column - 50% with 1 large image */
body.nkp .nkp-acs-left {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Right column - 50% with 2x2 grid */
body.nkp .nkp-acs-right {
    flex: 0 0 50%;
    max-width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--nkp-acs-gap, 16px);
}

/* Image item - square with rounded corners */
body.nkp .nkp-acs-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 aspect ratio */
    overflow: hidden;
    border-radius: var(--nkp-acs-radius, 16px);
    background: #f5f5f5;
}

body.nkp .nkp-acs-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.nkp .nkp-acs-item:hover img {
    transform: scale(1.05);
}

/* Empty state */
body.nkp .nkp-acs-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

/* Responsive - Stack on mobile */
@media (max-width: 549px) {
    body.nkp .nkp-anh-co-so {
        flex-direction: column;
    }

    body.nkp .nkp-acs-left,
    body.nkp .nkp-acs-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ========================================
   NKP Video (3D Coverflow Slider)
   ======================================== */

/* Wrapper */
body.nkp .nkp-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    perspective: 1200px;
}

/* Swiper container */
body.nkp .nkp-video-swiper {
    overflow: hidden;
    padding: 40px 0;
}

body.nkp .nkp-video-swiper .swiper-wrapper {
    align-items: center;
    transform-style: preserve-3d;
}

/* Slide - 3D Effect */
body.nkp .nkp-video-swiper .swiper-slide {
    width: 60%;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease, z-index 0s;
    transform-style: preserve-3d;
    opacity: var(--nkp-video-side-opacity, 0.5);
    filter: brightness(0.7);
}

/* Active slide - center, on top */
body.nkp .nkp-video-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
    filter: brightness(1);
}

/* Previous slide - behind and partially under center */
body.nkp .nkp-video-swiper .swiper-slide-prev {
    transform: translateX(25%) rotateY(15deg) scale(var(--nkp-video-side-scale, 0.85));
    z-index: 5;
}

/* Next slide - behind and partially under center */
body.nkp .nkp-video-swiper .swiper-slide-next {
    transform: translateX(-25%) rotateY(-15deg) scale(var(--nkp-video-side-scale, 0.85));
    z-index: 5;
}

/* Other slides - hidden */
body.nkp .nkp-video-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    transform: scale(0.7);
    opacity: 0;
    pointer-events: none;
}

/* Video Card */
body.nkp .nkp-video-card {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

body.nkp .nkp-video-card__video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

body.nkp .nkp-video-card__video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

body.nkp .nkp-video-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.nkp .nkp-video-card__placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

/* Play button */
body.nkp .nkp-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

body.nkp .nkp-video-card__play i {
    font-size: 28px;
    color: rgba(0, 0, 0, 0.3);
    margin-left: 4px;
    transition: color 0.3s ease;
}

body.nkp .nkp-video-card__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--nkp-primary, #e91010);
}

body.nkp .nkp-video-card__play:hover i {
    color: #fff;
}

/* Hide play button on non-active slides */
body.nkp .nkp-video-swiper .swiper-slide:not(.swiper-slide-active) .nkp-video-card__play {
    opacity: 0;
    pointer-events: none;
}

/* Iframe container */
body.nkp .nkp-video-card__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.nkp .nkp-video-card__iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

body.nkp .nkp-video-card.is-playing .nkp-video-card__iframe {
    opacity: 1;
    pointer-events: auto;
}

body.nkp .nkp-video-card.is-playing .nkp-video-card__play,
body.nkp .nkp-video-card.is-playing img {
    opacity: 0;
    pointer-events: none;
}

/* Navigation arrows */
body.nkp .nkp-video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

body.nkp .nkp-video-nav:hover {
    background: var(--nkp-primary, #e91010);
    transform: translateY(-50%) scale(1.1);
}

body.nkp .nkp-video-nav i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

body.nkp .nkp-video-nav:hover i {
    color: #fff;
}

body.nkp .nkp-video-nav--prev {
    left: 20px;
}

body.nkp .nkp-video-nav--next {
    right: 20px;
}

body.nkp .nkp-video-nav.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Pagination dots */
body.nkp .nkp-video-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

body.nkp .nkp-video-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

body.nkp .nkp-video-pagination .swiper-pagination-bullet-active {
    background: var(--nkp-primary, #e91010);
    transform: scale(1.2);
}

/* Empty state */
body.nkp .nkp-video-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-video-wrapper {
        perspective: 800px;
    }

    body.nkp .nkp-video-swiper .swiper-slide {
        width: 65%;
    }

    body.nkp .nkp-video-swiper .swiper-slide-prev {
        transform: translateX(20%) rotateY(12deg) scale(0.85);
    }

    body.nkp .nkp-video-swiper .swiper-slide-next {
        transform: translateX(-20%) rotateY(-12deg) scale(0.85);
    }

    body.nkp .nkp-video-card__play {
        width: 60px;
        height: 60px;
    }

    body.nkp .nkp-video-card__play i {
        font-size: 22px;
    }

    body.nkp .nkp-video-nav {
        width: 40px;
        height: 40px;
    }

    body.nkp .nkp-video-nav i {
        font-size: 14px;
    }

    body.nkp .nkp-video-nav--prev {
        left: 10px;
    }

    body.nkp .nkp-video-nav--next {
        right: 10px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-video-wrapper {
        perspective: 600px;
    }

    body.nkp .nkp-video-swiper {
        padding: 30px 0;
    }

    body.nkp .nkp-video-swiper .swiper-slide {
        width: 80%;
    }

    body.nkp .nkp-video-swiper .swiper-slide-active {
        transform: scale(1);
    }

    body.nkp .nkp-video-swiper .swiper-slide-prev {
        transform: translateX(15%) rotateY(10deg) scale(0.9);
    }

    body.nkp .nkp-video-swiper .swiper-slide-next {
        transform: translateX(-15%) rotateY(-10deg) scale(0.9);
    }

    body.nkp .nkp-video-card__play {
        width: 50px;
        height: 50px;
    }

    body.nkp .nkp-video-card__play i {
        font-size: 18px;
        margin-left: 3px;
    }

    body.nkp .nkp-video-nav {
        display: none;
    }
}

/* ========================================
   NKP Bác sĩ Slider
   ======================================== */

/* Wrapper */
body.nkp .nkp-bac-si-wrapper {
    position: relative;
    overflow: hidden;
}

/* Swiper */
body.nkp .nkp-bac-si-swiper {
    overflow: visible;
}

body.nkp .nkp-bac-si-swiper .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: linear !important;
}

/* Slide - calculate width based on columns */
body.nkp .nkp-bac-si-swiper .swiper-slide {
    width: calc((100% - (var(--nkp-bs-columns, 5) - 1) * var(--nkp-bs-gap, 16px)) / var(--nkp-bs-columns, 5));
    height: auto;
    transition: width 0.4s ease;
}

@media (max-width: 849px) {
    body.nkp .nkp-bac-si-swiper .swiper-slide {
        width: calc((100% - (var(--nkp-bs-columns-mobile, 2.5) - 1) * var(--nkp-bs-gap, 16px)) / var(--nkp-bs-columns-mobile, 2.5));
    }
}

/* Expanded slide - add extra width for content */
body.nkp .nkp-bac-si-swiper .swiper-slide.is-expanded {
    width: calc(((100% - (var(--nkp-bs-columns, 5) - 1) * var(--nkp-bs-gap, 16px)) / var(--nkp-bs-columns, 5)) + var(--nkp-bs-expand-width, 280px));
    z-index: 10;
}

@media (max-width: 849px) {
    body.nkp .nkp-bac-si-swiper .swiper-slide.is-expanded {
        width: calc(((100% - (var(--nkp-bs-columns-mobile, 2.5) - 1) * var(--nkp-bs-gap, 16px)) / var(--nkp-bs-columns-mobile, 2.5)) + var(--nkp-bs-expand-width, 220px));
    }
}

/* Card Base */
body.nkp .nkp-bs-card {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #fff;
    padding: 16px;
    transition: border-color 0.3s ease, width 0.4s ease;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card {
        padding: 14px;
        gap: 14px;
    }
}

body.nkp .nkp-bs-card:hover {
    border-color: var(--nkp-primary, #e91010);
}

/* Expanded Card */
body.nkp .nkp-bs-card.is-expanded {
    z-index: 100;
    border-color: var(--nkp-primary, #e91010);
}

/* Thumbnail - fixed width from JS variable, maintains 3:4 aspect ratio */
body.nkp .nkp-bs-card__thumb {
    position: relative;
    width: var(--nkp-bs-thumb-width, calc(100% - 0px));
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

body.nkp .nkp-bs-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.nkp .nkp-bs-card:hover .nkp-bs-card__thumb img {
    transform: scale(1.05);
}

body.nkp .nkp-bs-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
    font-size: 48px;
}

/* Name - absolute inside thumb */
body.nkp .nkp-bs-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 16px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    z-index: 5;
}

body.nkp .nkp-bs-card__name span {
    font-size: 14px;
    font-weight: 600;
    color: var(--fs-color-base, #2a2a2a);
    line-height: 1.3;
    display: block;
}

/* Expand Content - hidden by default, shows when expanded */
body.nkp .nkp-bs-card__expand {
    width: 0;
    overflow: hidden;
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.4s ease, width 0.4s ease;
}

body.nkp .nkp-bs-card.is-expanded .nkp-bs-card__expand {
    width: var(--nkp-bs-expand-content-width, 248px);
    opacity: 1;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card.is-expanded .nkp-bs-card__expand {
        width: var(--nkp-bs-expand-content-width, 192px);
    }
}

body.nkp .nkp-bs-card__expand-inner {
    width: var(--nkp-bs-expand-content-width, 248px);
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card__expand-inner {
        width: var(--nkp-bs-expand-content-width, 192px);
    }
}

/* Section */
body.nkp .nkp-bs-card__section {
    margin-bottom: 16px;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card__section {
        margin-bottom: 14px;
    }
}

body.nkp .nkp-bs-card__section:last-child {
    margin-bottom: 0;
}

body.nkp .nkp-bs-card__section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fs-color-secondary, #0426a0);
    margin: 0 0 8px;
}

/* List with check icons */
body.nkp .nkp-bs-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.nkp .nkp-bs-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--fs-color-base, #2a2a2a);
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card__list li {
        font-size: 12px;
    }
}

body.nkp .nkp-bs-card__list li:last-child {
    margin-bottom: 0;
}

body.nkp .nkp-bs-card__check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--fs-color-secondary, #0426a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card__check {
        width: 16px;
        height: 16px;
    }
}

body.nkp .nkp-bs-card__check i {
    font-size: 9px;
    color: #fff;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-card__check i {
        font-size: 8px;
    }
}

/* Empty */
body.nkp .nkp-bs-empty {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* ========================================
   NKP Bác sĩ Responsive
   ======================================== */

@media (max-width: 849px) {
    body.nkp .nkp-bs-card__name span {
        font-size: 12px;
    }
}

/* ========================================
   NKP Bác sĩ chính
   ======================================== */

body.nkp .nkp-bac-si-chinh {
    width: 100%;
}

body.nkp .nkp-bsc__row {
    display: flex;
    align-items: stretch;
    gap: 20px;
    max-height: 400px;
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__row {
        flex-direction: column;
        max-height: none;
    }
}

body.nkp .nkp-bsc__col-left {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    min-height: 0;
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__col-left {
        width: 100%;
    }
}

body.nkp .nkp-bsc__col-right {
    flex: 1;
    display: flex;
    min-height: 0;
    min-width: 0;
}

/* Left Column - Image */
body.nkp .nkp-bsc__left {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-bsc__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
    flex: 1;
}

body.nkp .nkp-bsc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.nkp .nkp-bsc__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-bsc__placeholder i {
    font-size: 80px;
    color: #ccc;
}

/* Name overlay on image */
body.nkp .nkp-bsc__name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, #F7F7F7 110.44%);
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-bsc__name-overlay span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

/* Right Column - Details */
body.nkp .nkp-bsc__right {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 100%;
}

body.nkp .nkp-bsc__right-inner {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__right {
        margin-top: 16px;
    }

    body.nkp .nkp-bsc__right-inner {
        padding: 16px;
    }
}

/* Doctor Title */
body.nkp .nkp-bsc__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fs-color-primary, #c9a227);
    margin: 0 0 24px;
    letter-spacing: 0.02em;
    text-align: center;
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Certificate Images - Horizontal List */
body.nkp .nkp-bsc__certificates {
    margin-bottom: 24px;
}

body.nkp .nkp-bsc__cert-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--fs-color-primary, #c9a227) #f0f0f0;
}

body.nkp .nkp-bsc__cert-list::-webkit-scrollbar {
    height: 6px;
}

body.nkp .nkp-bsc__cert-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

body.nkp .nkp-bsc__cert-list::-webkit-scrollbar-thumb {
    background: var(--fs-color-primary, #c9a227);
    border-radius: 3px;
}

body.nkp .nkp-bsc__cert-item {
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: block;
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__cert-item {
        width: 70px;
    }
}

body.nkp .nkp-bsc__cert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sections */
body.nkp .nkp-bsc__section {
    margin-bottom: 20px;
}

body.nkp .nkp-bsc__section:last-child {
    margin-bottom: 0;
}

/* Section Header with Icon */
body.nkp .nkp-bsc__section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

body.nkp .nkp-bsc__section-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #FFF9EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-bsc__section-icon i {
    font-size: 24px;
    color: var(--fs-color-primary, #c9a227);
}

body.nkp .nkp-bsc__section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000;
    margin: 0;
}

/* Excerpt */
body.nkp .nkp-bsc__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fs-color-base, #2a2a2a);
    margin: 0;
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__excerpt {
        font-size: 14px;
    }
}

/* List with check icons */
body.nkp .nkp-bsc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.nkp .nkp-bsc__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--fs-color-base, #2a2a2a);
}

@media (max-width: 849px) {
    body.nkp .nkp-bsc__list li {
        font-size: 14px;
    }
}

body.nkp .nkp-bsc__list li:last-child {
    margin-bottom: 0;
}

body.nkp .nkp-bsc__check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--fs-color-secondary, #0426a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

body.nkp .nkp-bsc__check i {
    font-size: 10px;
    color: #fff;
}

/* Empty state */
body.nkp .nkp-bsc-empty {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

/* ========================================
   NKP Sec Why - Lý do chọn
   ======================================== */

/* Section Background */
body.nkp .nkp-sec-why {
    background-image: url('../images/bg-why-pc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 849px) {
    body.nkp .nkp-sec-why {
        background-image: url('../images/bg-why-mobile.jpg');
    }
}

/* Title */
body.nkp .nkp-sec-why .nkp-title {
    text-align: center;
    margin-bottom: 32px;
}

/* Cards List */
body.nkp .nkp-sec-why-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

body.nkp .nkp-sec-why-list>.col {
    display: flex;
}

body.nkp .nkp-sec-why-list>.col>.col-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.nkp .nkp-sec-why-list .text h4 {
    margin-bottom: 12px;
}

body.nkp .nkp-sec-why-list .img {
    margin-bottom: 16px;
}

body.nkp .nkp-sec-why-list .img .img-inner {
    border-radius: 12px;
    overflow: hidden;
}

/* Mobile Slider Styles */
@media (max-width: 849px) {

    /* Allow overflow on parent containers */
    body.nkp .nkp-sec-why {
        overflow: visible;
    }

    body.nkp .nkp-sec-why .section-content {
        overflow: visible;
    }

    body.nkp .nkp-sec-why-list.swiper {
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Override Flatsome row rule for swiper-wrapper */
    body.nkp .nkp-sec-why-list.row>.swiper-wrapper {
        width: auto !important;
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    /* Override Flatsome column widths - must override small-12, flex-basis */
    body.nkp .nkp-sec-why-list.swiper .col.small-12.swiper-slide,
    body.nkp .nkp-sec-why-list.swiper .col.swiper-slide,
    body.nkp .nkp-sec-why-list .swiper-wrapper>.col.small-12 {
        flex: 0 0 75vw !important;
        flex-basis: 75vw !important;
        max-width: 75vw !important;
        width: 75vw !important;
        margin: 0 !important;
    }

    body.nkp .nkp-sec-why-list .col>.col-inner {
        width: 100%;
    }
}

/* ========================================
   NKP Danh mục dịch vụ
======================================== */
.nkp-danh-muc-dich-vu {
    width: 100%;
}

.nkp-danh-muc-dich-vu .swiper {
    overflow: visible;
}

.nkp-dmdv__card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.nkp-dmdv__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nkp-dmdv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nkp-dmdv__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}

.nkp-dmdv__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 142, 35, 0.85) 63.86%);
    pointer-events: none;
}

.nkp-dmdv__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.nkp-dmdv__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Services list - default: single line, no wrap */
.nkp-dmdv__services {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: auto;
    overflow: hidden;
    max-width: 100%;
    transition: all 0.3s ease;
}

.nkp-dmdv__service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    background: var(--secondary-color, #333);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nkp-dmdv__service-btn:hover {
    color: var(--primary-color, #ff8e23);
    background: linear-gradient(90deg, var(--secondary-color, #333) 0%, color-mix(in srgb, var(--secondary-color, #333) 65%, transparent) 100%);
}

/* Hover state - vertical layout, full width */
.nkp-dmdv__card:hover .nkp-dmdv__services {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    overflow: visible;
    width: 100%;
}

.nkp-dmdv__card:hover .nkp-dmdv__service-btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
    padding: 0 20px;
}

/* PC styles */
@media (min-width: 768px) {
    .nkp-dmdv__title {
        font-size: 32px;
    }

    .nkp-dmdv__content {
        padding: 32px;
    }
}

/* ========================================
   Global Single Detail Styles (nkp-sd)
   Shared styles for single-dich_vu and single-bang_gia
   ======================================== */

/* Both pages use nkp-sd__* classes for shared elements */

/* Wrapper for both pages */
body.nkp .nkp-single-detail {
    padding-bottom: 60px;
    background-image: url('../images/bg-card.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

/* Breadcrumb - Global */
body.nkp .nkp-sd__breadcrumb {
    padding: 12px 0;
}

body.nkp .nkp-sd__breadcrumb .woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    color: #1B1B1B;
}

body.nkp .nkp-sd__breadcrumb .woocommerce-breadcrumb a {
    color: #1B1B1B;
    text-decoration: none;
}

body.nkp .nkp-sd__breadcrumb .woocommerce-breadcrumb a:hover {
    color: var(--fs-color-primary, #c9a227);
}

body.nkp .nkp-sd__breadcrumb .divider {
    font-size: 10px;
    color: #1B1B1B;
}

body.nkp .nkp-sd__breadcrumb .woocommerce-breadcrumb strong {
    font-weight: 700;
}

/* Layout */
body.nkp .nkp-single-detail .row-large {
    margin-left: -15px;
    margin-right: -15px;
}

body.nkp .nkp-single-detail .row-large>.col {
    padding-left: 15px;
    padding-right: 15px;
}

/* Main Content */
body.nkp .nkp-sd__content {
    min-width: 0;
}

/* Title */
body.nkp .nkp-sd__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--fs-color-secondary, #0426a0);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    body.nkp .nkp-sd__title {
        font-size: 32px;
    }
}

/* Origin badge (for bang gia - above title) */
body.nkp .nkp-sd__origin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 20px;
    margin-bottom: 16px;
    background: linear-gradient(94.86deg, #F7F7F7 5.1%, #F8AD11 151.85%);
    border-radius: 96px;
}

body.nkp .nkp-sd__origin-label {
    font-size: 16px;
    font-weight: 500;
    color: #0426A0;
}

body.nkp .nkp-sd__origin-value {
    font-size: 16px;
    font-weight: 700;
    color: #0426A0;
}

/* Navigation Tabs */
body.nkp .nkp-sd__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eee;
}

/* Fixed Navigation */
body.nkp .nkp-sd__nav--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: none;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

body.nkp .nkp-sd__nav--fixed.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

body.nkp .nkp-sd__nav--fixed .container {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

body.nkp .nkp-sd__nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #fff;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

body.nkp .nkp-sd__nav-item:hover {
    background: #f5f5f5;
    color: var(--fs-color-primary, #c9a227);
}

body.nkp .nkp-sd__nav-item.active {
    background: linear-gradient(85.49deg, #F7F7F7 -41.52%, #FD9300 148.2%);
    color: #000;
}

/* Media Slider */
body.nkp .nkp-sd__media {
    margin-bottom: 32px;
}

body.nkp .nkp-sd__slider-main {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

body.nkp .nkp-sd__slide-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    border-radius: 12px;
}

body.nkp .nkp-sd__slide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnails */
body.nkp .nkp-sd__slider-thumbs .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

body.nkp .nkp-sd__slider-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

body.nkp .nkp-sd__thumb {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

body.nkp .nkp-sd__slider-thumbs .swiper-slide-thumb-active .nkp-sd__thumb {
    border-color: var(--fs-color-primary, #c9a227);
}

body.nkp .nkp-sd__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* No Media Placeholder */
body.nkp .nkp-sd__no-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #f5f5f5;
    border-radius: 12px;
    color: #999;
    gap: 12px;
}

body.nkp .nkp-sd__no-media i {
    font-size: 48px;
}

/* Video */
body.nkp .nkp-sd__video {
    margin-top: 24px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

body.nkp .nkp-sd__video iframe,
body.nkp .nkp-sd__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sections */
body.nkp .nkp-sd__section {
    padding: 32px;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.nkp .nkp-sd__section:last-child {
    margin-bottom: 0;
}

body.nkp .nkp-sd__section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0 0 20px;
}

body.nkp .nkp-sd__section-title .nkp-sd__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

body.nkp .nkp-sd__section-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

body.nkp .nkp-sd__section-content p {
    margin-bottom: 16px;
}

body.nkp .nkp-sd__section-content ul,
body.nkp .nkp-sd__section-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

body.nkp .nkp-sd__section-content li {
    margin-bottom: 8px;
}

/* Advantages */
body.nkp .nkp-sd__advantages ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.nkp .nkp-sd__advantages li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

body.nkp .nkp-sd__advantages li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--fs-color-success, #00a64c);
    font-size: 14px;
}

/* Process Timeline */
body.nkp .nkp-sd__process-timeline {
    position: relative;
    padding: 40px 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.nkp .nkp-sd__process-line {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fs-color-primary, #c9a227) 0%, var(--fs-color-secondary, #0426a0) 100%);
    z-index: 1;
}

body.nkp .nkp-sd__process-steps {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
    min-width: max-content;
    padding: 0 20px;
}

body.nkp .nkp-sd__process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    flex-shrink: 0;
    text-align: center;
}

body.nkp .nkp-sd__process-visual {
    display: none;
}

body.nkp .nkp-sd__process-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 3px solid var(--fs-color-primary, #c9a227);
    margin-bottom: 16px;
    flex-shrink: 0;
}

body.nkp .nkp-sd__process-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-sd__process-circle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #eee 100%);
    color: var(--fs-color-primary, #c9a227);
    font-size: 24px;
}

body.nkp .nkp-sd__process-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

body.nkp .nkp-sd__process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: var(--fs-color-secondary, #0426a0);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

body.nkp .nkp-sd__process-text {
    font-size: 14px;
    line-height: 1.4;
    color: #444;
}

/* Related Service */
body.nkp .nkp-sd__related-service {
    margin-top: 16px;
}

body.nkp .nkp-sd__related-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.nkp .nkp-sd__related-link:hover {
    border-color: var(--fs-color-primary, #c9a227);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.nkp .nkp-sd__related-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--fs-color-secondary, #0426a0);
}

body.nkp .nkp-sd__related-link i {
    color: var(--fs-color-primary, #c9a227);
    font-size: 16px;
    transition: transform 0.3s ease;
}

body.nkp .nkp-sd__related-link:hover i {
    transform: translateX(4px);
}

/* Pricing List in Single Detail */
body.nkp .nkp-sd__pricing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.nkp .nkp-sd__pricing-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.nkp .nkp-sd__pricing-item:hover {
    border-color: var(--fs-color-primary, #FD9300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.nkp .nkp-sd__pricing-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
}

body.nkp .nkp-sd__pricing-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-sd__pricing-item i {
    color: var(--fs-color-primary, #FD9300);
    font-size: 14px;
    transition: transform 0.3s ease;
}

body.nkp .nkp-sd__pricing-item:hover i {
    transform: translateX(4px);
}

/* Sidebar */
body.nkp .nkp-sd__sidebar {
    padding-left: 0;
}

/* Price Card - Sidebar */
body.nkp .nkp-sd__price-card {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 8px;
    width: 100%;
    background: linear-gradient(226.71deg, #F7F7F7 -1.71%, #FFFFFF 99.91%);
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    margin-bottom: 16px;
}

body.nkp .nkp-sd__price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(94.86deg, #F7F7F7 5.1%, #F8AD11 151.85%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

body.nkp .nkp-sd__price-card-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    background: linear-gradient(94.86deg, #F7F7F7 5.1%, #F8AD11 151.85%);
    border-radius: 96px;
}

body.nkp .nkp-sd__price-card-badge span {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #0426A0;
}

body.nkp .nkp-sd__price-card-amount {
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0426A0;
    padding: 4px 0;
}

/* CTA Widget */
body.nkp .nkp-sd__cta-widget {
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-sd__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    padding: 0 24px;
    background: var(--fs-color-secondary, #0426a0);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.nkp .nkp-sd__cta-btn:hover {
    opacity: 0.9;
}

body.nkp .nkp-sd__cta-btn+.nkp-sd__cta-btn {
    margin-top: 12px;
}

/* Outline variant - Primary color (for Đặt lịch button) */
body.nkp .nkp-sd__cta-btn--outline {
    background: transparent;
    border: 2px solid var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-sd__cta-btn--outline .nkp-sd__cta-btn-title,
body.nkp .nkp-sd__cta-btn--outline .nkp-sd__cta-btn-subtitle {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-sd__cta-btn--outline i {
    color: var(--fs-color-primary, #FD9300);
    font-size: 24px;
}

body.nkp .nkp-sd__cta-btn--outline:hover {
    background: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-sd__cta-btn--outline:hover .nkp-sd__cta-btn-title,
body.nkp .nkp-sd__cta-btn--outline:hover .nkp-sd__cta-btn-subtitle,
body.nkp .nkp-sd__cta-btn--outline:hover i {
    color: #fff;
}

body.nkp .nkp-sd__cta-btn .nkp-sd__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-sd__cta-btn .nkp-sd__cta-icon svg {
    width: 28px;
    height: 28px;
}

body.nkp .nkp-sd__cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.nkp .nkp-sd__cta-btn-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

body.nkp .nkp-sd__cta-btn-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-sd__content {
        padding-right: 0;
    }

    body.nkp .nkp-sd__sidebar {
        margin-top: 32px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-sd__nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 12px;
        margin-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    body.nkp .nkp-sd__nav::-webkit-scrollbar {
        display: none;
    }

    body.nkp .nkp-sd__nav--fixed {
        padding: 10px 0;
    }

    body.nkp .nkp-sd__nav--fixed .container {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    body.nkp .nkp-sd__nav--fixed .container::-webkit-scrollbar {
        display: none;
    }

    body.nkp .nkp-sd__nav-item {
        padding: 6px 12px;
        font-size: 14px;
        flex-shrink: 0;
    }

    body.nkp .nkp-sd__section-title {
        font-size: 18px;
    }

    body.nkp .nkp-sd__price-card-amount {
        font-size: 28px;
    }

    body.nkp .nkp-sd__cta-btn {
        height: 48px;
        padding: 0 20px;
    }

    body.nkp .nkp-sd__cta-btn .nkp-sd__cta-icon svg {
        width: 24px;
        height: 24px;
    }

    body.nkp .nkp-sd__cta-btn-title {
        font-size: 14px;
    }

    body.nkp .nkp-sd__cta-btn-subtitle {
        font-size: 12px;
    }
}

/* ========================================
   NKP Tra cứu bảo hành
   ======================================== */

body.nkp .nkp-tcbh__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.nkp .nkp-tcbh__label {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
}

body.nkp .nkp-tcbh__row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

body.nkp .nkp-tcbh__input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--fs-color-primary, #c9a227);
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

body.nkp .nkp-tcbh__input:focus {
    border-color: var(--fs-color-primary, #c9a227);
}

body.nkp .nkp-tcbh__input::placeholder {
    color: #999;
}

body.nkp .nkp-tcbh__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: var(--fs-color-secondary, #0426a0);
    border: none;
    border-radius: 99px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

body.nkp .nkp-tcbh__btn:hover {
    opacity: 0.9;
}

body.nkp .nkp-tcbh__btn:active {
    transform: scale(0.98);
}

body.nkp .nkp-tcbh__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

body.nkp .nkp-tcbh__btn span {
    color: #fff;
}

body.nkp .nkp-tcbh__btn i {
    font-size: 14px;
    color: var(--fs-color-primary, #c9a227);
}

/* Result */
body.nkp .nkp-tcbh__result {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

/* Card */
body.nkp .nkp-tcbh__card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

body.nkp .nkp-tcbh__card-inner {
    display: flex;
    flex-direction: column;
}

/* Card Header */
body.nkp .nkp-tcbh__card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    height: 48px;
    border-radius: 8px 8px 0 0;
}

body.nkp .nkp-tcbh__card-header--primary {
    background: linear-gradient(89.55deg, #0426A0 0%, #4A71FF 100.92%);
}

body.nkp .nkp-tcbh__card-header--secondary {
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, #F7F7F7 110.44%);
}

body.nkp .nkp-tcbh__card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
}

body.nkp .nkp-tcbh__card-header--secondary .nkp-tcbh__card-title {
    color: #1B1B1B;
}

/* Card Body */
body.nkp .nkp-tcbh__card-body {
    display: flex;
    flex-direction: column;
}

/* Row */
body.nkp .nkp-tcbh__row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    min-height: 40px;
    gap: 8px;
}

body.nkp .nkp-tcbh__row-item:nth-child(odd) {
    background: #FFFFFF;
}

body.nkp .nkp-tcbh__row-item:nth-child(even) {
    background: #EEF4FF;
}

body.nkp .nkp-tcbh__card--contact .nkp-tcbh__row-item:nth-child(odd) {
    background: #FFF4E0;
}

body.nkp .nkp-tcbh__card--contact .nkp-tcbh__row-item:nth-child(even) {
    background: #FFFFFF;
}

body.nkp .nkp-tcbh__row-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1B1B1B;
}

body.nkp .nkp-tcbh__row-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #1B1B1B;
    text-align: right;
}

body.nkp .nkp-tcbh__row-value--primary {
    color: var(--fs-color-primary, #FD9300);
}

/* Reset Button */
body.nkp .nkp-tcbh__reset-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

body.nkp .nkp-tcbh__reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--fs-color-primary, #FD9300);
    background: transparent;
    border: 2px solid var(--fs-color-primary, #FD9300);
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s ease;
}

body.nkp .nkp-tcbh__reset-btn:hover {
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
}

body.nkp .nkp-tcbh__reset-btn i {
    font-size: 14px;
}

body.nkp .nkp-tcbh__result-error {
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
    color: #e91010;
    font-size: 16px;
    text-align: center;
}

/* Responsive */
@media (max-width: 767px) {
    body.nkp .nkp-tcbh__row {
        flex-direction: column;
    }

    body.nkp .nkp-tcbh__input {
        height: 42px;
    }

    body.nkp .nkp-tcbh__btn {
        height: 42px;
        width: 100%;
    }

    body.nkp .nkp-tcbh__card {
        padding: 12px;
        border-radius: 16px;
    }

    body.nkp .nkp-tcbh__card-header {
        height: 42px;
    }

    body.nkp .nkp-tcbh__card-title {
        font-size: 16px;
    }

    body.nkp .nkp-tcbh__row-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 16px;
    }

    body.nkp .nkp-tcbh__row-value {
        text-align: left;
    }

    body.nkp .nkp-tcbh__reset-btn {
        height: 42px;
        width: 100%;
    }
}

/* ========================================
   Archive Khách hàng
   ======================================== */

body.nkp .nkp-archive-kh {
    padding: 60px 0;
}

/* Header */
body.nkp .nkp-archive-kh__header {
    text-align: center;
    margin-bottom: 48px;
}

body.nkp .nkp-archive-kh__title {
    font-size: 36px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0 0 16px 0;
}

body.nkp .nkp-archive-kh__desc {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 0 24px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Filter */
body.nkp .nkp-archive-kh__filter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
}

body.nkp .nkp-archive-kh__filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #1B1B1B;
    white-space: nowrap;
}

body.nkp .nkp-archive-kh__filter-select {
    width: auto !important;
    max-width: 250px !important;
    min-width: 150px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
    font-size: 14px;
    color: #1B1B1B;
    background: #fff;
    cursor: pointer;
}

body.nkp .nkp-archive-kh__filter-select:focus {
    outline: none;
    border-color: var(--fs-color-primary);
}

/* Featured Section */
body.nkp .nkp-archive-kh__featured {
    position: relative;
    margin-bottom: 60px;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
}

/* Gradient border using pseudo-element for border-radius support */
body.nkp .nkp-archive-kh__featured::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 12px;
    background: linear-gradient(329.67deg, #FFFFFF -36.44%, #F8AD11 84.79%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

body.nkp .nkp-archive-kh__featured-img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 12px;
}

body.nkp .nkp-archive-kh__featured-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-archive-kh__featured-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

body.nkp .nkp-archive-kh__featured-content {
    padding-left: 24px;
}

body.nkp .nkp-archive-kh__featured-heading {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    color: #1B1B1B;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, rgba(247, 247, 247, 0.35) 110.44%);
    border-radius: 4px;
    margin: 0 0 12px 0;
}

body.nkp .nkp-archive-kh__featured-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0;
    color: var(--fs-color-primary);
    margin: 0 0 20px 0;
}

/* Quote Box */
body.nkp .nkp-archive-kh__featured-quote {
    position: relative;
    background: #FFF9EE;
    border-radius: 8px;
    padding: 20px 20px 20px 50px;
    margin-bottom: 24px;
}

body.nkp .nkp-archive-kh__featured-quote-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 24px;
    color: var(--fs-color-primary);
}

body.nkp .nkp-archive-kh__featured-quote-text {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Info Rows */
body.nkp .nkp-archive-kh__featured-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 537px;
    background: #EEF4FF;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 24px;
}

body.nkp .nkp-archive-kh__info-row {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

body.nkp .nkp-archive-kh__info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 240px;
    font-size: 14px;
    font-weight: 500;
    color: #1B1B1B;
}

body.nkp .nkp-archive-kh__info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
    color: #fff;
    background: var(--fs-color-secondary, #0426A0);
    border-radius: 50%;
    flex-shrink: 0;
}

body.nkp .nkp-archive-kh__info-value {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--fs-color-secondary, #0426A0);
}

/* Feedback */
body.nkp .nkp-archive-kh__feedback-title {
    font-size: 24px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0 0 12px 0;
}

body.nkp .nkp-archive-kh__feedback-text {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Album */
body.nkp .nkp-archive-kh__album {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

body.nkp .nkp-archive-kh__album-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: default;
    pointer-events: none;
}

body.nkp .nkp-archive-kh__album-item--first {
    flex: 0 0 auto;
    width: 260px;
}

body.nkp .nkp-archive-kh__album-item--first .nkp-archive-kh__album-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Second image - square, 80% height of first */
body.nkp .nkp-archive-kh__album-item:nth-child(2) {
    flex: 0 0 auto;
    width: 117px;
}

body.nkp .nkp-archive-kh__album-item:nth-child(2) .nkp-archive-kh__album-img {
    width: 100%;
    height: 117px;
    object-fit: cover;
}

/* Third image - 3/4 ratio, 60% height of first */
body.nkp .nkp-archive-kh__album-item:nth-child(3) {
    flex: 0 0 auto;
    width: 66px;
}

body.nkp .nkp-archive-kh__album-item:nth-child(3) .nkp-archive-kh__album-img {
    width: 100%;
    height: 88px;
    object-fit: cover;
}

body.nkp .nkp-archive-kh__album-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--fs-color-primary);
    font-size: 18px;
    font-weight: 700;
}

/* Customer Grid */
body.nkp .nkp-archive-kh__grid {
    margin-top: 40px;
}

body.nkp .nkp-archive-kh__grid .row {
    margin: -12px;
}

body.nkp .nkp-archive-kh__grid .col {
    padding: 12px;
}

/* Card */
body.nkp .nkp-archive-kh__card {
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-archive-kh__card-img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
}

body.nkp .nkp-archive-kh__card-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-archive-kh__card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

body.nkp .nkp-archive-kh__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-archive-kh__card-name {
    font-size: 18px;
    font-weight: 600;
    color: #1B1B1B;
    margin: 0 0 12px 0;
}

body.nkp .nkp-archive-kh__card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

body.nkp .nkp-archive-kh__card-badge {
    display: inline-block;
    background: #FFF9EE;
    color: var(--fs-color-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
}

body.nkp .nkp-archive-kh__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fs-color-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

body.nkp .nkp-archive-kh__card-link:hover {
    color: var(--fs-color-primary);
}

body.nkp .nkp-archive-kh__card-link i {
    font-size: 12px;
    color: var(--fs-color-secondary);
    transition: transform 0.2s;
}

body.nkp .nkp-archive-kh__card-link:hover i {
    transform: translateX(4px);
    color: var(--fs-color-primary);
}

/* Mobile Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-archive-kh {
        padding: 40px 0;
    }

    body.nkp .nkp-archive-kh__title {
        font-size: 28px;
    }

    body.nkp .nkp-archive-kh__filter {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    body.nkp .nkp-archive-kh__filter-select {
        width: 100%;
    }

    body.nkp .nkp-archive-kh__featured-content {
        padding-left: 0;
        margin-top: 24px;
    }

    body.nkp .nkp-archive-kh__featured-name {
        font-size: 22px;
    }

    body.nkp .nkp-archive-kh__info-row {
        flex-direction: column;
        gap: 4px;
    }

    body.nkp .nkp-archive-kh__info-label {
        flex: none;
    }

    body.nkp .nkp-archive-kh__feedback-title {
        font-size: 20px;
    }

    body.nkp .nkp-archive-kh__album {
        flex-wrap: wrap;
    }

    body.nkp .nkp-archive-kh__album-item--first {
        width: 100%;
    }

    body.nkp .nkp-archive-kh__album-item:not(.nkp-archive-kh__album-item--first) {
        width: 60px;
    }

    body.nkp .nkp-archive-kh__album-item:not(.nkp-archive-kh__album-item--first) .nkp-archive-kh__album-img {
        height: 60px;
    }
}

/* ========================================
   NKP Lightbox
   ======================================== */

body.nkp .nkp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

body.nkp .nkp-lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

body.nkp .nkp-lightbox__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-lightbox__content {
    max-width: 90%;
    max-height: 90%;
}

body.nkp .nkp-lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

body.nkp .nkp-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

body.nkp .nkp-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.nkp .nkp-lightbox__prev,
body.nkp .nkp-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

body.nkp .nkp-lightbox__prev {
    left: 20px;
}

body.nkp .nkp-lightbox__next {
    right: 20px;
}

body.nkp .nkp-lightbox__prev:hover,
body.nkp .nkp-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.nkp .nkp-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Single Khách hàng
   ======================================== */
body.nkp .nkp-single-kh {
    padding: 40px 0 60px;
}

/* Breadcrumb */
body.nkp .nkp-single-kh__breadcrumb {
    margin-bottom: 24px;
}

body.nkp .nkp-single-kh__breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.nkp .nkp-single-kh__breadcrumb-item {
    display: flex;
    align-items: center;
}

body.nkp .nkp-single-kh__breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-single-kh__breadcrumb-link:hover {
    color: var(--fs-color-primary);
}

body.nkp .nkp-single-kh__breadcrumb-link i {
    font-size: 12px;
}

body.nkp .nkp-single-kh__breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 10px;
}

body.nkp .nkp-single-kh__breadcrumb-item--current span {
    font-size: 14px;
    font-weight: 600;
    color: var(--fs-color-secondary, #0426A0);
}

/* Header Section */
body.nkp .nkp-single-kh__header {
    position: relative;
    max-width: 850px;
    margin: 0 auto 32px;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
}

body.nkp .nkp-single-kh__header .col {
    padding-bottom: 0 !important;
}

body.nkp .nkp-single-kh__header::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 12px;
    background: linear-gradient(329.67deg, #FFFFFF -36.44%, #F8AD11 84.79%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

body.nkp .nkp-single-kh__photo-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

body.nkp .nkp-single-kh__photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Before/After Thumbnails */
body.nkp .nkp-single-kh__photo-thumbs {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

body.nkp .nkp-single-kh__photo-thumb {
    position: relative;
    width: 80px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.nkp .nkp-single-kh__photo-thumb-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
}

body.nkp .nkp-single-kh__photo-thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

body.nkp .nkp-single-kh__summary {
    padding-left: 24px;
}

body.nkp .nkp-single-kh__badge {
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    color: #1B1B1B;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, rgba(247, 247, 247, 0.35) 110.44%);
    border-radius: 4px;
    margin-bottom: 12px;
}

body.nkp .nkp-single-kh__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--fs-color-primary);
    margin: 0 0 16px 0;
}

/* Quote Box */
body.nkp .nkp-single-kh__quote-box {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
}

body.nkp .nkp-single-kh__quote-box-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--fs-color-primary);
}

body.nkp .nkp-single-kh__quote-box-text {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Info Table */
body.nkp .nkp-single-kh__info-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.nkp .nkp-single-kh__info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

body.nkp .nkp-single-kh__info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 200px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

body.nkp .nkp-single-kh__info-icon {
    color: var(--fs-color-secondary, #0426A0);
    font-size: 16px;
    flex-shrink: 0;
}

body.nkp .nkp-single-kh__info-value {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #1B1B1B;
}


/* Section (Scroll Navigation Sections) */
body.nkp .nkp-single-kh__section {
    max-width: 850px;
    margin: 0 auto 32px;
}


/* Before/After Comparison Slider */
body.nkp .nkp-single-kh__comparison {
    margin-bottom: 32px;
}

body.nkp .nkp-single-kh__comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

body.nkp .nkp-single-kh__comparison-before,
body.nkp .nkp-single-kh__comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.nkp .nkp-single-kh__comparison-after {
    position: relative;
}

body.nkp .nkp-single-kh__comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

body.nkp .nkp-single-kh__comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-single-kh__comparison-label {
    position: absolute;
    bottom: 16px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
}

body.nkp .nkp-single-kh__comparison-label--before {
    left: 16px;
    background: #333;
}

body.nkp .nkp-single-kh__comparison-label--after {
    right: 16px;
    background: var(--fs-color-primary, #F8AD11);
}

body.nkp .nkp-single-kh__comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    cursor: ew-resize;
}

body.nkp .nkp-single-kh__comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none;
}

body.nkp .nkp-single-kh__comparison-handle::before,
body.nkp .nkp-single-kh__comparison-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.nkp .nkp-single-kh__comparison-handle::before {
    left: 50%;
    transform: translate(-50%, -50%);
}

body.nkp .nkp-single-kh__comparison-handle::after {
    display: none;
}

/* Album Swiper */
body.nkp .nkp-single-kh__album-swiper {
    margin-bottom: 32px;
}

body.nkp .nkp-single-kh__album-main {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

body.nkp .nkp-single-kh__album-main .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}

body.nkp .nkp-single-kh__album-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

body.nkp .nkp-single-kh__album-main .swiper-button-prev,
body.nkp .nkp-single-kh__album-main .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

body.nkp .nkp-single-kh__album-main .swiper-button-prev::after,
body.nkp .nkp-single-kh__album-main .swiper-button-next::after {
    font-size: 18px;
}

body.nkp .nkp-single-kh__album-thumbs .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

body.nkp .nkp-single-kh__album-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--fs-color-primary);
}

body.nkp .nkp-single-kh__album-thumb-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Before/After Thumb Split */
body.nkp .nkp-single-kh__album-thumb-split {
    display: flex;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}

body.nkp .nkp-single-kh__album-thumb-half {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

/* Section */
body.nkp .nkp-single-kh__section {
    margin-bottom: 32px;
}

/* Section Heading with Stars */
body.nkp .nkp-single-kh__section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0 0 24px 0;
}

body.nkp .nkp-single-kh__section-heading-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

body.nkp .nkp-single-kh__section-heading-icon svg {
    width: 24px;
    height: 23px;
}

body.nkp .nkp-single-kh__section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0 0 16px 0;
}

body.nkp .nkp-single-kh__section-title i {
    color: var(--fs-color-primary);
}

body.nkp .nkp-single-kh__section-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

body.nkp .nkp-single-kh__section-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

body.nkp .nkp-single-kh__section-gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

body.nkp .nkp-single-kh__section-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Video */
body.nkp .nkp-single-kh__video {
    margin-bottom: 32px;
}

body.nkp .nkp-single-kh__video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

body.nkp .nkp-single-kh__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Quote */
body.nkp .nkp-single-kh__quote {
    position: relative;
    background: #FFF9EE;
    border-radius: 12px;
    padding: 24px 24px 24px 60px;
    margin: 32px 0;
}

body.nkp .nkp-single-kh__quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 24px;
    color: var(--fs-color-primary);
}

body.nkp .nkp-single-kh__quote-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Footer */
body.nkp .nkp-single-kh__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 850px;
    margin: 32px auto 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

body.nkp .nkp-single-kh__update-date {
    font-size: 14px;
    color: #999;
}

body.nkp .nkp-single-kh__footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.nkp .nkp-single-kh__share-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

body.nkp .nkp-single-kh__share-btns {
    display: flex;
    gap: 8px;
}

body.nkp .nkp-single-kh__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

body.nkp .nkp-single-kh__share-btn:hover {
    transform: scale(1.1);
}

body.nkp .nkp-single-kh__share-btn--fb {
    background: #1877F2;
}

body.nkp .nkp-single-kh__share-btn--tw {
    background: #1DA1F2;
}

body.nkp .nkp-single-kh__share-btn--in {
    background: #0A66C2;
}

/* Contact Info Section */
body.nkp .nkp-single-kh__contact-info {
    max-width: 850px;
    margin: 32px auto 0;
    border-radius: 8px;
    overflow: hidden;
}

body.nkp .nkp-single-kh__contact-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    height: 48px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #1B1B1B;
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, #F7F7F7 110.44%);
    border-radius: 8px 8px 0 0;
}

body.nkp .nkp-single-kh__contact-rows {
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-single-kh__contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    height: 40px;
    background: #fff;
}

body.nkp .nkp-single-kh__contact-row--alt {
    background: #FFF4E0;
}

body.nkp .nkp-single-kh__contact-label {
    font-size: 16px;
    font-weight: 400;
    color: #1B1B1B;
}

body.nkp .nkp-single-kh__contact-value {
    font-size: 16px;
    font-weight: 700;
    color: #1B1B1B;
    text-decoration: none;
}

body.nkp .nkp-single-kh__contact-value--primary {
    color: #FD9300;
}

body.nkp a.nkp-single-kh__contact-value:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-single-kh__summary {
        padding-left: 0;
        padding-top: 24px;
    }

    body.nkp .nkp-single-kh__info-grid {
        grid-template-columns: 1fr;
    }

    body.nkp .nkp-single-kh__tabs {
        gap: 4px;
        padding: 4px;
    }

    body.nkp .nkp-single-kh__tab {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 100px;
    }

    body.nkp .nkp-single-kh__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    body.nkp .nkp-single-kh__gallery-img {
        height: 150px;
    }

    body.nkp .nkp-single-kh__section-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    body.nkp .nkp-single-kh__footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Archive Bảng giá
   ======================================== */

body.nkp .nkp-archive-bg {
    padding: 48px 0 64px;
    background: linear-gradient(180deg, #F5F8FC 0%, #fff 100%);
    min-height: 60vh;
}

/* Header */
body.nkp .nkp-archive-bg__header {
    text-align: center;
    margin-bottom: 48px;
}

body.nkp .nkp-archive-bg__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #1B1B1B;
    margin: 0 0 24px;
}

body.nkp .nkp-archive-bg__title-highlight {
    display: inline-block;
    background: linear-gradient(89.57deg, #F7F7F7 -13.9%, #F8AD11 123.63%);
    color: #1B1B1B;
    padding: 1px 16px;
    border-radius: 4px;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

/* Filter */
body.nkp .nkp-archive-bg__filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
}

body.nkp .nkp-archive-bg__filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

body.nkp .nkp-archive-bg__filter-select {
    width: 100%;
}

/* Featured Cards */
body.nkp .nkp-archive-bg__featured {
    margin-bottom: 64px;
}

body.nkp .nkp-archive-bg__card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.nkp .nkp-archive-bg__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.nkp .nkp-archive-bg__card--active {
    border-color: var(--fs-color-primary, #FD9300);
    background: linear-gradient(180deg, #FFFBF5 0%, #fff 100%);
}

body.nkp .nkp-archive-bg__card-badge {
    display: inline-block;
    background: var(--fs-color-secondary, #0426A0);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

body.nkp .nkp-archive-bg__card--active .nkp-archive-bg__card-badge {
    background: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-archive-bg__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0 0 16px;
    text-transform: uppercase;
}

body.nkp .nkp-archive-bg__card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

body.nkp .nkp-archive-bg__card-price-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

body.nkp .nkp-archive-bg__card-price-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--fs-color-primary, #FD9300);
    line-height: 1;
}

body.nkp .nkp-archive-bg__card-price-unit {
    font-size: 14px;
    font-weight: 600;
    color: #1B1B1B;
    text-align: left;
    line-height: 1.2;
}

body.nkp .nkp-archive-bg__card-original {
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: auto;
}

/* Table Section - Flex Grid Layout */
body.nkp .nkp-archive-bg__table-section {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
}

body.nkp .nkp-archive-bg__table-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--fs-color-secondary, #0426A0);
    text-align: center;
    margin: 0 0 24px;
}

/* Grid Container */
body.nkp .nkp-archive-bg__grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/* Column Base */
body.nkp .nkp-archive-bg__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.nkp .nkp-archive-bg__col--name {
    flex: 1 1 36%;
    min-width: 0;
}

body.nkp .nkp-archive-bg__col--price {
    flex: 0 0 30%;
}

body.nkp .nkp-archive-bg__col--warranty {
    flex: 0 0 22%;
}

body.nkp .nkp-archive-bg__col--action {
    flex: 0 0 16%;
}

/* Column Headers */
body.nkp .nkp-archive-bg__col-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    width: 100%;
    height: 48px;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #fff;
}

body.nkp .nkp-archive-bg__col-header--name {
    background: linear-gradient(89.55deg, #0426A0 0%, #4A71FF 100.92%);
    border-radius: 8px 0 0 0;
}

body.nkp .nkp-archive-bg__col-header--price {
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, #F7F7F7 110.44%);
    color: #1B1B1B;
}

body.nkp .nkp-archive-bg__col-header--warranty {
    background: linear-gradient(91.7deg, #4A71FF -60.88%, #0426A0 98.86%);
    white-space: nowrap;
}

body.nkp .nkp-archive-bg__col-header--action {
    background: linear-gradient(93.74deg, #0426A0 -2.27%, #4A71FF 341.73%);
    border-radius: 0 8px 0 0;
}

/* Column Body */
body.nkp .nkp-archive-bg__col-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Cell Base */
body.nkp .nkp-archive-bg__cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    color: #1B1B1B;
    background: #fff;
}

/* Alternating colors for name/warranty columns */
body.nkp .nkp-archive-bg__cell--alt {
    background: #EEF4FF;
}

/* Alternating colors for price column - yellow */
body.nkp .nkp-archive-bg__cell--price-alt {
    background: #FFF9EE;
}

/* Cell Variants */
body.nkp .nkp-archive-bg__cell--name {
    font-weight: 400;
    text-align: left;
}

body.nkp .nkp-archive-bg__cell--price {
    justify-content: center;
    font-weight: 700;
    text-align: center;
}

body.nkp .nkp-archive-bg__cell--warranty {
    justify-content: center;
    font-weight: 400;
    text-align: center;
}

body.nkp .nkp-archive-bg__cell--action {
    justify-content: center;
}

/* Link Style */
body.nkp .nkp-archive-bg__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--fs-color-secondary, #0426A0);
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

body.nkp .nkp-archive-bg__link:hover {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-archive-bg__link i {
    font-size: 12px;
}

/* Note */
body.nkp .nkp-archive-bg__note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    text-align: left;
    margin: 24px 0 0;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

/* Empty State */
body.nkp .nkp-archive-bg__empty {
    text-align: center;
    padding: 64px 24px;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    body.nkp .nkp-archive-bg__title {
        font-size: 28px;
    }

    body.nkp .nkp-archive-bg__card-price-value {
        font-size: 44px;
    }

    body.nkp .nkp-archive-bg__table-section {
        padding: 12px;
    }

    body.nkp .nkp-archive-bg__table-title {
        font-size: 22px;
    }

    body.nkp .nkp-archive-bg__col-header {
        font-size: 14px;
        padding: 0 10px;
        height: 44px;
    }

    body.nkp .nkp-archive-bg__cell {
        font-size: 14px;
        padding: 8px 10px;
    }

    body.nkp .nkp-archive-bg__link {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-archive-bg {
        padding: 32px 0 48px;
    }

    body.nkp .nkp-archive-bg__header {
        margin-bottom: 32px;
    }

    body.nkp .nkp-archive-bg__title {
        flex-direction: column;
        font-size: 28px;
        line-height: 36px;
        gap: 8px;
    }

    body.nkp .nkp-archive-bg__title-highlight {
        font-size: 28px;
        line-height: 36px;
        padding: 2px 12px;
    }

    body.nkp .nkp-archive-bg__featured {
        margin-bottom: 32px;
    }

    body.nkp .nkp-archive-bg__card {
        padding: 20px;
        margin-bottom: 16px;
    }

    body.nkp .nkp-archive-bg__card-price-value {
        font-size: 36px;
    }

    body.nkp .nkp-archive-bg__table-section {
        padding: 8px;
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.nkp .nkp-archive-bg__table-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    body.nkp .nkp-archive-bg__grid {
        min-width: 700px;
    }

    body.nkp .nkp-archive-bg__col-header {
        font-size: 12px;
        height: 40px;
        padding: 0 8px;
    }

    body.nkp .nkp-archive-bg__cell {
        font-size: 13px;
        padding: 6px 8px;
        height: 36px;
    }

    body.nkp .nkp-archive-bg__link {
        font-size: 11px;
    }
}

/* ========================================
   NKP Title V2
   ======================================== */

body.nkp .nkp-title-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 0;
}

body.nkp .nkp-title-v2--left {
    align-items: flex-start;
}

body.nkp .nkp-title-v2--right {
    align-items: flex-end;
}

body.nkp .nkp-title-v2__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 8px;
}

body.nkp .nkp-title-v2--left .nkp-title-v2__row {
    justify-content: flex-start;
}

body.nkp .nkp-title-v2--right .nkp-title-v2__row {
    justify-content: flex-end;
}

body.nkp .nkp-title-v2__highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 14px;
    background: linear-gradient(89.57deg, #F7F7F7 -13.9%, #F8AD11 123.63%);
    border-radius: 4px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: #1B1B1B;
    white-space: nowrap;
    flex-shrink: 0;
}

body.nkp .nkp-title-v2__text {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: #1B1B1B;
    margin: 0;
}

body.nkp .nkp-title-v2--left .nkp-title-v2__text {
    text-align: left;
}

body.nkp .nkp-title-v2--right .nkp-title-v2__text {
    text-align: right;
}

/* Size variants - Small */
body.nkp .nkp-title-v2--small .nkp-title-v2__highlight,
body.nkp .nkp-title-v2--small .nkp-title-v2__text {
    font-size: 28px;
    line-height: 36px;
}

body.nkp .nkp-title-v2--small .nkp-title-v2__highlight {
    padding: 1px 10px;
}

/* Size variants - Large */
body.nkp .nkp-title-v2--large .nkp-title-v2__highlight,
body.nkp .nkp-title-v2--large .nkp-title-v2__text {
    font-size: 56px;
    line-height: 64px;
}

body.nkp .nkp-title-v2--large .nkp-title-v2__highlight {
    padding: 2px 18px;
}

/* Responsive */
@media (max-width: 991px) {

    body.nkp .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2__text {
        font-size: 32px;
        line-height: 40px;
    }

    body.nkp .nkp-title-v2__highlight {
        padding: 1px 12px;
    }

    /* Small on tablet */
    body.nkp .nkp-title-v2--small .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2--small .nkp-title-v2__text {
        font-size: 24px;
        line-height: 32px;
    }

    /* Large on tablet */
    body.nkp .nkp-title-v2--large .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2--large .nkp-title-v2__text {
        font-size: 44px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-title-v2__row {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    body.nkp .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2__text {
        font-size: 28px;
        line-height: 36px;
    }

    body.nkp .nkp-title-v2__highlight {
        padding: 2px 12px;
    }

    /* Small on mobile */
    body.nkp .nkp-title-v2--small .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2--small .nkp-title-v2__text {
        font-size: 20px;
        line-height: 28px;
    }

    /* Large on mobile */
    body.nkp .nkp-title-v2--large .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2--large .nkp-title-v2__text {
        font-size: 36px;
        line-height: 44px;
    }
}

/* ========================================
   NKP Title V3 - Multi-line Colors
   ======================================== */

body.nkp .nkp-title-v3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

body.nkp .nkp-title-v3--center {
    align-items: center;
}

body.nkp .nkp-title-v3--right {
    align-items: flex-end;
}

body.nkp .nkp-title-v3__line {
    font-style: normal;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.15;
    margin: 0;
    display: block;
}

/* Size variants - Small */
body.nkp .nkp-title-v3--small .nkp-title-v3__line {
    font-size: 32px;
}

/* Size variants - Large */
body.nkp .nkp-title-v3--large .nkp-title-v3__line {
    font-size: 64px;
}

/* Outline text style */
body.nkp .nkp-title-v3__line--outline {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    background: transparent;
}

/* Text alignment */
body.nkp .nkp-title-v3--left .nkp-title-v3__line {
    text-align: left;
}

body.nkp .nkp-title-v3--center .nkp-title-v3__line {
    text-align: center;
}

body.nkp .nkp-title-v3--right .nkp-title-v3__line {
    text-align: right;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    body.nkp .nkp-title-v3__line {
        font-size: 40px;
    }

    body.nkp .nkp-title-v3--small .nkp-title-v3__line {
        font-size: 28px;
    }

    body.nkp .nkp-title-v3--large .nkp-title-v3__line {
        font-size: 52px;
    }

    body.nkp .nkp-title-v3__line--outline {
        -webkit-text-stroke-width: 1.5px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    body.nkp .nkp-title-v3__line {
        font-size: 32px;
    }

    body.nkp .nkp-title-v3--small .nkp-title-v3__line {
        font-size: 24px;
    }

    body.nkp .nkp-title-v3--large .nkp-title-v3__line {
        font-size: 44px;
    }

    body.nkp .nkp-title-v3__line--outline {
        -webkit-text-stroke-width: 1.5px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-title-v3__line {
        font-size: 28px;
    }

    body.nkp .nkp-title-v3--small .nkp-title-v3__line {
        font-size: 20px;
    }

    body.nkp .nkp-title-v3--large .nkp-title-v3__line {
        font-size: 36px;
    }

    body.nkp .nkp-title-v3__line--outline {
        -webkit-text-stroke-width: 1px;
    }
}

/* ========================================
   NKP Title - Size Smaller (for all versions)
   ======================================== */

/* V1 - Smaller */
body.nkp .nkp-title--smaller {
    font-size: 18px;
    line-height: 24px;
}

@media (max-width: 991px) {
    body.nkp .nkp-title--smaller {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-title--smaller {
        font-size: 14px;
        line-height: 20px;
    }
}

/* V2 - Smaller */
body.nkp .nkp-title-v2--smaller .nkp-title-v2__highlight,
body.nkp .nkp-title-v2--smaller .nkp-title-v2__text {
    font-size: 20px;
    line-height: 26px;
}

body.nkp .nkp-title-v2--smaller .nkp-title-v2__highlight {
    padding: 1px 8px;
}

@media (max-width: 991px) {

    body.nkp .nkp-title-v2--smaller .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2--smaller .nkp-title-v2__text {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {

    body.nkp .nkp-title-v2--smaller .nkp-title-v2__highlight,
    body.nkp .nkp-title-v2--smaller .nkp-title-v2__text {
        font-size: 16px;
        line-height: 22px;
    }
}

/* V3 - Smaller */
body.nkp .nkp-title-v3--smaller .nkp-title-v3__line {
    font-size: 24px;
}

@media (max-width: 991px) {
    body.nkp .nkp-title-v3--smaller .nkp-title-v3__line {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-title-v3--smaller .nkp-title-v3__line {
        font-size: 18px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-title-v3--smaller .nkp-title-v3__line {
        font-size: 16px;
    }

    body.nkp .nkp-title-v3--smaller .nkp-title-v3__line--outline {
        -webkit-text-stroke-width: 1px;
    }
}

/* ========================================
   NKP Title - Line Height Variants
   ======================================== */

/* Line Height - Tight (sát nhau) */
body.nkp .nkp-title--lh-tight,
body.nkp .nkp-title-v2--lh-tight,
body.nkp .nkp-title-v3--lh-tight {
    gap: 0;
}

body.nkp .nkp-title--lh-tight {
    line-height: 1;
}

body.nkp .nkp-title-v2--lh-tight .nkp-title-v2__highlight,
body.nkp .nkp-title-v2--lh-tight .nkp-title-v2__text {
    line-height: 1;
}

body.nkp .nkp-title-v2--lh-tight .nkp-title-v2__row {
    gap: 4px;
}

body.nkp .nkp-title-v3--lh-tight .nkp-title-v3__line {
    line-height: 1;
}

/* Line Height - Relaxed (thoáng) */
body.nkp .nkp-title--lh-relaxed,
body.nkp .nkp-title-v2--lh-relaxed,
body.nkp .nkp-title-v3--lh-relaxed {
    gap: 6px;
}

body.nkp .nkp-title--lh-relaxed {
    line-height: 1.4;
}

body.nkp .nkp-title-v2--lh-relaxed .nkp-title-v2__highlight,
body.nkp .nkp-title-v2--lh-relaxed .nkp-title-v2__text {
    line-height: 1.4;
}

body.nkp .nkp-title-v2--lh-relaxed .nkp-title-v2__row {
    gap: 12px;
}

body.nkp .nkp-title-v3--lh-relaxed .nkp-title-v3__line {
    line-height: 1.4;
}

/* Line Height - Loose (rộng) */
body.nkp .nkp-title--lh-loose,
body.nkp .nkp-title-v2--lh-loose,
body.nkp .nkp-title-v3--lh-loose {
    gap: 12px;
}

body.nkp .nkp-title--lh-loose {
    line-height: 1.6;
}

body.nkp .nkp-title-v2--lh-loose .nkp-title-v2__highlight,
body.nkp .nkp-title-v2--lh-loose .nkp-title-v2__text {
    line-height: 1.6;
}

body.nkp .nkp-title-v2--lh-loose .nkp-title-v2__row {
    gap: 16px;
}

body.nkp .nkp-title-v3--lh-loose .nkp-title-v3__line {
    line-height: 1.6;
}

/* ========================================
   NKP About Quality
   ======================================== */

body.nkp .nkp-about-quality {
    position: relative;
}

body.nkp .nkp-about-quality .col-inner {
    position: relative;
}

/* Quote Box - Right Column */
body.nkp .nkp-about-quality-text {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 36px;
    gap: 8px;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(321.49deg, #F7F7F7 23.27%, #F8AD11 97.57%);
    border: 8px solid #FFFFFF;
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
}

/* Quote Icon */
body.nkp .nkp-about-quality-text::before {
    content: '';
    display: block;
    width: 28px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.1667 12.636H21.9167C17.8056 12.636 15.75 14.5018 15.75 18.2332C15.75 19.9293 16.3056 21.3145 17.4167 22.3887C18.5278 23.4629 19.9722 24 21.75 24C23.5833 24 25.0833 23.2933 26.25 21.8799C27.4167 20.4099 28 18.5442 28 16.2827C28 13.5124 27.1111 10.7138 25.3333 7.88692C23.5 4.83392 20.9722 2.20495 17.75 0L16.25 1.95053C20.1944 5.62544 22.1667 9.10247 22.1667 12.3816V12.636ZM6.5 12.636H6.25C2.08333 12.636 0 14.5018 0 18.2332C0 19.9293 0.555555 21.3145 1.66667 22.3887C2.77778 23.4629 4.22222 24 6 24C7.83333 24 9.33333 23.2933 10.5 21.8799C11.6667 20.4099 12.25 18.5442 12.25 16.2827C12.25 13.5124 11.3889 10.7138 9.66667 7.88692C7.83333 4.83392 5.30556 2.20495 2.08333 0L0.5 1.95053C4.5 5.68198 6.5 9.18728 6.5 12.4664V12.636Z' fill='%23FD9300'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin-bottom: 8px;
}

/* Quote Text */
body.nkp .nkp-about-quality-text p {
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-align: justify;
    color: #1B1B1B;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

body.nkp .nkp-about-quality-text p strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    body.nkp .nkp-about-quality-text {
        padding: 32px 28px;
        max-width: 100%;
    }

    body.nkp .nkp-about-quality-text p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-about-quality-text {
        padding: 24px 20px;
        border-width: 6px;
        border-radius: 16px;
    }

    body.nkp .nkp-about-quality-text p {
        font-size: 18px;
        line-height: 26px;
    }
}

/* ========================================
   NKP Badge Element
   ======================================== */

body.nkp .nkp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

/* Icon styling */
body.nkp .nkp-badge i {
    flex-shrink: 0;
}

/* Icon right position */
body.nkp .nkp-badge--icon-right {
    flex-direction: row-reverse;
}

/* ===== Size Variants ===== */
body.nkp .nkp-badge--small {
    font-size: 11px;
    padding: 4px 10px;
    gap: 4px;
}

body.nkp .nkp-badge--small i {
    font-size: 10px;
}

body.nkp .nkp-badge--medium {
    font-size: 13px;
    padding: 6px 14px;
    gap: 6px;
}

body.nkp .nkp-badge--medium i {
    font-size: 12px;
}

body.nkp .nkp-badge--large {
    font-size: 15px;
    padding: 8px 18px;
    gap: 8px;
}

body.nkp .nkp-badge--large i {
    font-size: 14px;
}

/* ===== Radius Variants ===== */
body.nkp .nkp-badge--square {
    border-radius: 4px;
}

body.nkp .nkp-badge--rounded {
    border-radius: 6px;
}

body.nkp .nkp-badge--pill {
    border-radius: 50px;
}

/* ===== Color - Primary ===== */
body.nkp .nkp-badge--solid.nkp-badge--primary {
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
}

body.nkp .nkp-badge--outline.nkp-badge--primary {
    background: transparent;
    color: var(--fs-color-primary, #FD9300);
    border: 2px solid var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-badge--soft.nkp-badge--primary {
    background: rgba(253, 147, 0, 0.12);
    color: var(--fs-color-primary, #FD9300);
}

/* ===== Color - Secondary ===== */
body.nkp .nkp-badge--solid.nkp-badge--secondary {
    background: var(--fs-color-secondary, #0426A0);
    color: #fff;
}

body.nkp .nkp-badge--outline.nkp-badge--secondary {
    background: transparent;
    color: var(--fs-color-secondary, #0426A0);
    border: 2px solid var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-badge--soft.nkp-badge--secondary {
    background: rgba(4, 38, 160, 0.1);
    color: var(--fs-color-secondary, #0426A0);
}

/* ===== Color - Success ===== */
body.nkp .nkp-badge--solid.nkp-badge--success {
    background: #22C55E;
    color: #fff;
}

body.nkp .nkp-badge--outline.nkp-badge--success {
    background: transparent;
    color: #22C55E;
    border: 2px solid #22C55E;
}

body.nkp .nkp-badge--soft.nkp-badge--success {
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
}

/* ===== Color - Warning ===== */
body.nkp .nkp-badge--solid.nkp-badge--warning {
    background: #EAB308;
    color: #fff;
}

body.nkp .nkp-badge--outline.nkp-badge--warning {
    background: transparent;
    color: #EAB308;
    border: 2px solid #EAB308;
}

body.nkp .nkp-badge--soft.nkp-badge--warning {
    background: rgba(234, 179, 8, 0.12);
    color: #B38D00;
}

/* ===== Color - Danger ===== */
body.nkp .nkp-badge--solid.nkp-badge--danger {
    background: #EF4444;
    color: #fff;
}

body.nkp .nkp-badge--outline.nkp-badge--danger {
    background: transparent;
    color: #EF4444;
    border: 2px solid #EF4444;
}

body.nkp .nkp-badge--soft.nkp-badge--danger {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
}

/* ===== Color - Dark ===== */
body.nkp .nkp-badge--solid.nkp-badge--dark {
    background: #1B1B1B;
    color: #fff;
}

body.nkp .nkp-badge--outline.nkp-badge--dark {
    background: transparent;
    color: #1B1B1B;
    border: 2px solid #1B1B1B;
}

body.nkp .nkp-badge--soft.nkp-badge--dark {
    background: rgba(27, 27, 27, 0.1);
    color: #1B1B1B;
}

/* ===== Color - Light ===== */
body.nkp .nkp-badge--solid.nkp-badge--light {
    background: #F5F5F5;
    color: #1B1B1B;
}

body.nkp .nkp-badge--outline.nkp-badge--light {
    background: transparent;
    color: #666;
    border: 2px solid #E0E0E0;
}

body.nkp .nkp-badge--soft.nkp-badge--light {
    background: #F5F5F5;
    color: #666;
}

/* ========================================
   NKP Price Element
   ======================================== */

body.nkp .nkp-price {
    display: inline-flex;
    flex-direction: column;
    position: relative;
}

body.nkp .nkp-price__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.nkp .nkp-price__main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

body.nkp .nkp-price__prefix {
    font-weight: 500;
    color: #666;
}

body.nkp .nkp-price__suffix {
    font-weight: 500;
    color: #666;
}

body.nkp .nkp-price__original {
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    font-size: 0.65em;
}

body.nkp .nkp-price__current {
    font-weight: 800;
    color: var(--fs-color-primary, #FD9300);
}

/* ===== Badge ===== */
body.nkp .nkp-price__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    color: #fff;
    z-index: 1;
}

body.nkp .nkp-price__badge--primary {
    background: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-price__badge--secondary {
    background: var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-price__badge--success {
    background: #22C55E;
}

body.nkp .nkp-price__badge--danger {
    background: #EF4444;
}

body.nkp .nkp-price__badge--dark {
    background: #1B1B1B;
}

/* ===== Size - Small ===== */
body.nkp .nkp-price--small .nkp-price__content {
    gap: 6px;
}

body.nkp .nkp-price--small .nkp-price__values {
    gap: 8px;
}

body.nkp .nkp-price--small .nkp-price__prefix,
body.nkp .nkp-price--small .nkp-price__suffix {
    font-size: 12px;
}

body.nkp .nkp-price--small .nkp-price__original {
    font-size: 14px;
}

body.nkp .nkp-price--small .nkp-price__current {
    font-size: 20px;
}

body.nkp .nkp-price--small .nkp-price__badge {
    top: -8px;
    right: -8px;
    padding: 3px 8px;
    font-size: 10px;
}

/* ===== Size - Medium ===== */
body.nkp .nkp-price--medium .nkp-price__prefix,
body.nkp .nkp-price--medium .nkp-price__suffix {
    font-size: 14px;
}

body.nkp .nkp-price--medium .nkp-price__original {
    font-size: 16px;
}

body.nkp .nkp-price--medium .nkp-price__current {
    font-size: 32px;
}

/* ===== Size - Large ===== */
body.nkp .nkp-price--large .nkp-price__content {
    gap: 12px;
}

body.nkp .nkp-price--large .nkp-price__values {
    gap: 14px;
}

body.nkp .nkp-price--large .nkp-price__prefix,
body.nkp .nkp-price--large .nkp-price__suffix {
    font-size: 18px;
}

body.nkp .nkp-price--large .nkp-price__original {
    font-size: 24px;
}

body.nkp .nkp-price--large .nkp-price__current {
    font-size: 48px;
}

body.nkp .nkp-price--large .nkp-price__badge {
    top: -12px;
    right: -12px;
    padding: 6px 12px;
    font-size: 12px;
}

/* ===== Align ===== */
body.nkp .nkp-price--left {
    align-items: flex-start;
}

body.nkp .nkp-price--left .nkp-price__content {
    align-items: flex-start;
}

body.nkp .nkp-price--center {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-price--center .nkp-price__content {
    align-items: center;
}

body.nkp .nkp-price--center .nkp-price__main {
    justify-content: center;
}

body.nkp .nkp-price--right {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

body.nkp .nkp-price--right .nkp-price__content {
    align-items: flex-end;
}

body.nkp .nkp-price--right .nkp-price__main {
    justify-content: flex-end;
}

/* ===== Style - Default ===== */
/* Clean, no extra styling */

/* ===== Style - Card ===== */
body.nkp .nkp-price--card {
    background: #fff;
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

body.nkp .nkp-price--card.nkp-price--small {
    padding: 14px 20px;
    border-radius: 10px;
}

body.nkp .nkp-price--card.nkp-price--large {
    padding: 28px 40px;
    border-radius: 16px;
}

/* ===== Style - Highlight ===== */
body.nkp .nkp-price--highlight {
    background: #FFF9F0;
    padding: 20px 28px;
    border-radius: 12px;
    border-left: 4px solid var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-price--highlight.nkp-price--small {
    padding: 14px 20px;
    border-radius: 10px;
    border-left-width: 3px;
}

body.nkp .nkp-price--highlight.nkp-price--large {
    padding: 28px 40px;
    border-radius: 16px;
    border-left-width: 5px;
}

body.nkp .nkp-price--highlight .nkp-price__badge {
    top: 12px;
    right: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    body.nkp .nkp-price--large .nkp-price__current {
        font-size: 36px;
    }

    body.nkp .nkp-price--large .nkp-price__original {
        font-size: 18px;
    }

    body.nkp .nkp-price--card.nkp-price--large,
    body.nkp .nkp-price--highlight.nkp-price--large {
        padding: 20px 24px;
    }
}

/* ========================================
   NKP Statistics Element
   ======================================== */
body.nkp .nkp-statistics {
    width: 100%;
    max-width: 703px;
}

body.nkp .nkp-statistics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 81px 61px;
}

body.nkp .nkp-statistics__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 16px;
    gap: 5px;
    border-bottom: 2px solid #FD9300;
}

body.nkp .nkp-statistics__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

body.nkp .nkp-statistics__number {
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    color: #0426A0;
}

body.nkp .nkp-statistics__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-statistics__icon i {
    font-size: 28px;
    color: #FD9300;
}

body.nkp .nkp-statistics__text {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #1F1F1F;
}

/* Tablet - max-width: 849px */
@media (max-width: 849px) {
    body.nkp .nkp-statistics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 24px;
    }

    body.nkp .nkp-statistics__item {
        width: 100%;
        padding: 0 0 16px;
        gap: 12px;
    }

    body.nkp .nkp-statistics__number {
        font-size: 48px;
        line-height: 120%;
    }

    body.nkp .nkp-statistics__icon {
        width: 28px;
        height: 28px;
    }

    body.nkp .nkp-statistics__icon i {
        font-size: 22px;
    }

    body.nkp .nkp-statistics__text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Mobile - max-width: 549px */
@media (max-width: 549px) {
    body.nkp .nkp-statistics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    body.nkp .nkp-statistics__item {
        min-height: 134px;
    }
}

/* ========================================
   NKP Contact Info Element
   ======================================== */
body.nkp .nkp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 700px;
}

body.nkp .nkp-contact-info__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

body.nkp .nkp-contact-info__label {
    flex-shrink: 0;
    width: 180px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    /* color: #1B1B1B; */
    padding-top: 4px;
}

body.nkp .nkp-contact-info__value {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

body.nkp .nkp-contact-info__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.nkp .nkp-contact-info__icon i {
    font-size: 18px;
    color: var(--fs-color-primary, #FD9300);
}

/* Icon Colors - Platform specific */
body.nkp .nkp-contact-info__icon--facebook i {
    color: #1877F2;
}

body.nkp .nkp-contact-info__icon--youtube i {
    color: #FF0000;
}

body.nkp .nkp-contact-info__icon--tiktok i {
    color: #000000;
}

body.nkp .nkp-contact-info__icon--instagram i {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.nkp .nkp-contact-info__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* color: #1B1B1B; */
}

body.nkp .nkp-contact-info__text--phone {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    /* color: #1B1B1B; */
}

body.nkp .nkp-contact-info__link {
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-contact-info__link:hover {
    color: var(--fs-color-primary, #FD9300);
    text-decoration: underline;
}

/* Row variant - Phone with bigger icon */
body.nkp .nkp-contact-info__row--phone .nkp-contact-info__icon {
    width: 28px;
    height: 32px;
}

body.nkp .nkp-contact-info__row--phone .nkp-contact-info__icon i {
    font-size: 22px;
}

/* Responsive - Tablet */
@media (max-width: 849px) {
    body.nkp .nkp-contact-info {
        gap: 20px;
    }

    body.nkp .nkp-contact-info__row {
        flex-direction: column;
        gap: 8px;
    }

    body.nkp .nkp-contact-info__label {
        width: 100%;
        font-size: 12px;
        line-height: 18px;
    }

    body.nkp .nkp-contact-info__text {
        font-size: 15px;
        line-height: 22px;
    }

    body.nkp .nkp-contact-info__text--phone {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 549px) {
    body.nkp .nkp-contact-info {
        gap: 16px;
    }

    body.nkp .nkp-contact-info__icon i {
        font-size: 16px;
    }

    body.nkp .nkp-contact-info__text {
        font-size: 14px;
        line-height: 20px;
    }

    body.nkp .nkp-contact-info__text--phone {
        font-size: 18px;
        line-height: 26px;
    }
}

/* ========================================
   NKP Price Card - Bảng giá dạng Card
   Global component cho archive và single
   ======================================== */

/* Container - danh sách cards */
body.nkp .nkp-price-cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
}

/* Single Card */
body.nkp .nkp-price-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
    filter: drop-shadow(0px 1px 3px rgba(3, 6, 43, 0.1)) drop-shadow(0px 1px 3px rgba(3, 6, 43, 0.1));
    border-radius: 8px;
    overflow: hidden;
}

/* Card Header */
body.nkp .nkp-price-card__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    border-radius: 8px 8px 0 0;
}

/* Header Variant: Primary (Blue gradient) */
body.nkp .nkp-price-card__header--primary {
    background: linear-gradient(89.55deg, #0426A0 0%, #4A71FF 100.92%);
}

body.nkp .nkp-price-card__header--primary .nkp-price-card__title {
    color: #FFFFFF;
}

/* Header Variant: Secondary (Gold gradient) */
body.nkp .nkp-price-card__header--secondary {
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, #F7F7F7 110.44%);
}

body.nkp .nkp-price-card__header--secondary .nkp-price-card__title {
    color: #1B1B1B;
}

/* Card Title */
body.nkp .nkp-price-card__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

/* Card Body */
body.nkp .nkp-price-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8px 16px;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 0 0 8px 8px;
}

/* Info rows container */
body.nkp .nkp-price-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
    width: 100%;
}

/* Single info row */
body.nkp .nkp-price-card__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
    width: 100%;
}

/* Row label */
body.nkp .nkp-price-card__label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #1B1B1B;
    margin: 0;
}

/* Row value */
body.nkp .nkp-price-card__value {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #1B1B1B;
    margin: 0;
}

/* Price value - highlighted */
body.nkp .nkp-price-card__value--price {
    font-weight: 700;
    color: #FD9300;
}

/* Action button container */
body.nkp .nkp-price-card__action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    background: #EEF4FF;
    border-radius: 4px;
    margin-top: 4px;
}

/* Action link */
body.nkp .nkp-price-card__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    text-decoration: none;
}

body.nkp .nkp-price-card__link span {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #0426A0;
}

body.nkp .nkp-price-card__link i {
    font-size: 14px;
    color: #0426A0;
}

body.nkp .nkp-price-card__link:hover span,
body.nkp .nkp-price-card__link:hover i {
    color: #FD9300;
}

/* Note text */
body.nkp .nkp-price-cards__note {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #1B1B1B;
    margin: 12px 0 0 0;
}

/* ========================================
   NKP Price Card - Responsive
   ======================================== */

/* Tablet */
@media (max-width: 849px) {
    body.nkp .nkp-price-cards {
        gap: 16px;
    }

    body.nkp .nkp-price-card__header {
        height: 44px;
    }

    body.nkp .nkp-price-card__title {
        font-size: 15px;
    }

    body.nkp .nkp-price-card__label,
    body.nkp .nkp-price-card__value {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Mobile */
@media (max-width: 549px) {
    body.nkp .nkp-price-cards {
        gap: 12px;
    }

    body.nkp .nkp-price-card__header {
        height: 40px;
        padding: 0 12px;
    }

    body.nkp .nkp-price-card__title {
        font-size: 14px;
        line-height: 22px;
    }

    body.nkp .nkp-price-card__body {
        padding: 8px 12px;
    }

    body.nkp .nkp-price-card__label,
    body.nkp .nkp-price-card__value {
        font-size: 14px;
        line-height: 20px;
    }

    body.nkp .nkp-price-card__action {
        padding: 6px 12px;
    }

    body.nkp .nkp-price-card__link span {
        font-size: 13px;
    }
}

/* ========================================
   NKP Price Table - Bảng giá dạng Table (PC)
   Global component cho archive và single
   ======================================== */

/* Container */
body.nkp .nkp-price-table {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

/* Column */
body.nkp .nkp-price-table__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

/* Column widths */
body.nkp .nkp-price-table__col--name {
    flex: 2;
    min-width: 0;
}

body.nkp .nkp-price-table__col--price {
    flex: 1.2;
    min-width: 0;
}

body.nkp .nkp-price-table__col--warranty {
    flex: 0.8;
    min-width: 0;
}

body.nkp .nkp-price-table__col--action {
    flex: 0.8;
    min-width: 0;
}

/* Header */
body.nkp .nkp-price-table__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

/* Header variant: Primary (Blue gradient left to right) */
body.nkp .nkp-price-table__header--primary {
    background: linear-gradient(89.55deg, #0426A0 0%, #4A71FF 100.92%);
    color: #FFFFFF;
    border-radius: 8px 0 0 0;
}

/* Header variant: Secondary (Gold gradient) */
body.nkp .nkp-price-table__header--secondary {
    background: linear-gradient(93.48deg, #E7AC3C 2.86%, #F7F7F7 110.44%);
    color: #1B1B1B;
}

/* Header variant: Primary reverse (Blue gradient right to left) */
body.nkp .nkp-price-table__header--primary-reverse {
    background: linear-gradient(91.7deg, #4A71FF -60.88%, #0426A0 98.86%);
    color: #FFFFFF;
}

/* Header variant: Primary alt (for last column) */
body.nkp .nkp-price-table__header--primary-alt {
    background: linear-gradient(93.74deg, #0426A0 -2.27%, #4A71FF 341.73%);
    color: #FFFFFF;
    border-radius: 0 8px 0 0;
}

/* Body */
body.nkp .nkp-price-table__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

/* Cell */
body.nkp .nkp-price-table__cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    background: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1B1B;
}

/* Cell name - left align */
body.nkp .nkp-price-table__col--name .nkp-price-table__cell {
    justify-content: flex-start;
}

/* Cell centered columns */
body.nkp .nkp-price-table__col--price .nkp-price-table__cell,
body.nkp .nkp-price-table__col--warranty .nkp-price-table__cell,
body.nkp .nkp-price-table__col--action .nkp-price-table__cell {
    justify-content: center;
    text-align: center;
}

/* Cell alt background */
body.nkp .nkp-price-table__cell--alt {
    background: #EEF4FF;
}

/* Price cell */
body.nkp .nkp-price-table__cell--price {
    font-weight: 700;
}

body.nkp .nkp-price-table__cell--price-alt {
    background: #FFF9EE;
}

/* Link */
body.nkp .nkp-price-table__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    text-decoration: none;
}

body.nkp .nkp-price-table__link span {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #0426A0;
}

body.nkp .nkp-price-table__link i {
    font-size: 14px;
    color: #0426A0;
}

body.nkp .nkp-price-table__link:hover span,
body.nkp .nkp-price-table__link:hover i {
    color: #FD9300;
}

/* Active state - current item */
body.nkp .nkp-price-table__cell--active {
    background: rgba(253, 147, 0, 0.1) !important;
    font-weight: 600;
}

body.nkp .nkp-price-table__current {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

body.nkp .nkp-price-card--active {
    border: 2px solid var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-price-card__current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 16px;
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

/* ========================================
   Price Table/Cards - Responsive Toggle
   ======================================== */

/* PC: Show table, hide cards */
body.nkp .nkp-price-table {
    display: flex;
}

body.nkp .nkp-price-cards {
    display: none;
}

/* Mobile: Hide table, show cards */
@media (max-width: 767px) {
    body.nkp .nkp-price-table {
        display: none;
    }

    body.nkp .nkp-price-cards {
        display: flex;
    }
}

/* ========================================
   Customer Benefits Section
   ======================================== */

body.nkp .nkp-customer-benefits {
    padding: 60px 0;
    margin-top: 40px;
}

body.nkp .nkp-customer-benefits__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #1B1B1B;
    margin-bottom: 16px;
}

body.nkp .nkp-customer-benefits__desc {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Benefits Grid */
body.nkp .nkp-customer-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

body.nkp .nkp-customer-benefits__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8px 16px;
    gap: 8px;
    min-height: 148px;
    border-radius: 16px;
}

/* Yellow/Cream variant - Primary color text */
body.nkp .nkp-customer-benefits__item--yellow {
    background: #FFF9EE;
}

body.nkp .nkp-customer-benefits__item--yellow .nkp-customer-benefits__text {
    color: #FD9300;
}

body.nkp .nkp-customer-benefits__item--yellow .nkp-customer-benefits__icon i {
    color: #0426A0;
}

/* Blue variant - Secondary color text */
body.nkp .nkp-customer-benefits__item--blue {
    background: #EEF4FF;
}

body.nkp .nkp-customer-benefits__item--blue .nkp-customer-benefits__text {
    color: #0426A0;
}

body.nkp .nkp-customer-benefits__item--blue .nkp-customer-benefits__icon i {
    color: #FD9300;
}

body.nkp .nkp-customer-benefits__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.nkp .nkp-customer-benefits__icon i {
    font-size: 32px;
}

body.nkp .nkp-customer-benefits__text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    max-width: 270px;
}

/* Slider */
body.nkp .nkp-customer-benefits__slider-wrapper {
    margin-top: 32px;
}

body.nkp .nkp-customer-benefits__slider {
    padding-bottom: 40px;
}

body.nkp .nkp-customer-benefits__slide {
    border-radius: 16px;
    overflow: hidden;
}

body.nkp .nkp-customer-benefits__slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

body.nkp .nkp-customer-benefits__pagination {
    bottom: 0 !important;
}

body.nkp .nkp-customer-benefits__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D1D5DB;
    opacity: 1;
}

body.nkp .nkp-customer-benefits__pagination .swiper-pagination-bullet-active {
    background: var(--fs-color-secondary, #0426A0);
}

/* Responsive */
@media (max-width: 991px) {
    body.nkp .nkp-customer-benefits__title {
        font-size: 26px;
    }

    body.nkp .nkp-customer-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-customer-benefits {
        padding: 40px 0;
    }

    body.nkp .nkp-customer-benefits__title {
        font-size: 22px;
    }

    body.nkp .nkp-customer-benefits__desc {
        font-size: 14px;
    }

    body.nkp .nkp-customer-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    body.nkp .nkp-customer-benefits__item {
        min-height: 120px;
        padding: 8px 12px;
    }

    body.nkp .nkp-customer-benefits__icon {
        width: 40px;
        height: 40px;
    }

    body.nkp .nkp-customer-benefits__icon i {
        font-size: 24px;
    }

    body.nkp .nkp-customer-benefits__text {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }

    body.nkp .nkp-customer-benefits__slide img {
        height: 200px;
    }
}

/* ========================================
   Related Customers Section - Single KH
   ======================================== */

/* Section Container */
body.nkp .nkp-single-kh__related {
    margin-top: 48px;
    padding: 48px 0;
    background: url('../images/bg-kh.webp') center center / cover no-repeat;
    background-color: #F9FAFB;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

body.nkp .nkp-single-kh__related-title {
    font-family: 'Public Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: #1B1B1B;
    margin: 0 0 32px 0;
}

/* Swiper Container */
body.nkp .nkp-single-kh__related-slider {
    padding-bottom: 48px;
    position: relative;
}

/* ========================================
   Related Customer Card
   ======================================== */

body.nkp .nkp-related-customer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 16px;
    gap: 8px;
    width: 100%;
    height: 504px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

/* Card Inner Container */
body.nkp .nkp-related-customer-card__image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
    width: 100%;
    height: 356px;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

body.nkp .nkp-related-customer-card__main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-related-customer-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

/* Thumbnail Container */
body.nkp .nkp-related-customer-card__thumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 12px;
    position: relative;
    z-index: 2;
}

body.nkp .nkp-related-customer-card__thumb {
    width: 100px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

/* Card Content */
body.nkp .nkp-related-customer-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
}

body.nkp .nkp-related-customer-card__name {
    font-family: 'Public Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #1B1B1B;
    margin: 0;
}

/* Tags Container */
body.nkp .nkp-related-customer-card__tags {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
}

body.nkp .nkp-related-customer-card__tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    gap: 8px;
    background: #FFF9EE;
    border-radius: 4px;
    font-family: 'Public Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #FD9300;
}

/* Link */
body.nkp .nkp-related-customer-card__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    text-decoration: none;
}

body.nkp .nkp-related-customer-card__link span {
    font-family: 'Public Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #0426A0;
}

body.nkp .nkp-related-customer-card__link i {
    font-size: 16px;
    color: #0426A0;
}

body.nkp .nkp-related-customer-card__link:hover span,
body.nkp .nkp-related-customer-card__link:hover i {
    color: #FD9300;
}

/* ========================================
   Related Customers - Responsive
   ======================================== */

@media (max-width: 991px) {
    body.nkp .nkp-single-kh__related {
        margin-top: 32px;
        padding: 32px 0;
    }

    body.nkp .nkp-single-kh__related-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    body.nkp .nkp-related-customer-card {
        height: auto;
        min-height: 420px;
    }

    body.nkp .nkp-related-customer-card__image {
        height: 280px;
    }
}

@media (max-width: 767px) {
    body.nkp .nkp-single-kh__related {
        padding: 24px 0;
    }

    body.nkp .nkp-single-kh__related-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    body.nkp .nkp-related-customer-card {
        padding: 12px;
        min-height: 380px;
    }

    body.nkp .nkp-related-customer-card__image {
        height: 240px;
        padding: 12px;
    }

    body.nkp .nkp-related-customer-card__thumb {
        width: 80px;
        height: 40px;
    }

    body.nkp .nkp-related-customer-card__content {
        gap: 8px;
    }

    body.nkp .nkp-related-customer-card__name {
        font-size: 16px;
        line-height: 24px;
    }

    body.nkp .nkp-related-customer-card__tag {
        font-size: 12px;
        line-height: 18px;
        padding: 2px 6px;
    }

    body.nkp .nkp-related-customer-card__link span {
        font-size: 13px;
    }
}

/* ========================================
   Single Chính sách (Policy) Page
   ======================================== */

/* Main Container */
body.nkp .nkp-policy {
    padding: 40px 0 80px;
    background: url('../images/bg-card.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

body.nkp .nkp-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header - Uses nkp-title-v2 */
body.nkp .nkp-policy__header {
    text-align: center;
    margin-bottom: 48px;
}

body.nkp .nkp-policy__header .nkp-title-v2__row {
    flex-wrap: nowrap;
}

/* Main Wrapper - Two Column Layout */
body.nkp .nkp-policy__wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: flex-start;
}

/* Sidebar */
body.nkp .nkp-policy__sidebar {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
}

body.nkp .nkp-policy__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Desktop nav visible, mobile nav hidden by default */
body.nkp .nkp-policy__nav--desktop {
    display: flex;
}

body.nkp .nkp-policy__nav--mobile {
    display: none;
}

body.nkp .nkp-policy__nav-item {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    transition: all 0.25s ease;
}

body.nkp .nkp-policy__nav-item:hover {
    background: #f5f5f5;
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-policy__nav-item.active {
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
    font-weight: 600;
}

body.nkp .nkp-policy__nav-item.featured {
    font-weight: 600;
}

/* Mobile Select Dropdown */
body.nkp .nkp-policy__select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 16px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Content Area */
body.nkp .nkp-policy__content {
    background: #fff;
    border-radius: 12px;
    padding: 32px 40px;
    min-height: 500px;
}

body.nkp .nkp-policy__content-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eee;
}

body.nkp .nkp-policy__content-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Body - Typography */
body.nkp .nkp-policy__content-body {
    line-height: 1.8;
    color: #333;
}

body.nkp .nkp-policy__content-body h1,
body.nkp .nkp-policy__content-body h2,
body.nkp .nkp-policy__content-body h3,
body.nkp .nkp-policy__content-body h4,
body.nkp .nkp-policy__content-body h5,
body.nkp .nkp-policy__content-body h6 {
    color: #1B1B1B;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

body.nkp .nkp-policy__content-body p {
    margin-bottom: 16px;
}

body.nkp .nkp-policy__content-body ul,
body.nkp .nkp-policy__content-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

body.nkp .nkp-policy__content-body li {
    margin-bottom: 8px;
    position: relative;
}

body.nkp .nkp-policy__content-body ul li::marker {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-policy__content-body ol li::marker {
    color: #333;
    font-weight: 600;
}

body.nkp .nkp-policy__content-body a {
    color: var(--fs-color-secondary, #0426A0);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

body.nkp .nkp-policy__content-body a:hover {
    border-bottom-color: var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-policy__content-body strong,
body.nkp .nkp-policy__content-body b {
    font-weight: 700;
    color: #1B1B1B;
}

body.nkp .nkp-policy__content-body blockquote {
    margin: 20px 0;
    padding: 16px 24px;
    background: #fff;
    border-left: 4px solid var(--fs-color-primary, #FD9300);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

body.nkp .nkp-policy__content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

body.nkp .nkp-policy__content-body th,
body.nkp .nkp-policy__content-body td {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

body.nkp .nkp-policy__content-body th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    body.nkp .nkp-policy__wrapper {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }

    body.nkp .nkp-policy__content {
        padding: 24px 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    body.nkp .nkp-policy {
        padding: 24px 0 60px;
    }

    body.nkp .nkp-policy__header {
        margin-bottom: 24px;
    }

    body.nkp .nkp-policy__wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.nkp .nkp-policy__sidebar {
        position: static;
        order: 1;
        border-radius: 12px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    /* Hide desktop nav, show mobile select */
    body.nkp .nkp-policy__nav--desktop {
        display: none;
    }

    body.nkp .nkp-policy__nav--mobile {
        display: block;
    }

    body.nkp .nkp-policy__content {
        order: 2;
        padding: 20px;
        border-radius: 8px;
    }
}

/* ========================================
   Tuyển dụng Page
   ======================================== */

/* Header Section */
body.nkp .nkp-tuyen-dung .nkp-td__header {
    padding: 40px 0 24px;
    text-align: center;
}

body.nkp .nkp-tuyen-dung .nkp-td__header .nkp-title-v2 {
    margin-bottom: 16px;
}

body.nkp .nkp-tuyen-dung .nkp-td__description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #555;
}

/* Banner Section */
body.nkp .nkp-tuyen-dung .nkp-td__banner {
    padding: 0 0 40px;
}

body.nkp .nkp-tuyen-dung .nkp-td__banner-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8E8 0%, #FFEFC8 100%);
}

body.nkp .nkp-tuyen-dung .nkp-td__banner-img {
    width: 100%;
    height: auto;
    display: block;
}


/* Jobs List Section */
body.nkp .nkp-tuyen-dung .nkp-td__jobs {
    padding: 0 0 60px;
}

body.nkp .nkp-tuyen-dung .nkp-td__jobs-list {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-item {
    display: grid;
    grid-template-columns: 1fr 150px 180px;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-item:last-child {
    border-bottom: none;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-item:hover {
    background: #fafafa;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-title {
    font-size: 16px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    background: #F7A200;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-file {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #0066CC;
    text-decoration: none;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-file:hover {
    text-decoration: underline;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-file i {
    color: #E53935;
    font-size: 16px;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-category {
    font-size: 14px;
    color: #666;
    text-align: center;
}

body.nkp .nkp-tuyen-dung .nkp-td__job-action {
    text-align: right;
}

body.nkp .nkp-tuyen-dung .nkp-td__apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--fs-color-secondary, #0426A0);
    border-radius: 50px;
    background: transparent;
    color: var(--fs-color-secondary, #0426A0);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

body.nkp .nkp-tuyen-dung .nkp-td__apply-btn:hover {
    background: var(--fs-color-secondary, #0426A0);
    color: #fff;
}

body.nkp .nkp-tuyen-dung .nkp-td__apply-btn i {
    font-size: 12px;
}

body.nkp .nkp-tuyen-dung .nkp-td__no-jobs {
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    body.nkp .nkp-tuyen-dung .nkp-td__job-item {
        grid-template-columns: 1fr 120px 160px;
        gap: 16px;
        padding: 16px 20px;
    }

    body.nkp .nkp-tuyen-dung .nkp-td__apply-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    body.nkp .nkp-tuyen-dung .nkp-td__header {
        padding: 24px 0 16px;
    }

    body.nkp .nkp-tuyen-dung .nkp-td__banner {
        padding: 0 0 24px;
    }


    body.nkp .nkp-tuyen-dung .nkp-td__jobs {
        padding: 0 0 40px;
    }

    body.nkp .nkp-tuyen-dung .nkp-td__job-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    body.nkp .nkp-tuyen-dung .nkp-td__job-category {
        text-align: left;
        color: #999;
        font-size: 13px;
    }

    body.nkp .nkp-tuyen-dung .nkp-td__job-action {
        text-align: left;
    }

    body.nkp .nkp-tuyen-dung .nkp-td__apply-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Archive Posts (Sức khoẻ nha khoa)
   ======================================== */

body.nkp .nkp-archive-posts {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFF4DC 0%, #FFFFFF 50%);
}

/* Header */
body.nkp .nkp-archive-posts__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    gap: 24px;
}

body.nkp .nkp-archive-posts__filter {
    align-self: flex-end;
}

body.nkp .nkp-archive-posts__title {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

body.nkp .nkp-archive-posts__title-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #fff;
    color: #1B1B1B;
    border-radius: 8px 0 0 8px;
}

body.nkp .nkp-archive-posts__title-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--fs-color-primary, #FD9300);
    color: #1B1B1B;
    border-radius: 0 8px 8px 0;
}

/* Filter */
body.nkp .nkp-archive-posts__filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.nkp .nkp-archive-posts__filter-select {
    width: auto !important;
    min-width: 180px;
    max-width: 250px !important;
    height: 48px;
    padding: 0 40px 0 16px;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #1B1B1B;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231B1B1B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

body.nkp .nkp-archive-posts__filter-select:focus {
    outline: none;
    border-color: var(--fs-color-primary, #FD9300);
}

/* Featured Section */
body.nkp .nkp-archive-posts__featured {
    position: relative;
    margin-bottom: 48px;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

body.nkp .nkp-archive-posts__featured-img {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    border-radius: 8px;
}

body.nkp .nkp-archive-posts__featured-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.nkp .nkp-archive-posts__featured-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

body.nkp .nkp-archive-posts__featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 24px;
}

body.nkp .nkp-archive-posts__featured-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--fs-color-secondary, #0426A0);
    margin: 0 0 16px 0;
}

body.nkp .nkp-archive-posts__featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-archive-posts__featured-title a:hover {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-archive-posts__featured-excerpt {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.nkp .nkp-archive-posts__featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fs-color-primary, #FD9300);
    text-decoration: none;
    transition: all 0.2s ease;
}

body.nkp .nkp-archive-posts__featured-link:hover {
    color: var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-archive-posts__featured-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

body.nkp .nkp-archive-posts__featured-link:hover i {
    transform: translateX(4px);
}

/* Posts Grid */
body.nkp .nkp-archive-posts__grid {
    margin-bottom: 48px;
}

body.nkp .nkp-archive-posts__grid .row {
    margin: -12px;
}

body.nkp .nkp-archive-posts__grid .col {
    padding: 12px;
}

/* Post Card */
body.nkp .nkp-archive-posts__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-archive-posts__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

body.nkp .nkp-archive-posts__card-img {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
}

body.nkp .nkp-archive-posts__card-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.nkp .nkp-archive-posts__card-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.nkp .nkp-archive-posts__card:hover .nkp-archive-posts__card-photo {
    transform: scale(1.05);
}

body.nkp .nkp-archive-posts__card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

body.nkp .nkp-archive-posts__card-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

body.nkp .nkp-archive-posts__card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #1B1B1B;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.nkp .nkp-archive-posts__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-archive-posts__card-title a:hover {
    color: var(--fs-color-primary, #FD9300);
}

/* Pagination */
body.nkp .nkp-archive-posts__pagination {
    display: flex;
    justify-content: center;
}

body.nkp .nkp-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.nkp .nkp-pagination__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #DEDEDE;
    color: #1B1B1B;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

body.nkp .nkp-pagination__nav:hover:not(.nkp-pagination__nav--disabled) {
    background: var(--fs-color-secondary, #0426A0);
    border-color: var(--fs-color-secondary, #0426A0);
    color: #fff;
}

body.nkp .nkp-pagination__nav--disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

body.nkp .nkp-pagination__nav i {
    font-size: 12px;
}

body.nkp .nkp-pagination__numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

body.nkp .nkp-pagination__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 8px;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

body.nkp .nkp-pagination__number:hover:not(.nkp-pagination__number--active) {
    background: #fff;
    color: #1B1B1B;
}

body.nkp .nkp-pagination__number--active {
    background: var(--fs-color-secondary, #0426A0);
    color: #fff;
    font-weight: 600;
}

/* Empty State */
body.nkp .nkp-archive-posts__empty {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
}

body.nkp .nkp-archive-posts__empty p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    body.nkp .nkp-archive-posts {
        padding: 40px 0;
    }

    body.nkp .nkp-archive-posts__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    body.nkp .nkp-archive-posts__title {
        font-size: 28px;
    }

    body.nkp .nkp-archive-posts__featured {
        padding: 16px;
    }

    body.nkp .nkp-archive-posts__featured-content {
        padding-left: 16px;
    }

    body.nkp .nkp-archive-posts__featured-title {
        font-size: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    body.nkp .nkp-archive-posts__header {
        gap: 16px;
    }

    body.nkp .nkp-archive-posts__title {
        font-size: 24px;
    }

    body.nkp .nkp-archive-posts__title-white,
    body.nkp .nkp-archive-posts__title-yellow {
        padding: 6px 12px;
    }

    body.nkp .nkp-archive-posts__filter-select {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.nkp .nkp-archive-posts__featured .row {
        flex-direction: column;
    }

    body.nkp .nkp-archive-posts__featured-content {
        padding-left: 0;
        padding-top: 20px;
    }

    body.nkp .nkp-archive-posts__featured-title {
        font-size: 18px;
    }

    body.nkp .nkp-archive-posts__featured-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    body.nkp .nkp-archive-posts__grid .row {
        margin: -8px;
    }

    body.nkp .nkp-archive-posts__grid .col {
        padding: 8px;
    }

    body.nkp .nkp-archive-posts__card-body {
        padding: 12px;
    }

    body.nkp .nkp-archive-posts__card-title {
        font-size: 13px;
    }

    body.nkp .nkp-pagination__nav,
    body.nkp .nkp-pagination__number {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    body.nkp .nkp-pagination__number {
        font-size: 13px;
    }
}

/* ========================================
   Single Post (Bài viết chi tiết)
   ======================================== */

body.nkp .nkp-single-post {
    padding-bottom: 60px;
}

/* Header */
body.nkp .nkp-single-post__header {
    padding: 48px 0;
    background: linear-gradient(180deg, #FFF9EE 0%, #FFFFFF 100%);
    text-align: center;
}

body.nkp .nkp-single-post__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1B1B1B;
    margin: 0;
}

body.nkp .nkp-single-post__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

body.nkp .nkp-single-post__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

body.nkp .nkp-single-post__meta-item i {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-single-post__rating {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-single-post__rating span {
    color: #666;
    margin-left: 4px;
}

/* Wrapper */
body.nkp .nkp-single-post__wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Table of Contents */
body.nkp .nkp-single-post__toc {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    margin-bottom: 32px;
    overflow: hidden;
}

body.nkp .nkp-single-post__toc-header {
    padding: 16px 20px;
    background: #F8F8F8;
    border-bottom: 1px solid #E5E5E5;
}

body.nkp .nkp-single-post__toc-header strong {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
}

body.nkp .nkp-single-post__toc-list {
    list-style: none;
    margin: 0;
    padding: 16px 20px;
}

body.nkp .nkp-single-post__toc-item {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

body.nkp .nkp-single-post__toc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--fs-color-primary, #FD9300);
    border-radius: 50%;
}

body.nkp .nkp-single-post__toc-item--h3 {
    padding-left: 32px;
}

body.nkp .nkp-single-post__toc-item--h3::before {
    left: 16px;
    width: 4px;
    height: 4px;
    background: #999;
}

body.nkp .nkp-single-post__toc-item a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-single-post__toc-item a:hover {
    color: var(--fs-color-primary, #FD9300);
}

/* Content */
body.nkp .nkp-single-post__content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

body.nkp .nkp-single-post__content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--fs-color-secondary, #0426A0);
    margin: 32px 0 16px;
    padding-left: 16px;
    border-left: 4px solid var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-single-post__content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1B1B1B;
    margin: 24px 0 12px;
}

body.nkp .nkp-single-post__content p {
    margin-bottom: 16px;
}

body.nkp .nkp-single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

body.nkp .nkp-single-post__content ul,
body.nkp .nkp-single-post__content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

body.nkp .nkp-single-post__content li {
    margin-bottom: 8px;
}

/* Share */
body.nkp .nkp-single-post__share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin: 32px 0;
}

body.nkp .nkp-single-post__share-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

body.nkp .nkp-single-post__share-date i {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-single-post__share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.nkp .nkp-single-post__share-buttons span {
    font-size: 14px;
    color: #666;
}

body.nkp .nkp-single-post__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

body.nkp .nkp-single-post__share-btn:hover {
    transform: scale(1.1);
}

body.nkp .nkp-single-post__share-btn--facebook {
    background: #1877F2;
}

body.nkp .nkp-single-post__share-btn--twitter {
    background: #1DA1F2;
}

body.nkp .nkp-single-post__share-btn--pinterest {
    background: #E60023;
}

body.nkp .nkp-single-post__share-btn--email {
    background: #666;
}


/* Related Posts */
body.nkp .nkp-single-post__related {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9EE 100%);
}

body.nkp .nkp-single-post__related-slider {
    position: relative;
    margin-top: 32px;
}

body.nkp .nkp-related-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--fs-color-primary, #FD9300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

body.nkp .nkp-related-nav:hover {
    background: var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-related-nav--prev {
    left: -22px;
}

body.nkp .nkp-related-nav--next {
    right: -22px;
}

body.nkp .nkp-related-nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    body.nkp .nkp-related-nav--prev {
        left: 0;
    }

    body.nkp .nkp-related-nav--next {
        right: 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    body.nkp .nkp-single-post__header {
        padding: 32px 0;
    }

    body.nkp .nkp-single-post__title {
        font-size: 24px;
    }

    body.nkp .nkp-single-post__meta {
        flex-direction: column;
        gap: 12px;
    }

    body.nkp .nkp-single-post__wrapper {
        padding: 24px 0;
    }

    body.nkp .nkp-single-post__content h2 {
        font-size: 20px;
    }

    body.nkp .nkp-single-post__content h3 {
        font-size: 18px;
    }

    body.nkp .nkp-single-post__share {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }


    body.nkp .nkp-single-post__related {
        padding: 40px 0;
    }

    body.nkp .nkp-related-nav {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   NKP Quy Trình (Process/Timeline)
   ======================================== */

/* Container */
body.nkp .nkp-quy-trinh {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

body.nkp .nkp-quy-trinh--left {
    text-align: left;
}

body.nkp .nkp-quy-trinh--center {
    text-align: center;
}

body.nkp .nkp-quy-trinh--right {
    text-align: right;
}

/* Items Container */
body.nkp .nkp-quy-trinh__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    position: relative;
}

/* Columns */
body.nkp .nkp-quy-trinh--cols-3 .nkp-quy-trinh-item {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

body.nkp .nkp-quy-trinh--cols-4 .nkp-quy-trinh-item {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
}

body.nkp .nkp-quy-trinh--cols-5 .nkp-quy-trinh-item {
    flex: 0 0 calc(20% - 19.2px);
    max-width: calc(20% - 19.2px);
}

body.nkp .nkp-quy-trinh--cols-6 .nkp-quy-trinh-item {
    flex: 0 0 calc(16.666% - 20px);
    max-width: calc(16.666% - 20px);
}

/* ----------------------------------------
   Style: Default (Timeline)
   ---------------------------------------- */
body.nkp .nkp-quy-trinh-item--default {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

/* Step Number */
body.nkp .nkp-quy-trinh-item__step {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: rgba(4, 38, 160, 0.1);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

/* Icon */
body.nkp .nkp-quy-trinh-item__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

body.nkp .nkp-quy-trinh-item__icon--circle {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F9FF 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.nkp .nkp-quy-trinh-item__icon--square {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F9FF 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.nkp .nkp-quy-trinh-item__icon img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

body.nkp .nkp-quy-trinh-item__icon i {
    font-size: 40px;
    color: var(--fs-color-secondary, #0426A0);
}

/* Connector Line - Default Style */
body.nkp .nkp-quy-trinh--default.nkp-quy-trinh--has-connector .nkp-quy-trinh-item--default:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 130px;
    right: -12px;
    width: calc(100% - 100px);
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0 0%, var(--fs-color-primary, #FD9300) 50%, #e0e0e0 100%);
    z-index: 0;
}

/* Content */
body.nkp .nkp-quy-trinh-item__content {
    flex: 1;
}

body.nkp .nkp-quy-trinh-item__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--fs-color-secondary, #0426A0);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Time Badge */
body.nkp .nkp-quy-trinh-item__time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(253, 147, 0, 0.1);
    border: 1px solid var(--fs-color-primary, #FD9300);
    border-radius: 50px;
    margin-bottom: 12px;
}

body.nkp .nkp-quy-trinh-item__time i {
    font-size: 14px;
    color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-quy-trinh-item__time span {
    font-size: 14px;
    font-weight: 600;
    color: var(--fs-color-primary, #FD9300);
}

/* Description */
body.nkp .nkp-quy-trinh-item__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Badge */
body.nkp .nkp-quy-trinh-item__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 8px;
}

body.nkp .nkp-quy-trinh-item__badge--primary {
    background: var(--fs-color-primary, #FD9300);
    color: #fff;
}

body.nkp .nkp-quy-trinh-item__badge--secondary {
    background: var(--fs-color-secondary, #0426A0);
    color: #fff;
}

body.nkp .nkp-quy-trinh-item__badge--success {
    background: #00a64c;
    color: #fff;
}

/* ----------------------------------------
   Style: Cards
   ---------------------------------------- */
body.nkp .nkp-quy-trinh--cards .nkp-quy-trinh__items {
    gap: 20px;
}

body.nkp .nkp-quy-trinh-item--cards {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.nkp .nkp-quy-trinh-item--cards:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(4, 38, 160, 0.12);
    border-color: var(--fs-color-primary, #FD9300);
}

body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__step {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 80px;
    color: rgba(4, 38, 160, 0.05);
    z-index: 0;
}

body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__icon img {
    max-width: 50px;
    max-height: 50px;
}

body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__icon i {
    font-size: 36px;
}

body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__content {
    position: relative;
    z-index: 1;
}

body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__title {
    font-size: 15px;
}

/* Connector - Cards Style */
body.nkp .nkp-quy-trinh--cards.nkp-quy-trinh--has-connector .nkp-quy-trinh-item--cards:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -13px;
    width: 6px;
    height: 6px;
    background: var(--fs-color-primary, #FD9300);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* ========================================
   NKP Quy Trình - Responsive
   ======================================== */

/* Tablet */
@media (max-width: 991px) {

    body.nkp .nkp-quy-trinh--cols-5 .nkp-quy-trinh-item,
    body.nkp .nkp-quy-trinh--cols-6 .nkp-quy-trinh-item {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    body.nkp .nkp-quy-trinh--cols-4 .nkp-quy-trinh-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    body.nkp .nkp-quy-trinh-item__step {
        font-size: 56px;
    }

    body.nkp .nkp-quy-trinh-item__icon {
        width: 80px;
        height: 80px;
    }

    body.nkp .nkp-quy-trinh-item__icon img {
        max-width: 50px;
        max-height: 50px;
    }

    body.nkp .nkp-quy-trinh--default.nkp-quy-trinh--has-connector .nkp-quy-trinh-item--default::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    body.nkp .nkp-quy-trinh {
        padding: 24px 0;
    }

    body.nkp .nkp-quy-trinh__header {
        margin-bottom: 24px;
    }

    body.nkp .nkp-quy-trinh__title {
        font-size: 22px;
    }

    body.nkp .nkp-quy-trinh__items {
        gap: 16px;
    }

    body.nkp .nkp-quy-trinh--cols-3 .nkp-quy-trinh-item,
    body.nkp .nkp-quy-trinh--cols-4 .nkp-quy-trinh-item,
    body.nkp .nkp-quy-trinh--cols-5 .nkp-quy-trinh-item,
    body.nkp .nkp-quy-trinh--cols-6 .nkp-quy-trinh-item {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    body.nkp .nkp-quy-trinh-item__step {
        font-size: 48px;
        margin-bottom: 8px;
    }

    body.nkp .nkp-quy-trinh-item__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    body.nkp .nkp-quy-trinh-item__icon img {
        max-width: 40px;
        max-height: 40px;
    }

    body.nkp .nkp-quy-trinh-item__icon i {
        font-size: 28px;
    }

    body.nkp .nkp-quy-trinh-item__title {
        font-size: 13px;
    }

    body.nkp .nkp-quy-trinh-item__time {
        padding: 4px 12px;
    }

    body.nkp .nkp-quy-trinh-item__time i,
    body.nkp .nkp-quy-trinh-item__time span {
        font-size: 12px;
    }

    body.nkp .nkp-quy-trinh-item__desc {
        font-size: 12px;
    }

    /* Cards style on mobile */
    body.nkp .nkp-quy-trinh-item--cards {
        padding: 20px 16px;
    }

    body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__step {
        font-size: 60px;
    }

    body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__icon {
        width: 60px;
        height: 60px;
    }

    body.nkp .nkp-quy-trinh-item--cards .nkp-quy-trinh-item__icon img {
        max-width: 36px;
        max-height: 36px;
    }

    body.nkp .nkp-quy-trinh--cards.nkp-quy-trinh--has-connector .nkp-quy-trinh-item--cards::after {
        display: none;
    }
}

/* ========================================
   NKP Container
   ======================================== */

/* Base Container Styles */
body.nkp .nkp-container {
    box-sizing: border-box;
}

body.nkp .nkp-container--relative {
    position: relative;
}

body.nkp .nkp-container--absolute {
    position: absolute;
}

body.nkp .nkp-container--fixed {
    position: fixed;
}

body.nkp .nkp-container--sticky {
    position: sticky;
}

body.nkp .nkp-container--static {
    position: static;
}

/* Container Animation Classes */
body.nkp .nkp-container--animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

/* Fade Animations */
body.nkp .nkp-container--fadeIn {
    animation-name: nkpFadeIn;
}

body.nkp .nkp-container--fadeInUp {
    animation-name: nkpFadeInUp;
}

body.nkp .nkp-container--fadeInDown {
    animation-name: nkpFadeInDown;
}

body.nkp .nkp-container--fadeInLeft {
    animation-name: nkpFadeInLeft;
}

body.nkp .nkp-container--fadeInRight {
    animation-name: nkpFadeInRight;
}

/* Slide Animations */
body.nkp .nkp-container--slideInUp {
    animation-name: nkpSlideInUp;
}

body.nkp .nkp-container--slideInDown {
    animation-name: nkpSlideInDown;
}

body.nkp .nkp-container--slideInLeft {
    animation-name: nkpSlideInLeft;
}

body.nkp .nkp-container--slideInRight {
    animation-name: nkpSlideInRight;
}

/* Zoom & Effects */
body.nkp .nkp-container--zoomIn {
    animation-name: nkpZoomIn;
}

body.nkp .nkp-container--bounceIn {
    animation-name: nkpBounceIn;
}

body.nkp .nkp-container--pulse {
    animation-name: nkpPulse;
    animation-iteration-count: infinite;
}

body.nkp .nkp-container--shake {
    animation-name: nkpShake;
}

/* Animation Keyframes */
@keyframes nkpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes nkpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nkpFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nkpFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nkpFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nkpSlideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nkpSlideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nkpSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nkpSlideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nkpZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes nkpBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes nkpPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes nkpShake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* ========================================
   NKP Check List
   ======================================== */

body.nkp .nkp-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

body.nkp .nkp-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

body.nkp .nkp-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--fs-color-primary, #fd9300);
    font-size: 14px;
}

body.nkp .nkp-check-list li strong {
    color: var(--fs-color-secondary, #0426a0);
}

/* ========================================
   NKP Simple Price Table (Row-based)
   Dùng cho bảng giá đơn giản trong landing page
   ======================================== */

body.nkp .nkp-price-table--simple {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    background: #fff;
}

body.nkp .nkp-price-table__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

body.nkp .nkp-price-table__row:last-child {
    border-bottom: none;
}

body.nkp .nkp-price-table__row--header {
    background: linear-gradient(89.55deg, #0426A0 0%, #4A71FF 100.92%);
}

body.nkp .nkp-price-table__row--header .nkp-price-table__cell {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 16px;
}

body.nkp .nkp-price-table__cell {
    padding: 12px 16px;
    font-size: 15px;
    color: #1B1B1B;
    display: flex;
    align-items: center;
}

body.nkp .nkp-price-table__cell--right {
    justify-content: flex-end;
    text-align: right;
}

body.nkp .nkp-price-table__cell--original {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

body.nkp .nkp-price-table__cell--sale {
    color: var(--fs-color-alert, #e91010);
    font-weight: 700;
    font-size: 16px;
}

body.nkp .nkp-price-table__cell--free {
    color: var(--fs-color-success, #00a64c);
    font-weight: 700;
    font-size: 15px;
}

/* Responsive for mobile */
@media (max-width: 549px) {
    body.nkp .nkp-price-table__row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px 16px;
        background: #fff;
    }

    body.nkp .nkp-price-table__row--header {
        display: none;
    }

    body.nkp .nkp-price-table__cell {
        padding: 4px 0;
        justify-content: flex-start;
    }

    body.nkp .nkp-price-table__cell--right {
        justify-content: flex-start;
    }

    body.nkp .nkp-price-table__cell--original::before {
        content: 'Giá gốc: ';
        color: #666;
        font-weight: 400;
        text-decoration: none;
    }

    body.nkp .nkp-price-table__cell--sale::before {
        content: 'Ưu đãi: ';
        color: #666;
        font-weight: 400;
    }

    body.nkp .nkp-price-table__cell--free::before {
        content: 'Ưu đãi: ';
        color: #666;
        font-weight: 400;
    }
}

/* ========================================
   NKP Bác sĩ V2
   ======================================== */

/* Wrapper */
body.nkp .nkp-bs-v2 {
    position: relative;
    width: 100%;
}

body.nkp .nkp-bs-v2--has-nav {
    padding: 0 60px;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-v2--has-nav {
        padding: 0;
    }
}

body.nkp .nkp-bs-v2--overflow-visible .nkp-bs-v2-swiper {
    overflow: visible;
}

/* Swiper */
body.nkp .nkp-bs-v2-swiper {
    overflow: hidden;
}

body.nkp .nkp-bs-v2-swiper .swiper-slide {
    height: auto;
}

/* Navigation */
body.nkp .nkp-bs-v2-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    color: var(--fs-color-secondary, #0426a0);
}

body.nkp .nkp-bs-v2-nav:hover {
    background: var(--fs-color-secondary, #0426a0);
    color: #fff;
}

body.nkp .nkp-bs-v2-nav--prev {
    left: 0;
}

body.nkp .nkp-bs-v2-nav--next {
    right: 0;
}

body.nkp .nkp-bs-v2-nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 849px) {
    body.nkp .nkp-bs-v2-nav {
        display: none;
    }
}

/* Pagination */
body.nkp .nkp-bs-v2-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    z-index: 10;
}

body.nkp .nkp-bs-v2-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.2s ease;
}

body.nkp .nkp-bs-v2-pagination .swiper-pagination-bullet-active {
    background: var(--fs-color-secondary, #0426a0);
    width: 24px;
    border-radius: 5px;
}

/* Empty */
body.nkp .nkp-bs-v2-empty {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* ========================================
   NKP Bác sĩ V2 Card
   ======================================== */

/* Card Base */
body.nkp .nkp-bs-v2-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

body.nkp .nkp-bs-v2-card:hover {
    border-color: var(--fs-color-primary, #c9a227);
}

/* Card Image */
body.nkp .nkp-bs-v2-card__image {
    position: relative;
    width: 100%;
    padding-bottom: var(--nkp-bs-v2-image-ratio, 100%);
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

body.nkp .nkp-bs-v2-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.nkp .nkp-bs-v2-card__image a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

body.nkp .nkp-bs-v2-card:hover .nkp-bs-v2-card__image img {
    transform: scale(1.05);
}

body.nkp .nkp-bs-v2-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
    font-size: 64px;
}

/* Badge (Modern style) */
body.nkp .nkp-bs-v2-card__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fs-color-secondary, #0426a0);
    text-align: center;
}

/* Card Content */
body.nkp .nkp-bs-v2-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

/* Title */
body.nkp .nkp-bs-v2-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

body.nkp .nkp-bs-v2-card__title a {
    color: var(--fs-color-base, #2a2a2a);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.nkp .nkp-bs-v2-card__title a:hover {
    color: var(--fs-color-primary, #c9a227);
}

/* Specialty (for minimal/classic) */
body.nkp .nkp-bs-v2-card__specialty {
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-color-secondary, #0426a0);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Chuyên sâu */
body.nkp .nkp-bs-v2-card__chuyen-sau {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(253, 147, 0, 0.08) 100%);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

body.nkp .nkp-bs-v2-card__chuyen-sau i {
    color: var(--fs-color-primary, #FD9300);
    font-size: 14px;
    flex-shrink: 0;
}

body.nkp .nkp-bs-v2-card__chuyen-sau span {
    line-height: 1.4;
}

/* Stats (Kinh nghiệm, Số ca) */
body.nkp .nkp-bs-v2-card__stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f8 100%);
    border-radius: 10px;
    border: 1px solid rgba(4, 38, 160, 0.08);
}

body.nkp .nkp-bs-v2-card__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

body.nkp .nkp-bs-v2-card__stat:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 16px;
}

body.nkp .nkp-bs-v2-card__stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--fs-color-secondary, #0426a0);
    line-height: 1.2;
}

body.nkp .nkp-bs-v2-card__stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 2px;
}

/* Stats in minimal style */
body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__stats {
    margin: 0 16px 16px;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__chuyen-sau {
    display: none;
}

/* Stats in classic style */
body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__stats {
    padding: 10px 12px;
    gap: 12px;
    margin-bottom: 12px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__stat:not(:last-child) {
    padding-right: 12px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__stat-value {
    font-size: 16px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__stat-label {
    font-size: 10px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__chuyen-sau {
    padding: 6px 10px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* Stats responsive */
@media (max-width: 549px) {
    body.nkp .nkp-bs-v2-card__stats {
        padding: 10px 12px;
        gap: 12px;
    }

    body.nkp .nkp-bs-v2-card__stat:not(:last-child) {
        padding-right: 12px;
    }

    body.nkp .nkp-bs-v2-card__stat-value {
        font-size: 16px;
    }

    body.nkp .nkp-bs-v2-card__stat-label {
        font-size: 10px;
    }

    body.nkp .nkp-bs-v2-card__chuyen-sau {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Excerpt */
body.nkp .nkp-bs-v2-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    flex: 1;
}

/* Education */
body.nkp .nkp-bs-v2-card__education {
    margin-bottom: 16px;
}

body.nkp .nkp-bs-v2-card__education ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.nkp .nkp-bs-v2-card__education li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

body.nkp .nkp-bs-v2-card__education li:last-child {
    margin-bottom: 0;
}

body.nkp .nkp-bs-v2-card__education li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--fs-color-primary, #FD9300);
    font-size: 12px;
}

/* Certificates */
body.nkp .nkp-bs-v2-card__certificates {
    margin-bottom: 16px;
}

body.nkp .nkp-bs-v2-card__certificates ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.nkp .nkp-bs-v2-card__certificates li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

body.nkp .nkp-bs-v2-card__certificates li:last-child {
    margin-bottom: 0;
}

body.nkp .nkp-bs-v2-card__certificates li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--fs-color-secondary, #0426a0);
    font-size: 12px;
}

/* Button */
body.nkp .nkp-bs-v2-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--fs-color-secondary, #0426a0);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-top: auto;
}

body.nkp .nkp-bs-v2-card__button:hover {
    background: var(--fs-color-primary, #FD9300);
    transform: translateX(4px);
}

body.nkp .nkp-bs-v2-card__button i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

body.nkp .nkp-bs-v2-card__button:hover i {
    transform: translateX(4px);
}

/* ========================================
   NKP Bác sĩ V2 Card Styles
   ======================================== */

/* Modern Style (Default) */
body.nkp .nkp-bs-v2-card--modern .nkp-bs-v2-card__content {
    padding: 20px;
}

/* Minimal Style */
body.nkp .nkp-bs-v2-card--minimal {
    box-shadow: none;
    border: 1px solid #eee;
}

body.nkp .nkp-bs-v2-card--minimal:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__image {
    border-radius: 8px;
    margin: 16px;
    margin-bottom: 0;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__content {
    text-align: center;
    padding: 16px;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__title {
    margin-bottom: 4px;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__specialty {
    margin-bottom: 8px;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__education,
body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__excerpt {
    display: none;
}

body.nkp .nkp-bs-v2-card--minimal .nkp-bs-v2-card__button {
    width: 100%;
}

/* Classic Style */
body.nkp .nkp-bs-v2-card--classic {
    flex-direction: row;
    border-radius: 12px;
}

body.nkp .nkp-bs-v2-card--classic:hover {
    transform: translateY(-2px);
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__image {
    width: 140px;
    min-width: 140px;
    aspect-ratio: auto;
    align-self: stretch;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__badge {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 6px 10px;
    font-size: 10px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__content {
    padding: 16px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__title {
    font-size: 16px;
    margin-bottom: 4px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__specialty {
    font-size: 12px;
    margin-bottom: 8px;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__excerpt {
    font-size: 13px;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__education {
    display: none;
}

body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__button {
    padding: 10px 16px;
    font-size: 13px;
}

/* ========================================
   NKP Bác sĩ V2 Responsive
   ======================================== */

@media (max-width: 849px) {
    body.nkp .nkp-bs-v2-card__content {
        padding: 16px;
    }

    body.nkp .nkp-bs-v2-card__title {
        font-size: 16px;
    }

    body.nkp .nkp-bs-v2-card__excerpt {
        font-size: 13px;
    }

    body.nkp .nkp-bs-v2-card__button {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Classic responsive */
    body.nkp .nkp-bs-v2-card--classic {
        flex-direction: column;
    }

    body.nkp .nkp-bs-v2-card--classic .nkp-bs-v2-card__image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

/* ========================================
   NKP YouTube Element
   ======================================== */

body.nkp .nkp-youtube-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

body.nkp .nkp-youtube-wrapper.has-shadow .nkp-youtube-container {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

body.nkp .nkp-youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: var(--nkp-youtube-ratio, 56.25%);
    border-radius: var(--nkp-youtube-radius, 12px);
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

body.nkp .nkp-youtube-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nkp .nkp-youtube-wrapper:hover .nkp-youtube-thumb {
    transform: scale(1.03);
}

body.nkp .nkp-youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nkp .nkp-youtube-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

body.nkp .nkp-youtube-play svg {
    width: 100%;
    height: 100%;
}

body.nkp .nkp-youtube-play__bg {
    transition: fill 0.2s ease;
}

body.nkp .nkp-youtube-play:hover .nkp-youtube-play__bg {
    fill: #cc0000;
}

body.nkp .nkp-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 3;
}

body.nkp .nkp-youtube-wrapper.is-playing .nkp-youtube-iframe {
    opacity: 1;
    visibility: visible;
}

body.nkp .nkp-youtube-wrapper.is-playing .nkp-youtube-thumb,
body.nkp .nkp-youtube-wrapper.is-playing .nkp-youtube-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.nkp .nkp-youtube-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body.nkp .nkp-youtube-empty {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 549px) {
    body.nkp .nkp-youtube-play {
        width: 54px;
        height: 38px;
    }
}

/* Placeholder */
body.nkp .nkp-youtube-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    text-align: center;
}

body.nkp .nkp-youtube-placeholder__icon {
    opacity: 0.8;
}

body.nkp .nkp-youtube-placeholder__icon svg {
    width: 80px;
    height: auto;
}

body.nkp .nkp-youtube-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ========================================
   NKP Reels V2 Element
   ======================================== */

body.nkp .nkp-reels-v2-wrapper {
    position: relative;
    width: 100%;
}

body.nkp .nkp-reels-v2-swiper {
    overflow: hidden;
}

body.nkp .nkp-reels-v2-swiper .swiper-wrapper {
    align-items: stretch;
}

body.nkp .nkp-reels-v2-swiper .swiper-slide {
    height: auto;
}

body.nkp .nkp-reels-v2-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

body.nkp .nkp-reels-v2-card__video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 ratio */
    overflow: hidden;
}

body.nkp .nkp-reels-v2-card__video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.nkp .nkp-reels-v2-card:hover .nkp-reels-v2-card__video img {
    transform: scale(1.05);
}

body.nkp .nkp-reels-v2-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.nkp .nkp-reels-v2-card__placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

body.nkp .nkp-reels-v2-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

body.nkp .nkp-reels-v2-card__play i {
    font-size: 20px;
    color: #fff;
    margin-left: 3px;
}

body.nkp .nkp-reels-v2-card__play:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

body.nkp .nkp-reels-v2-card__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 3;
    background: #000;
}

body.nkp .nkp-reels-v2-card__iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

body.nkp .nkp-reels-v2-card.is-playing .nkp-reels-v2-card__iframe {
    opacity: 1;
    visibility: visible;
}

body.nkp .nkp-reels-v2-card.is-playing .nkp-reels-v2-card__play,
body.nkp .nkp-reels-v2-card.is-playing img {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
body.nkp .nkp-reels-v2-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    color: var(--fs-color-secondary, #0426a0);
}

body.nkp .nkp-reels-v2-nav:hover {
    background: var(--fs-color-secondary, #0426a0);
    color: #fff;
}

body.nkp .nkp-reels-v2-nav--prev {
    left: 0;
}

body.nkp .nkp-reels-v2-nav--next {
    right: 0;
}

body.nkp .nkp-reels-v2-nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Pagination */
body.nkp .nkp-reels-v2-pagination {
    position: relative;
    margin-top: 16px;
    display: none;
    justify-content: center;
}

body.nkp .nkp-reels-v2-wrapper.has-dots .nkp-reels-v2-pagination {
    display: flex;
}

body.nkp .nkp-reels-v2-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.2s ease;
}

body.nkp .nkp-reels-v2-pagination .swiper-pagination-bullet-active {
    background: var(--fs-color-secondary, #0426a0);
    width: 24px;
    border-radius: 5px;
}

body.nkp .nkp-reels-v2-empty {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 849px) {
    body.nkp .nkp-reels-v2-nav {
        width: 36px;
        height: 36px;
    }

    body.nkp .nkp-reels-v2-card__play {
        width: 48px;
        height: 48px;
    }

    body.nkp .nkp-reels-v2-card__play i {
        font-size: 16px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-reels-v2-nav {
        display: none;
    }

    body.nkp .nkp-reels-v2-card {
        border-radius: 8px;
    }
}

/* ========================================
   NKP FAQ Element
   ======================================== */

/* FAQ Container */
body.nkp .nkp-faq {
    width: 100%;
}

body.nkp .nkp-faq__items {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* FAQ Item */
body.nkp .nkp-faq-item {
    background: #fff;
    border-radius: 0;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.nkp .nkp-faq-item:last-child {
    border-bottom: none;
}

/* FAQ Header */
body.nkp .nkp-faq-item__header {
    /* Reset all button styles */
    all: unset;
    box-sizing: border-box;

    /* Layout */
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    gap: 16px;

    /* Appearance */
    background: transparent;
    background-color: transparent;
    background-image: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;

    /* Typography */
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    color: inherit;

    /* Interaction */
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Transition */
    transition: background-color 0.2s ease;
}

body.nkp .nkp-faq-item__header:hover,
body.nkp .nkp-faq-item__header:focus {
    background: #fafafa;
    background-color: #fafafa;
    outline: none;
    box-shadow: none;
}

body.nkp .nkp-faq-item__header:active {
    background: #f5f5f5;
    background-color: #f5f5f5;
}

body.nkp .nkp-faq-item__question {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
    line-height: 1.5;
}

/* FAQ Icon - Clean style with simple chevron */
body.nkp .nkp-faq-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
}

body.nkp .nkp-faq-item__icon-open {
    display: flex;
}

body.nkp .nkp-faq-item__icon-close {
    display: none;
}

body.nkp .nkp-faq-item--open .nkp-faq-item__icon-open {
    display: none;
}

body.nkp .nkp-faq-item--open .nkp-faq-item__icon-close {
    display: flex;
}

body.nkp .nkp-faq-item--open .nkp-faq-item__icon {
    color: var(--fs-color-secondary, #0426a0);
    transform: rotate(180deg);
}

/* FAQ Body */
body.nkp .nkp-faq-item__body {
    overflow: hidden;
    transition: all 0.3s ease;
}

body.nkp .nkp-faq-item__body[hidden] {
    display: none;
}

body.nkp .nkp-faq-item__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

body.nkp .nkp-faq-item__answer p {
    margin: 0 0 12px;
}

body.nkp .nkp-faq-item__answer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   NKP FAQ Responsive
   ======================================== */

@media (max-width: 549px) {
    body.nkp .nkp-faq-item__header {
        padding: 16px 20px;
        gap: 12px;
    }

    body.nkp .nkp-faq-item__question {
        font-size: 15px;
    }

    body.nkp .nkp-faq-item__icon {
        font-size: 14px;
    }

    body.nkp .nkp-faq-item__answer {
        padding: 0 20px 16px;
        font-size: 14px;
    }
}

/* ========================================
   NKP Bảng Giá Element
   ======================================== */

body.nkp .nkp-bang-gia {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
body.nkp .nkp-bang-gia__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
}

body.nkp .nkp-bang-gia__col {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

body.nkp .nkp-bang-gia__col--original,
body.nkp .nkp-bang-gia__col--discount {
    text-align: center;
}

/* Body */
body.nkp .nkp-bang-gia__body {
    display: flex;
    flex-direction: column;
}

/* Item */
body.nkp .nkp-bang-gia-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 20px 24px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

body.nkp .nkp-bang-gia-item:last-child {
    border-bottom: none;
}

body.nkp .nkp-bang-gia-item:hover {
    background: #fafafa;
}

/* Service column */
body.nkp .nkp-bang-gia-item__col--service {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.nkp .nkp-bang-gia-item__service {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
    line-height: 1.4;
}

body.nkp .nkp-bang-gia-item__description {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Original price column - desktop only */
body.nkp .nkp-bang-gia-item__col--original {
    text-align: center;
}

body.nkp .nkp-bang-gia-item__original-price {
    font-size: 15px;
    color: #888;
    text-decoration: line-through;
}

/* Mobile original price - hidden on desktop */
body.nkp .nkp-bang-gia-item__original-mobile {
    display: none;
}

/* Discount column */
body.nkp .nkp-bang-gia-item__col--discount {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

body.nkp .nkp-bang-gia-item__sale-price {
    font-size: 24px;
    font-weight: 700;
    color: #FD9300;
    line-height: 1.2;
}

body.nkp .nkp-bang-gia-item__savings {
    font-size: 13px;
    font-weight: 500;
    color: #FD9300;
    font-style: italic;
}

/* Free item style */
body.nkp .nkp-bang-gia-item--free .nkp-bang-gia-item__sale-price {
    color: #00a64c;
    font-size: 22px;
}

body.nkp .nkp-bang-gia-item--free .nkp-bang-gia-item__savings {
    color: #00a64c;
}

/* ========================================
   NKP Bảng Giá Styles
   ======================================== */

/* Bordered Style */
body.nkp .nkp-bang-gia--bordered {
    box-shadow: none;
    border: 2px solid #f0f0f0;
}

body.nkp .nkp-bang-gia--bordered .nkp-bang-gia-item {
    border-bottom: 2px solid #f0f0f0;
}

/* ========================================
   NKP Bảng Giá Responsive
   ======================================== */

@media (max-width: 849px) {

    /* Header: hide GIÁ GỐC column */
    body.nkp .nkp-bang-gia__header {
        grid-template-columns: 1fr 1fr;
        padding: 14px 20px;
    }

    body.nkp .nkp-bang-gia__col--original {
        display: none;
    }

    /* Item: 2 columns layout */
    body.nkp .nkp-bang-gia-item {
        grid-template-columns: 1fr 1fr;
        padding: 16px 20px;
    }

    body.nkp .nkp-bang-gia-item__col--original {
        display: none;
    }

    /* Show original price below service name on mobile */
    body.nkp .nkp-bang-gia-item__original-mobile {
        display: block;
        order: 1;
    }

    body.nkp .nkp-bang-gia-item__original-mobile .nkp-bang-gia-item__original-price {
        font-size: 14px;
    }

    body.nkp .nkp-bang-gia-item__description {
        order: 2;
    }

    body.nkp .nkp-bang-gia-item__service {
        font-size: 15px;
    }

    body.nkp .nkp-bang-gia-item__sale-price {
        font-size: 20px;
    }

    body.nkp .nkp-bang-gia-item--free .nkp-bang-gia-item__sale-price {
        font-size: 18px;
    }

    body.nkp .nkp-bang-gia-item__savings {
        font-size: 12px;
    }
}

@media (max-width: 549px) {
    body.nkp .nkp-bang-gia {
        border-radius: 12px;
    }

    body.nkp .nkp-bang-gia__header {
        padding: 12px 16px;
    }

    body.nkp .nkp-bang-gia__col {
        font-size: 12px;
    }

    body.nkp .nkp-bang-gia-item {
        padding: 14px 16px;
        gap: 12px;
    }

    body.nkp .nkp-bang-gia-item__service {
        font-size: 14px;
    }

    body.nkp .nkp-bang-gia-item__description {
        font-size: 13px;
    }

    body.nkp .nkp-bang-gia-item__sale-price {
        font-size: 18px;
    }

    body.nkp .nkp-bang-gia-item--free .nkp-bang-gia-item__sale-price {
        font-size: 16px;
    }

    body.nkp .nkp-bang-gia-item__savings {
        font-size: 11px;
    }
}

/* ========================================
   Footer Section Styles
   ======================================== */

/* Footer License List */
body.nkp .footer-license-list {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.6;
}

body.nkp .footer-license-list li {
    margin-bottom: 4px;
}

body.nkp .footer-license-list li::marker {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Copyright */
body.nkp .footer-copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Payment Section */
body.nkp .footer-payment-label {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

body.nkp .footer-payment-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

body.nkp .footer-payment-icons .payment-icon {
    height: 24px;
    width: auto;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}

body.nkp .footer-payment-icons .dmca-badge img {
    height: 28px;
    width: auto;
}

/* Footer Menu Title Override */
body.nkp [class*="dark"] .ux_menu_title,
body.nkp .dark .ux_menu_title {
    color: var(--fs-color-primary, #FD9300);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: none;
    padding-bottom: 0;
}

/* Footer Menu Links Override */
body.nkp [class*="dark"] .ux_menu .ux_menu_link,
body.nkp .dark .ux_menu .ux_menu_link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease;
}

body.nkp [class*="dark"] .ux_menu .ux_menu_link:hover,
body.nkp .dark .ux_menu .ux_menu_link:hover {
    color: var(--fs-color-primary, #FD9300);
}

body.nkp [class*="dark"] .ux_menu .ux_menu_link:last-child,
body.nkp .dark .ux_menu .ux_menu_link:last-child {
    border-bottom: none;
}

body.nkp [class*="dark"] .ux_menu .ux_menu_link i,
body.nkp .dark .ux_menu .ux_menu_link i {
    color: var(--fs-color-primary, #FD9300);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Footer Divider */
body.nkp [class*="dark"] .divider,
body.nkp .dark .divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Footer Responsive */
@media (max-width: 849px) {
    body.nkp .footer-payment-icons {
        justify-content: flex-start;
        margin-top: 16px;
    }

    body.nkp .footer-payment-label {
        text-align: left;
    }

    body.nkp .footer-copyright {
        text-align: center;
        margin-bottom: 16px;
    }

    body.nkp .footer-license-list {
        text-align: left;
    }
}

@media (max-width: 549px) {
    body.nkp .footer-payment-icons .payment-icon {
        height: 20px;
    }

    body.nkp .footer-payment-icons .dmca-badge img {
        height: 24px;
    }
}

/* ========================================
   Floating Contact Bar (Fixed Right Sidebar)
   ======================================== */

/* Sound Wave Pulse Animation */
@keyframes nkp-sound-wave {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 147, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(253, 147, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 147, 0, 0);
    }
}

@keyframes nkp-phone-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

body.nkp .nkp-floating-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 64px;
    z-index: 9999;
    /* Always visible */
    opacity: 1;
    visibility: visible;
}

/* Reset Flatsome overrides */
body.nkp .nkp-floating-contact,
body.nkp .nkp-floating-contact * {
    box-sizing: border-box;
    margin: 0;
    list-style: none;
}

body.nkp .nkp-floating-contact a,
body.nkp .nkp-floating-contact a:hover,
body.nkp .nkp-floating-contact a:focus,
body.nkp .nkp-floating-contact a:active {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* Scroll to Top Button */
body.nkp .nkp-floating-contact__scroll-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    width: 64px;
    height: 40px;
    background: var(--fs-color-primary, #FD9300);
    border: none;
    border-radius: 16px 0 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--fs-color-secondary, #0426A0);
}

body.nkp .nkp-floating-contact__scroll-top:hover {
    background: #e58600;
}

body.nkp .nkp-floating-contact__scroll-top svg {
    width: 28px;
    height: 28px;
}

body.nkp .nkp-floating-contact__scroll-top i {
    font-size: 22px;
}

/* Contact Icons Container */
body.nkp .nkp-floating-contact__icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
    background: var(--fs-color-secondary, #0426A0);
    border-radius: 0 0 0 16px;
}

/* Contact Item */
body.nkp .nkp-floating-contact__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

body.nkp .nkp-floating-contact__item:hover {
    transform: scale(1.15);
}

body.nkp .nkp-floating-contact__item i {
    font-size: 28px;
    color: #fff;
}

body.nkp .nkp-floating-contact__item svg,
body.nkp .nkp-floating-contact__item img {
    width: 32px;
    height: 32px;
}

/* Phone Sound Wave Animation */
body.nkp .nkp-floating-contact__item--phone {
    position: relative;
    border-radius: 50%;
    animation: nkp-sound-wave 2s infinite;
}

body.nkp .nkp-floating-contact__item--phone i {
    animation: nkp-phone-ring 2s infinite;
    animation-delay: 0.5s;
}

body.nkp .nkp-floating-contact__item--phone:hover {
    animation: none;
}

body.nkp .nkp-floating-contact__item--phone:hover i {
    animation: none;
}

/* Divider */
body.nkp .nkp-floating-contact__divider {
    display: block;
    width: 32px;
    height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Zalo Icon */
body.nkp .nkp-floating-contact__item--zalo img {
    border-radius: 4px;
}

/* Messenger Icon - uses gradient in SVG */

/* Mobile Responsive */
@media (max-width: 549px) {
    body.nkp .nkp-floating-contact {
        width: 56px;
    }

    body.nkp .nkp-floating-contact__scroll-top {
        width: 56px;
        height: 36px;
        padding: 6px 12px;
    }

    body.nkp .nkp-floating-contact__scroll-top svg {
        width: 24px;
        height: 24px;
    }

    body.nkp .nkp-floating-contact__scroll-top i {
        font-size: 20px;
    }

    body.nkp .nkp-floating-contact__icons {
        padding: 14px;
        gap: 14px;
    }

    body.nkp .nkp-floating-contact__item {
        width: 28px;
        height: 28px;
    }

    body.nkp .nkp-floating-contact__item i {
        font-size: 22px;
    }

    body.nkp .nkp-floating-contact__item svg,
    body.nkp .nkp-floating-contact__item img {
        width: 28px;
        height: 28px;
    }

    body.nkp .nkp-floating-contact__divider {
        width: 28px;
    }
}

/* ========================================
   Mobile Sidebar Menu Styles
   ======================================== */

/* Mobile Sidebar Container */
body.nkp .mobile-sidebar,
body.nkp #main-menu.mobile-sidebar {
    background-color: rgb(0, 12, 36) !important;
    color: #fff !important;
}

/* Sidebar Menu Container */
body.nkp .mobile-sidebar .sidebar-menu {
    background-color: transparent !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
}

/* Nav Container */
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Search Form */
body.nkp .mobile-sidebar .header-search-form {
    padding: 15px 0 !important;
    border-bottom: none !important;
}

body.nkp .mobile-sidebar .searchform-wrapper {
    background-color: transparent !important;
}

body.nkp .mobile-sidebar .search-field {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 10px 0 !important;
    height: auto !important;
}

body.nkp .mobile-sidebar .search-field::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

body.nkp .mobile-sidebar .search-field:focus {
    border-bottom-color: var(--fs-color-primary, #FD9300) !important;
}

body.nkp .mobile-sidebar .ux-search-submit {
    background-color: transparent !important;
    border: none !important;
    color: #fff !important;
}

body.nkp .mobile-sidebar .ux-search-submit:hover {
    color: var(--fs-color-primary, #FD9300) !important;
}

/* Menu Items */
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item {
    border-top: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item+li.menu-item {
    border-top: none !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>a {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 16px 0 !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: color 0.2s ease !important;
}

/* Hide 'Trang chủ' text - only show icon */
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item-home>a,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item.has-icon-left:first-child>a {
    font-size: 0 !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item-home>a>i,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item.has-icon-left:first-child>a>i {
    font-size: 24px !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>a:hover {
    color: var(--fs-color-primary, #FD9300) !important;
    background-color: transparent !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item.active>a,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item:hover>a {
    background-color: transparent !important;
}

/* Home Icon - Calendar/House Icon */
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item.has-icon-left>a>i,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>a>i {
    color: var(--fs-color-primary, #FD9300) !important;
    font-size: 24px !important;
    width: 28px !important;
    text-align: center !important;
}

/* Toggle/Dropdown Arrow */
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item .toggle {
    color: #fff !important;
    opacity: 1 !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item .toggle i {
    color: #fff !important;
}

/* Submenu */
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>.sub-menu,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>ul.children {
    background-color: rgba(255, 255, 255, 0.05) !important;
    padding: 10px 0 !important;
    margin: 0 !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>.sub-menu>li>a,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>ul.children>li>a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    text-transform: none !important;
}

body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>.sub-menu>li>a:hover,
body.nkp .mobile-sidebar .nav-sidebar.nav-vertical>li.menu-item>ul.children>li>a:hover {
    color: var(--fs-color-primary, #FD9300) !important;
}

/* Mobile Menu Footer - Contact Info */
body.nkp .mobile-sidebar .nkp-mobile-menu-footer {
    margin-top: auto !important;
    padding: 30px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hours {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hours-icon {
    color: var(--fs-color-primary, #FD9300) !important;
    font-size: 32px !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hours-icon i {
    color: var(--fs-color-primary, #FD9300) !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hours-text {
    display: flex !important;
    flex-direction: column !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hours-time {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2 !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hours-days {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hotline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 24px !important;
    border: 2px solid var(--fs-color-primary, #FD9300) !important;
    border-radius: 8px !important;
    color: var(--fs-color-primary, #FD9300) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hotline:hover {
    background-color: var(--fs-color-primary, #FD9300) !important;
    color: #fff !important;
}

body.nkp .mobile-sidebar .nkp-mobile-menu-footer__hotline i {
    font-size: 24px !important;
}

/* Off-canvas overlay */
body.nkp .mfp-bg {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Dark theme overrides for mobile */
body.nkp .dark .mobile-sidebar,
body.nkp .mobile-sidebar.dark {
    background-color: rgb(0, 12, 36) !important;
}