:root {
    --hdr-blue-700: #0648b8;
    --hdr-blue-600: #0969e8;
    --hdr-blue-100: #eaf3ff;
    --hdr-ink: #024492;
    --hdr-muted: #617792;
    --hdr-line: #dfe8f3;
    --hdr-surface: #fff;
    --hdr-soft: #f4f8fd;
    --hdr-primary: var(--hdr-blue-600);
    --hdr-radius-sm: 10px;
    --hdr-radius-md: 18px;
    --hdr-shadow: 0 20px 55px rgba(8, 45, 92, .14);
    --hdr-focus: 0 0 0 3px rgba(9, 105, 232, .18)
}

.site-header {
    position: sticky;
    z-index: 90;
    top: 0;
    background: var(--hdr-surface);
    color: var(--hdr-ink);
    box-shadow: 0 4px 20px rgba(18, 54, 100, .07);
    transition: box-shadow .3s ease, background-color .3s ease
}

.site-header:before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94));
    content: "";
    opacity: 0;
    transition: opacity .3s ease
}

.site-header.is-scrolled {
    box-shadow: 0 12px 32px rgba(9, 48, 99, .14)
}

.site-header.is-scrolled:before {
    opacity: 1
}

.site-header .site-logo img,
.site-header .header-search,
.site-header .header-phone,
.site-header .header-quote,
.site-header .nav-toggle,
.site-header .mobile-header-phone {
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease
}

.site-header.is-scrolled .site-logo img {
    transform: scale(.95)
}

.site-header.is-scrolled .header-search {
    transform: scale(.985)
}

.admin-bar .site-header {
    top: 32px
}

@media(max-width:782px) {
    .admin-bar .site-header {
        top: 46px
    }
}

.header-main {
    height: 88px
}

.header-main__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px
}

.site-logo {
    display: flex;
    flex: 0 0 235px
}

.site-logo img {
    display: block;
    width: auto;
    max-width: 235px;
    max-height: 62px
}

.primary-nav {
    
    height: 100%
}

.tsl-menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none
}

.tsl-menu li {
    height: 100%;
    display: flex;
    align-items: center
}

.tsl-menu a,
.mega-toggle {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--hdr-radius-sm);
    background: transparent;
    color: var(--hdr-ink);
    font: 800 15px/1 var(--tsl-font-heading);
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s, background .2s, transform .2s
}

.tsl-menu a:hover,
.mega-toggle:hover,
.mega-toggle:focus-visible,
.site-header.mega-open .mega-toggle {
    color: var(--hdr-primary);
    background: var(--hdr-blue-100)
}

.chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s
}

.mega-open .chevron {
    transform: rotate(225deg)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.header-search {
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 28px;
    background: var(--hdr-soft);
    transition: .2s
}

.header-search:focus-within {
    background: #fff;
    border-color: #a9cdf8;
    box-shadow: var(--hdr-focus)
}

.header-search input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 4px 0 20px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--hdr-ink)
}

.header-search button {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--hdr-primary);
    cursor: pointer
}

.header-search svg {
    width: 23px
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
        transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.header-phone>svg {
    width: 45px;
    height: 45px;
    padding: 10px;
    border-radius: 50%;
    background: var(--hdr-blue-100);
    color: #fff;
        transform: rotate(-8deg) scale(1.08);
    background: #EF3F3F;
    box-shadow: 0 7px 18px rgba(7, 101, 216, .2);
    animation: headerPhoneRing .48s ease-in-out infinite;
}

.header-phone span {
    display: flex;
    flex-direction: column
}

.header-phone small {
    font-size: 15px
}

.header-phone strong {
    color: var(--hdr-blue-700);
    font-size: 17px;
        font-family: var(--tsl-font-heading);
    font-weight: 800;
}

.header-quote {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    border-radius: 28px;
    background: linear-gradient(120deg, var(--hdr-blue-700), var(--hdr-blue-600));
    color: #fff;
    font-weight: 750;
    box-shadow: 0 9px 22px rgba(8, 87, 202, .22);
    transition: .2s;
    animation: phone-pulse 2.4s infinite;
}

.header-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(8, 87, 202, .3)
}

.header-quote svg {
    width: 18px
}

.nav-toggle {
    display: none
}

.tsl-mega-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    padding: 0 22px 22px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    background: linear-gradient(#f4f8ff, #fbfdff);
    transition: opacity .2s, transform .28s, visibility .2s
}

.mega-open .tsl-mega-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none
}

.mega-shell {
    width: min(1810px, 100%);
    margin: auto;
    padding: 12px;
    border: 1px solid var(--hdr-line);
    border-radius: 0 0 15px 15px;
    background: #fff;
    box-shadow: var(--hdr-shadow)
}

.mega-main {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 355px;
    min-height: 555px
}

.mega-categories {
    border-right: 1px solid var(--hdr-line)
}

.mega-categories a {
    height: 52px;
    display: grid;
    grid-template-columns: 34px 1fr 17px;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-bottom: 1px solid var(--hdr-line);
    color: var(--hdr-ink);
    font-size: 15px;
    transition: color .18s, background .18s, padding .18s
}

.mega-categories a:hover,
.mega-categories a:focus-visible,
.mega-categories a.is-active {
    padding-left: 24px;
    color: var(--hdr-primary);
    background: linear-gradient(90deg, #e6f1ff, #f5f9ff);
    box-shadow: inset 4px 0 var(--hdr-primary)
}

.mega-categories a>svg {
    width: 16px
}

.mega-category-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--hdr-primary)
}

.mega-category-icon svg,
.mega-category-image {
    width: 25px;
    height: 25px;
    object-fit: contain
}

.mega-content {
    position: relative;
    min-width: 0
}

.mega-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .2s, transform .25s, visibility .2s
}

.mega-panel.is-active {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: none
}

.mega-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px 15px 0
}

.mega-column {
    min-width: 0;
    padding: 0 14px;
    border-right: 1px solid var(--hdr-line)
}

.mega-column:last-child {
    border: 0
}

.mega-column__image {
    display: block;
    overflow: hidden;
    border-radius: 9px;
    background: var(--hdr-soft)
}

.mega-column__image img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    transition: transform .4s
}

.mega-column__image:hover img {
    transform: scale(1.045)
}

.mega-column h2 {
    margin: 14px 4px 10px;
    font-size: 17px;
    line-height: 1.3
}

.mega-column h2 a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--hdr-blue-700)
}

.mega-column h2 svg {
    width: 17px
}

.mega-column ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.mega-column li {
    border-bottom: 1px solid var(--hdr-line)
}

.mega-column li a {
    display: block;
    padding: 11px 4px;
    color: #263d61;
    font-size: 15px;
    transition: .18s
}

.mega-column li a:hover {
    padding-left: 9px;
    color: var(--hdr-primary)
}

.mega-utilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-top: auto;
    padding: 15px 28px 0
}

.mega-utilities>a {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5f9ff, #eaf3ff);
    color: var(--hdr-blue-700);
    transition: .2s
}

.mega-utilities>a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 76, 151, .12)
}

.mega-utilities>a>svg {
    width: 34px;
    flex: none
}

.mega-utilities>a>svg:last-child {
    width: 16px;
    margin-left: auto
}

.mega-utilities span {
    display: flex;
    flex-direction: column;
    color: var(--hdr-muted);
    font-size: 15px
}

.mega-utilities strong {
    color: var(--hdr-blue-700);
    font-size: 15px;
    line-height: 1.35
}

.mega-promo {
    position: relative;
    overflow: hidden;
    margin-left: 4px;
    border-radius: 11px;
    background: #ddebfa
}

.mega-promo>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mega-promo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(239, 247, 255, .98), rgba(234, 245, 255, .8) 50%, transparent 78%)
}

.mega-promo__copy {
    position: relative;
    z-index: 2;
    padding: 38px 30px
}

.mega-promo__copy>span {
    color: var(--hdr-primary);
    font-size: 18px;
    font-weight: 750
}

.mega-promo h2 {
    margin: 22px 0 12px;
    color: var(--hdr-blue-700);
    font-size: 27px;
    line-height: 1.22
}

.mega-promo p {
    color: #27486f;
    font-size: 15px
}

.mega-promo a {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border: 1.5px solid var(--hdr-primary);
    border-radius: 25px;
    color: var(--hdr-primary);
    font-weight: 750
}

.mega-promo a:hover {
    background: var(--hdr-primary);
    color: #fff
}

.mega-promo a svg {
    width: 17px
}

.mega-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
    padding: 20px 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f7faff, #edf4fc)
}

.mega-benefits>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid #cdd9e8
}

.mega-benefits>div:last-child {
    border: 0
}

.mega-benefits svg {
    width: 36px;
    color: var(--hdr-primary)
}

.mega-benefits span {
    display: flex;
    flex-direction: column;
    color: var(--hdr-muted);
    font-size: 15px
}

.mega-benefits strong {
    color: var(--hdr-ink);
    font-size: 15px
}

.mobile-drawer,
.drawer-backdrop {
    display: none
}
@media(max-width:1770px) {
    .tsl-menu a, .mega-toggle{
        font-size: 14px;
        padding: 10px;
    }
    .header-main__inner{
        gap: 10px;
    }
}
@media(max-width:1635px) {
    .site-logo{
            flex: 0 0 195px;
    }
    .site-logo img{
        max-width: 195px;
    }
    .header-search{
        width: 200px;
    }
    .header-main__inner{
        width: 100%;
    }
}
@media(max-width:1500px) {
    .header-quote{
        display: none;
    }
    .header-main__inner {
        gap: 14px
    }

    .site-logo {
        flex-basis: 185px
    }

    .site-logo img {
        max-width: 185px
    }

    .tsl-menu a,
    .mega-toggle {
        padding: 0 10px;
        font-size: 15px
    }

    .header-search {
        width: 255px
    }

    .header-actions {
        gap: 9px
    }

    .header-quote {
        padding: 0 18px
    }

    .mega-main {
        grid-template-columns: 270px minmax(0, 1fr) 310px
    }

    .mega-column__image img {
        height: 145px
    }

    .mega-promo h2 {
        font-size: 23px
    }
}
@media(max-width:1300px) {
    .header-phone span {
        display: none
    }
}

@media(max-width:1200px) {
    

    .header-search {
        width: 215px
    }

    .mega-main {
        grid-template-columns: 250px minmax(0, 1fr)
    }

    .mega-promo {
        display: none
    }

    .mega-column {
        padding-inline: 9px
    }

    .mega-utilities {
        padding-inline: 20px
    }
}

@media(max-width:1024px) {
    body.menu-open {
        overflow: hidden
    }

    .header-main {
        height: 70px
    }

    .header-main__inner {
        justify-content: space-between
    }

    .site-logo {
        flex-basis: auto
    }

    .site-logo img {
        max-width: 176px
    }

    .primary-nav,
    .header-actions {
        display: none
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        border: 0;
        background: transparent;
        color: var(--hdr-ink)
    }

    .nav-toggle svg {
        width: 27px
    }

    .tsl-mega-menu {
        display: none
    }

    .drawer-backdrop {
        display: block;
        position: fixed;
        z-index: 100;
        inset: 0;
        background: rgba(4, 20, 43, .78);
        opacity: 0;
        visibility: hidden;
        transition: .25s
    }

    .mobile-drawer {
        display: block;
        position: fixed;
        z-index: 101;
        inset: 0 auto 0 0;
        width: min(780px, 92vw);
        overflow-y: auto;
        background: #fff;
        transform: translateX(-103%);
        transition: transform .32s cubic-bezier(.22, .8, .25, 1)
    }

    .menu-open .drawer-backdrop {
        opacity: 1;
        visibility: visible
    }

    .menu-open .mobile-drawer {
        transform: none
    }

    .drawer-hero {
        position: relative;
        min-height: 240px;
        padding: 32px 64px;
        background: radial-gradient(circle at 75% 30%, #d4ebff, transparent 45%), linear-gradient(135deg, #fff, #eff8ff)
    }

    .drawer-hero img {
        width: min(360px, 60%);
        height: auto
    }

    .drawer-hero p {
        color: #516b8e;
        font-size: 22px;
        font-weight: 650;
        line-height: 1.35
    }

    .drawer-close {
        position: absolute;
        top: 30px;
        right: 34px;
        width: 50px;
        height: 50px;
        border: 0;
        background: transparent;
        color: var(--hdr-ink)
    }

    .drawer-close svg {
        width: 36px
    }

    .drawer-body {
        padding: 16px 30px 36px
    }

    .drawer-search {
        height: 78px;
        display: grid;
        grid-template-columns: 54px 1fr 54px;
        align-items: center;
        padding: 0 20px;
        border-radius: 40px;
        background: var(--hdr-soft)
    }

    .drawer-search>svg {
        width: 30px
    }

    .drawer-search input {
        min-width: 0;
        border: 0;
        outline: 0;
        background: transparent;
        font-size: 20px
    }

    .drawer-search button {
        border: 0;
        background: transparent;
        color: var(--hdr-ink)
    }

    .drawer-search button svg {
        width: 28px
    }

    .drawer-nav {
        margin: 16px 24px 22px 24px;
        border: 1px solid var(--hdr-line);
        border-radius: 16px
    }

    .drawer-nav a {
        min-height: 88px;
        display: grid;
        grid-template-columns: 92px 1fr 30px;
        align-items: center;
        border-bottom: 1px solid var(--hdr-line);
        color: var(--hdr-ink)
    }

    .drawer-nav a:last-child {
        border: 0
    }

    .drawer-nav i {
        width: 72px;
        height: 72px;
        display: grid;
        place-items: center;
        margin-left: -28px;
        border-radius: 16px;
        background: linear-gradient(135deg, #eef8ff, #ddecfb);
        color: var(--hdr-primary)
    }

    .drawer-nav i svg {
        width: 36px
    }

    .drawer-nav>a>svg {
        width: 22px
    }

    .drawer-nav strong {
        font-size: 23px
    }

    .drawer-hotline {
        min-height: 148px;
        display: grid;
        grid-template-columns: 115px 1fr 26px;
        align-items: center;
        padding: 15px 28px;
        border-radius: 16px;
        background: linear-gradient(115deg, #eef8ff, #dfefff);
        color: var(--hdr-ink)
    }

    .drawer-hotline>svg:first-child {
        width: 82px;
        height: 82px;
        padding: 18px;
        border: 2px solid #fff;
        border-radius: 50%;
        color: var(--hdr-primary)
    }

    .drawer-hotline>svg:last-child {
        color: var(--hdr-primary)
    }

    .drawer-hotline span {
        display: flex;
        flex-direction: column;
        color: var(--hdr-muted);
        font-size: 21px
    }

    .drawer-hotline strong {
        color: var(--hdr-primary);
        font-size: 30px
    }

    .drawer-hotline small {
        font-size: 18px
    }

    .drawer-tools {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin: 22px 0
    }

    .drawer-tools a {
        min-height: 180px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 13px;
        text-align: center;
        border-radius: 16px;
        background: linear-gradient(145deg, #f7fbff, #e7f3ff);
        color: var(--hdr-ink)
    }

    .drawer-tools svg {
        width: 42px;
        color: var(--hdr-primary)
    }

    .drawer-tools strong {
        margin-top: 14px;
        font-size: 18px
    }

    .drawer-tools small {
        color: var(--hdr-muted);
        font-size: 16px
    }

    .drawer-promo {
        position: relative;
        display: block;
        overflow: hidden;
        min-height: 285px;
        border-radius: 18px;
        background: #063d91;
        color: #fff
    }

    .drawer-promo img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .drawer-promo:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(3, 42, 100, .96), rgba(5, 65, 151, .55), transparent)
    }

    .drawer-promo span {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 60%;
        padding: 38px
    }

    .drawer-promo strong {
        font-size: 27px
    }

    .drawer-promo small {
        font-size: 19px
    }

    .drawer-promo b {
        width: max-content;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 13px 22px;
        border: 1px solid #fff;
        border-radius: 28px
    }

    .drawer-promo svg {
        width: 18px
    }
}

@media(max-width:600px) {
    .header-main {
        height: 64px
    }

    .site-logo img {
        max-width: 148px
    }

    .mobile-drawer {
        width: 94vw
    }

    .drawer-hero {
        min-height: 150px;
        padding: 24px 30px
    }

    .drawer-hero img {
        max-width: 220px
    }

    .drawer-hero p {
        font-size: 15px
    }

    .drawer-close {
        top: 18px;
        right: 16px
    }

    .drawer-body {
        padding: 12px 16px 24px
    }

    .drawer-search {
        height: 58px;
        grid-template-columns: 40px 1fr 36px;
        padding: 0 14px
    }

    .drawer-search input {
        font-size: 15px
    }

    .drawer-search>svg {
        width: 23px
    }

    .drawer-nav {
        margin: 14px 12px 18px 24px
    }

    .drawer-nav a {
        min-height: 68px;
        grid-template-columns: 66px 1fr 24px
    }

    .drawer-nav i {
        width: 54px;
        height: 54px;
        margin-left: -23px;
        border-radius: 13px
    }

    .drawer-nav i svg {
        width: 27px
    }

    .drawer-nav strong {
        font-size: 17px
    }

    .drawer-hotline {
        min-height: 105px;
        grid-template-columns: 76px 1fr 20px;
        padding: 12px 18px
    }

    .drawer-hotline>svg:first-child {
        width: 60px;
        height: 60px
    }

    .drawer-hotline span {
        font-size: 15px
    }

    .drawer-hotline strong {
        font-size: 22px
    }

    .drawer-hotline small {
        font-size: 15px
    }

    .drawer-tools {
        gap: 7px;
        margin: 16px 0
    }

    .drawer-tools a {
        min-height: 125px;
        padding: 8px 4px
    }

    .drawer-tools svg {
        width: 29px
    }

    .drawer-tools strong {
        font-size: 15px
    }

    .drawer-tools small {
        font-size: 15px
    }

    .drawer-promo {
        min-height: 205px
    }

    .drawer-promo span {
        gap: 12px;
        width: 67%;
        padding: 25px
    }

    .drawer-promo strong {
        font-size: 19px
    }

    .drawer-promo small {
        font-size: 15px
    }

    .drawer-promo b {
        padding: 10px 15px;
        font-size: 15px
    }
}

@media(prefers-reduced-motion:reduce) {
    .site-header * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

.header-main__inner {
    width: min(1810px, calc(100% - 44px))
}

@media(max-width:1024px) {
    .drawer-hero {
        background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0 45%, rgba(255, 255, 255, .12) 82%), url('/wp-content/uploads/2025/12/san-pham-man-hinh-quang-cao-chan-dung-smartretail.webp') center right/56% 100% no-repeat, #eff8ff
    }
}

@media(max-width:600px) {
    .header-main__inner {
        width: min(100% - 24px, 1810px)
    }
}

@media(max-width:1024px) {
    .drawer-nav>a.has-children>svg {
        transition: transform .28s ease
    }

    .drawer-nav>a.has-children[aria-expanded="true"]>svg {
        transform: rotate(90deg)
    }

    .drawer-submenu {
        display: grid;
        grid-template-rows: 0fr;
        padding: 0 24px 0 66px;
        border-bottom: 1px solid var(--hdr-line);
        background: #f8fbff;
        opacity: 0;
        overflow: hidden;
        transition: grid-template-rows .32s ease, opacity .25s ease, padding .32s ease
    }

    .drawer-submenu:before {
        content: "";
        min-height: 0
    }

    .drawer-submenu.is-open {
        grid-template-rows: 1fr;
        padding-top: 8px;
        padding-bottom: 10px;
        opacity: 1
    }

    .drawer-submenu a {
        min-height: 0 !important;
        display: block !important;
        padding: 10px 12px !important;
        border: 0 !important;
        border-radius: 8px;
        color: #34577f !important;
        font-size: 15px;
        line-height: 1.35;
        transform: translateY(-4px);
        opacity: 0;
        transition: background .2s, color .2s, transform .28s, opacity .25s
    }

    .drawer-submenu.is-open a {
        transform: none;
        opacity: 1
    }

    .drawer-submenu a:hover,
    .drawer-submenu a:focus-visible {
        background: var(--hdr-blue-100);
        color: var(--hdr-primary) !important
    }
}

@media(max-width:600px) {
    .drawer-submenu {
        padding-left: 42px
    }

    .drawer-submenu.is-open {
        padding-top: 6px;
        padding-bottom: 8px
    }

    .drawer-submenu a {
        padding: 9px 10px !important;
        font-size: 15px
    }
}

@media(max-width:1024px) {
    .drawer-submenu {
        display: block;
        max-height: 0;
        transition: max-height .35s ease, opacity .25s ease, padding .35s ease
    }

    .drawer-submenu.is-open {
        max-height: 680px
    }
}

/* Compact mobile header and illustrated drawer submenu */
.mobile-header-phone,
.mobile-header-search {
    display: none
}

@media(max-width:1024px) {
    .header-main {
        height: auto;
        padding: 10px 0 13px
    }

    .header-main__inner {
        height: 62px
    }

    .site-logo img {
        max-width: 245px;
        max-height: 54px
    }

    .mobile-header-phone {
        position: relative;
        display: grid;
        place-items: center;
        width: 52px;
        height: 52px;
        margin-left: auto;
        border-radius: 50%;
        background: #f0f6ff;
        color: #08367d
    }

    .mobile-header-phone svg {
        width: 27px;
        height: 27px
    }

    .mobile-header-phone i {
        position: absolute;
        top: 7px;
        right: 7px;
        width: 10px;
        height: 10px;
        border: 2px solid #fff;
        border-radius: 50%;
        background: #076df2
    }

    .nav-toggle {
        width: 56px;
        height: 56px;
        border-radius: 15px;
        background: linear-gradient(145deg, #0875f5, #035bd5);
        color: #fff;
        box-shadow: 0 8px 18px rgba(4, 95, 216, .24)
    }

    .nav-toggle svg {
        width: 29px;
        height: 29px
    }

    .mobile-header-search {
        width: min(100% - 44px, 1810px);
        height: 58px;
        display: grid;
        grid-template-columns: 42px 1fr 54px;
        align-items: center;
        margin: 8px auto 0;
        padding: 0 7px 0 18px;
        border: 1px solid #d3e3f6;
        border-radius: 31px;
        background: #f8fbff;
        box-shadow: inset 0 1px 3px rgba(15, 61, 112, .03)
    }

    .mobile-header-search>svg {
        width: 25px;
        color: #526b8d
    }

    .mobile-header-search input {
        min-width: 0;
        height: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--hdr-ink);
        font-size: 16px
    }

    .mobile-header-search button {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: linear-gradient(145deg, #0875f5, #035bd5);
        color: #fff;
        cursor: pointer
    }

    .mobile-header-search button svg {
        width: 21px
    }

    .drawer-search {
        display: none !important
    }

    .drawer-hero {
        min-height: 118px;
        padding: 21px 44px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(239, 248, 255, .88)), url('/wp-content/uploads/2025/12/san-pham-man-hinh-quang-cao-chan-dung-smartretail.webp') center right/42% 100% no-repeat
    }

    .drawer-hero img {
        width: min(280px, 55%);
        max-height: 54px
    }

    .drawer-hero p {
        margin: 10px 0 0;
        font-size: 15px
    }

    .drawer-close {
        top: 18px;
        right: 24px;
        width: 42px;
        height: 42px
    }

    .drawer-close svg {
        width: 28px
    }

    .drawer-body {
        padding-top: 8px
    }

    .drawer-nav {
        margin-top: 4px
    }

    .drawer-submenu a {
        display: grid !important;
        grid-template-columns: 44px 1fr !important;
        align-items: center !important;
        gap: 11px !important;
        min-height: 56px !important;
        padding: 7px 10px !important;
        border-radius: 11px !important
    }

    .drawer-submenu__icon {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 1px solid #d6e9fb;
        border-radius: 11px;
        background: linear-gradient(145deg, #f2f9ff, #e3f2ff);
        color: var(--hdr-primary)
    }

    .drawer-submenu__icon svg,
    .drawer-submenu__icon img {
        width: 23px;
        height: 23px;
        object-fit: contain
    }

    .drawer-submenu a>span {
        font-size: 15px;
        font-weight: 650;
        line-height: 1.3
    }

    .drawer-submenu.is-open {
        padding-top: 9px;
        padding-bottom: 11px
    }
}

@media(max-width:600px) {
    .header-main {
        padding: 7px 0 10px
    }

    .header-main__inner {
        height: 52px
    }

    .site-logo img {
        max-width: 198px;
        max-height: 45px
    }

    .mobile-header-phone {
        width: 44px;
        height: 44px
    }

    .mobile-header-phone svg {
        width: 23px
    }

    .nav-toggle {
        width: 47px;
        height: 47px;
        border-radius: 13px
    }

    .nav-toggle svg {
        width: 25px
    }

    .mobile-header-search {
        width: calc(100% - 24px);
        height: 52px;
        grid-template-columns: 35px 1fr 44px;
        margin-top: 6px;
        padding-left: 14px
    }

    .mobile-header-search input {
        font-size: 15px
    }

    .mobile-header-search button {
        width: 40px;
        height: 40px
    }

    .drawer-hero {
        min-height: 92px;
        padding: 17px 24px
    }

    .drawer-hero img {
        max-width: 185px;
        max-height: 42px
    }

    .drawer-hero p {
        display: none
    }

    .drawer-close {
        top: 13px;
        right: 13px;
        width: 36px;
        height: 36px
    }

    .drawer-body {
        padding-top: 6px
    }

    .drawer-submenu {
        padding-left: 28px
    }

    .drawer-submenu a {
        grid-template-columns: 38px 1fr !important;
        min-height: 50px !important;
        gap: 9px !important;
        padding: 6px 8px !important
    }

    .drawer-submenu__icon {
        width: 36px;
        height: 36px;
        border-radius: 9px
    }

    .drawer-submenu__icon svg,
    .drawer-submenu__icon img {
        width: 20px;
        height: 20px
    }

    .drawer-submenu a>span {
        font-size: 15px
    }
}

/* Header CTA motion */
.header-phone>svg {
    transition: transform .32s cubic-bezier(.2, .75, .25, 1), background-color .25s, box-shadow .25s
}

.header-phone:hover>svg,
.header-phone:focus-visible>svg {
    transform: rotate(-8deg) scale(1.08);
    background: #04468d;
    box-shadow: 0 7px 18px rgba(7, 101, 216, .2);
    
}

.header-phone:hover strong {
    color: #0058c9
}

.header-quote {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .3s cubic-bezier(.2, .75, .25, 1), box-shadow .3s, filter .3s
}

.header-quote:before {
    position: absolute;
    z-index: -1;
    inset: -40% auto -40% -35%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    content: "";
    transform: skewX(-18deg);
    transition: left .58s cubic-bezier(.2, .7, .2, 1)
}

.header-quote:hover:before,
.header-quote:focus-visible:before {
    left: 112%
}

.header-quote:hover,
.header-quote:focus-visible {
    transform: translateY(-3px) scale(1.015);
    filter: saturate(1.12);
    box-shadow: 0 15px 30px rgba(8, 87, 202, .34)
}

.header-quote:active {
    transform: translateY(0) scale(.98)
}

.header-quote svg {
    transition: transform .3s cubic-bezier(.2, .75, .25, 1)
}

.header-quote:hover svg,
.header-quote:focus-visible svg {
    transform: translateX(5px)
}

@media(max-width:1024px) {
    .mobile-header-phone {
        isolation: isolate;
        transition: transform .28s cubic-bezier(.2, .75, .25, 1), background-color .25s, box-shadow .25s
    }

    .mobile-header-phone:before {
        position: absolute;
        z-index: -1;
        inset: 3px;
        border: 1px solid rgba(8, 112, 232, .34);
        border-radius: 50%;
        content: "";
        animation: mobilePhonePulse 2.2s ease-out infinite
    }

    .mobile-header-phone svg {
        transition: transform .3s cubic-bezier(.2, .75, .25, 1)
    }

    .mobile-header-phone:hover,
    .mobile-header-phone:focus-visible {
        transform: translateY(-2px) scale(1.045);
        background: #e2efff;
        box-shadow: 0 9px 20px rgba(7, 101, 216, .18)
    }

    .mobile-header-phone:hover svg,
    .mobile-header-phone:focus-visible svg {
        transform: rotate(-9deg);
        animation: headerPhoneRing .48s ease-in-out
    }

    .mobile-header-phone:active {
        transform: scale(.94)
    }

    .mobile-header-phone i {
        animation: mobileStatusGlow 1.8s ease-in-out infinite
    }
}

@keyframes headerPhoneRing {

    0%,
    100% {
        transform: rotate(-8deg) scale(1.08)
    }

    25% {
        transform: rotate(8deg) scale(1.08)
    }

    50% {
        transform: rotate(-5deg) scale(1.08)
    }

    75% {
        transform: rotate(4deg) scale(1.08)
    }
}

@keyframes mobilePhonePulse {
    0% {
        opacity: .65;
        transform: scale(.82)
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.36)
    }
}

@keyframes mobileStatusGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(7, 109, 242, .35)
    }

    50% {
        box-shadow: 0 0 0 5px rgba(7, 109, 242, 0)
    }
}

@media(prefers-reduced-motion:reduce) {

    .mobile-header-phone:before,
    .mobile-header-phone i,
    .mobile-header-phone svg,
    .header-phone>svg,
    .header-quote:before,
    .header-quote svg {
        animation: none !important
    }

    .mobile-header-phone,
    .header-phone>svg,
    .header-quote,
    .header-quote svg,
    .site-header,
    .site-header:before,
    .site-header .site-logo img,
    .site-header .header-search {
        transition: none !important
    }
}

@media(max-width:768px) {
    .mobile-header-search{
        height: 50px;
                grid-template-columns: 42px 1fr 40px;
    }
    .mobile-header-search button{
        width: 40px;
        height: 40px;
    }
    .mobile-header-search input{
        font-size: 14px;
    }
}