/* Custom styles for otech theme */
:root {
    --main-color: #006BEA;
    --body-color: #191C1F;
    --title-color: #191C1F;
    --border-color: #ADB7BC;
    --placeholder-color: #929FA5;
    --font-body:  "Montserrat", sans-serif;
    --font-size-body:  18px;
    --container-width: 1230px;
}
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.4;
    color: var(--body-color);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}
button{
      transition: .3s;
}

ul {
    list-style: none;
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
button,
input,
select,
textarea{
    font: inherit;
}
/* ============================================================
   CLASS NAME
   ============================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}
.body-wrap{
    overflow: hidden;
}
.bzo-btn-default{
    display: inline-flex;
    padding: 16px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border: none;
    text-align: center;
    cursor: pointer;
    border:2px solid var(--main-color);
}

.bzo-btn-default:hover{
    border-color: var(--main-color);
    box-shadow: -5px 12px 20px #0000002e;
    transform: translateY(-3px);
}
.bzo-btn-style2{
    display: inline-flex;
    padding: 18px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #fff;
    border:2px solid var(--main-color);
    color: var(--main-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}

.bzo-btn-style2:hover{
   border-color: var(--main-color);
    box-shadow: -5px 12px 20px #0000002e;
    transform: translateY(-3px);
}

.hero-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 48px;
}
.no_results{
    background: #fff;
    padding: 30px 15px;
    border-radius: 16px;
    border: 1px solid var(--main-color);
}
.section-desc{
    margin-top: 15px;
}
.main-color{
    color: var(--main-color);
}
.padding-tb-80{
    padding: 80px 0;
}

.padding-t-80{
    padding-top: 80px;
}
.padding-b-80{
    padding-bottom: 80px;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.font-medium{
    font-weight: 500;
}
.font-semibold{
    font-weight: 600;
}
.font-bold{
    font-weight: 700;
}
.hidden{
    display: none;
}
.title14{
    font-size: 14px;
}
.title18{
    font-size: 18px;
}
.title24{
    font-size: 24px;
}
.container-wrap1194 {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 120px;
    box-shadow: 0 8px 40px 0 rgba(0, 107, 234, 0.15);
}
.relative{
    position: relative;
}
@keyframes iconSkew {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg); } }

@keyframes euiBeaconPulseSmall {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  50% {
    opacity: 0.6; }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.4);
    opacity: 0; } }
/* ============================================================
   FORM
   ============================================================ */
.form-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px 40px;
    margin-bottom: 40px;
}

.form-grid .form-group.full{
    grid-column: 1 / -1;
}

.form-group .error-message{
   display: none;
    margin-top: 4px;
    font-size: 13px;
    color: #db0c00;
    padding: 0px 16px;
    font-style: italic;
}
.form-group.error .error-message{
   display: block;
}
.form-error-message{
    display: none;
    margin: -20px 0 24px;
    font-size: 13px;
    color: #db0c00;
    padding: 0 16px;
    font-style: italic;
    text-align: center;
}
.form-error-message.active{
    display: block;
}
.form-group label{
    display: block;
    margin-bottom: 10px;
    color: var(--body-color);
    font-weight: 500;
}

.form-group label span{
    color: #ff3b30;
}

.form-group textarea::placeholder,
.form-group input::placeholder{
    color: var(--placeholder-color);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.form-group input,
.form-group select{
    width: 100%;
    height: 60px;
    padding: 0 46px 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--body-color);
    font-size: 18px;
    outline: none;
    transition: .3s;
    font-family: var(--font-body);
}

.form-group textarea{
    width: 100%;
    height: 140px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--body-color);
    font-size: 18px;
    outline: none;
    transition: .3s;
    font-family: var(--font-body);
}
.form-group input[type="checkbox"]{
    width: 16px;
    height: 16px;
    padding: 0;
}
.form-group select{
    color: var(--placeholder-color);
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus{
    border-color: var(--main-color);
}
/*style select 2*/


.select2-container .select2-selection--single{
    height:60px;
    border:1px solid var(--border-color);
    border-radius:8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height:60px;
    padding-left: 16px;
    padding-right: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height:60px;
    right:12px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder{
    color:var(--placeholder-color);
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single{
    border-color:var(--main-color);
}

.select2-dropdown{
    border:1px solid var(--main-color);
    border-radius:6px;
    overflow:hidden;
}

.select2-search--dropdown{
    padding:10px;
}

.select2-search--dropdown .select2-search__field{
    height:40px;
    border:1px solid var(--border-color)!important;
    border-radius:4px;
    padding:0 10px;
}

.select2-results__option{
    padding:10px 15px;
    font-size:15px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background:var(--main-color);
}

.select2-container--default .select2-results__option--selected{
    background:#eef5ff;
    color:var(--main-color);
}
.select2-container--default .select2-selection--single .select2-selection__clear{
    position: absolute;
    right: 21px;
    top: 0;
    bottom: 0;
    height: auto;
    color: #d77b7b;
    padding: 0 15px;
    border-right: 1px solid var(--border-color);
}

.select2-container .select2-selection--multiple{
    min-height:60px;
    border:1px solid var(--border-color)!important;
    border-radius:8px;
    padding:6px 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    padding:0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background:#eef5ff;
    border:1px solid var(--main-color);
    border-radius:4px;
    color:var(--main-color);
    margin:0;
    padding:4px 8px;
    display:flex;
    flex-direction:row-reverse;
    align-items:center;
    gap:6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display{
    padding:0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    position:static;
    border:none;
    background:transparent;
    color:var(--main-color);
    font-weight:600;
    padding:0;
    line-height:1;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{
    background:transparent;
    color:#db0c00;
    outline:none;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--multiple{
    border-color:var(--main-color)!important;
}
/* ============================================================
   input-group
   ============================================================ */
.input-group {
    position: relative;
    z-index: 1;
}
.input-group button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: none;
    background: transparent;
    padding: 0px 20px;
    cursor: pointer;
        display: flex;
    justify-content: center;
    align-items: center;
}
.input-group .date-btn{
    z-index: -1;
}
.flatpickr-current-month .flatpickr-monthDropdown-months{
    width: calc(100% - 6ch)!important;
}
.numInputWrapper:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: transparent!important;
}
.flatpickr-innerContainer{
    padding-top: 10px;
}
.flatpickr-current-month{
    display: flex;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* input imag*/
.form-group .upload-box .upload-icon{
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.form-group .upload-box input[type="file"] {
    display: none;
}
.form-group .preview-image {
    gap: 10px;
    display: none;
}
.form-group .preview-image.active{
    display: flex;
}

.form-group .preview-image video,
.form-group .preview-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.form-group .preview-image .preview-item{
    position: relative;
}
.form-group .preview-image .remove-file-media {
    position: absolute;
    right: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    border: none;
    background: #ffffffbf;
    font-size: 22px;
    border-radius: 0 8px;
    color: #e20000;
}
.upload-box-image{
    display: flex;
    align-self:center;
    gap: 10px;
    flex-wrap: wrap;
}
.upload-box-image .error-message{
    width: calc(100% - 80px);
    padding: 0;
    margin: 0;
}
#accessory_other{
    margin-top: 15px;
}

/* GLOBAL RADIO INPUT */
.radio-group{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.radio-card-ship-direct{
    display:flex;
    gap:20px;
    padding:24px;
    border-radius: 8px;
    border: 1px solid #ADB7BC;
    background: #FFF;
    cursor:pointer;
    transition:.3s;
    width: 100%;
    align-items: center;
}
.radio-card-ship-external{
    display:flex;
    gap:20px;
    padding:24px;
    border-radius: 8px;    
    background: #EBF4FF;
    cursor:pointer;
    transition:.3s;
    width: 100%;
    align-items: center;
}
.radio-card-warranty{
    display:flex;
    gap:20px;
    cursor:pointer;
    transition:.3s;
    width: 100%;
    align-items: start;
}
.radio-card-warranty .radio-icon{
    margin-top: 3px;
}
.radio-card.disabled{
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}

.radio-icon{
    width:24px;
    height:24px;
    border:2px solid #191C1F;
    border-radius:50%;
    position:relative;
    flex-shrink:0;
    display: inline-flex;
}

.radio-icon:before{
   content:"";
    position:absolute;
    width:14px;
    height:14px;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background: var(--main-color);
    opacity: 0;
}
.shipping-external.active .radio-card-external .radio-icon,
.radio-card.active .radio-icon{
    border-color:var(--main-color);
}

.radio-card.active .radio-icon::before,
.shipping-external.active .radio-card-external .radio-icon::before{
    opacity: 1;
}
.shipping-external.active,
.radio-card-ship-direct.active{
    border-color: var(--main-color);
}

.list-card-external{
    display: flex;
    gap:40px;
    margin-top: 20px;
}
.list-card-external .radio-card {
        background: #EBF4FF;
        border:none;
}
.shipping-external.active .list-card-external .radio-icon{
    border-color:var(--main-color);
}
.shipping-external{
    padding:24px;
    border-radius: 8px;
    border: 1px solid  #ADB7BC;
    background: #FFF;
    transition:.3s;
}   
.radio-content{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group .label-ship{
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
}
.radio-card-external{
    margin-bottom: 24px;
     display: flex;
    gap:20px;
}
/* ============================================================
   GLOBAL TABLE 
   ============================================================ */
.ket-qua-tra-cuu{
    padding:60px 0;
}

.lookup-table-wrap{
    overflow-x:auto;
}

.global-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:8px 8px 0 0;
    overflow:hidden;
}

.global-table th{
    background:var(--main-color);
    color:#fff;
    padding:15px;
    text-align:center;
    font-weight:500;
    border: 1px solid var(--main-color);
}

.global-table td{
    padding:30px 15px;
    border: 1px solid var(--main-color);
    text-align:center;
}

.global-table tbody tr:hover{
    background:#006bea1f;
}
.global-table td.status span{
    padding: 9px 18px;
    border-radius: 30px;
    text-align: center;
}
.global-table .status-ht{
    color:#16A34A;
    background:#EAF8EF;
}

.global-table .status-ctn{
    color:#F59E0B;
    background:#FFF7E6;
}

.global-table .status-dtn{
    color:var(--main-color);
    background:#EAF2FF;
}

.global-table .status-dkt{
    color:#7C3AED;
    background:#F3E8FF;
}

.global-table .status-clk{
    color:#EA0029;
    background:#FFEDE6;
}

.global-table .status-ds{
    color:#0EA5E9;
    background:#E8F7FF;
}

.global-table .status-dg{
    color:#2DD4BF;
    background:#EBFFFB;
}

.global-table .status-gtc{
    color:#475569;
    background:#EDEDED;
}
/* Mobile */
@media(max-width:1200px){
    .global-table{
        background:transparent;
    }

    .global-table thead{
        display:none;
    }

    .global-table,
    .global-table tbody,
    .global-table tr,
    .global-table td{
        display:block;
        width:100%;
    }

    .global-table tr{
        border:1px solid #e5e7eb;
        background:#fff;
        border-radius:12px;
        margin-bottom:15px;
        padding:0px;
        box-shadow:0 2px 8px rgba(0,0,0,.05);
    }

    .global-table td{
        border: none;
        display: flex;
        justify-content: space-between;
        gap: 15px;
        padding: 10px;
        border-bottom: 1px solid #adb7bc6e;
    }

    .global-table td:before{
        content:attr(data-label);
        font-weight:500;
        flex-shrink:0;
    }

    .global-table td:first-child{
        background: #f5f9ff;
        border-radius: 8px 8px 0 0;
        margin-bottom: 8px;
        font-weight: 700;
        color: var(--main-color);
    }
    .global-table td:last-child{
         border-bottom:none;
    }
    .global-table td.status span {
        padding: 5px 12px;
        font-size: 14px;
    }
    .global-table td {
        text-align: right;
    }
}
/* ============================================================
   GLOBAL popup info
   ============================================================ */
.popup-info{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background: #000000ba;
}
.popup-info.active{
    display: flex;
}
.popup-info .popup-wrap{
        width: 100%;
    max-width: 745px;
    padding: 60px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 8px 40px 0 rgba(0, 107, 234, 0.15);
    position: relative;
}
.popup-info .popup-close{
    position: absolute;
    right: 20px;
    top: 20px;
}

.popup-info .hero-title{
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 40px;
}
.popup-info .popup-desc{
    margin-bottom: 24px;
}
/* ============================================================
   HEADER
   ============================================================ */
.header {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Sticky header */
.header.sticky-bar.stick {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #4A5568;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: none;
    animation: stickyFadeIn 0.35s ease-in-out;
}

.header.sticky-bar.stick .logo img {
    filter: brightness(0) invert(1);
}

.header.sticky-bar.stick .nav-link {
    color: #fff;
}

.header.sticky-bar.stick .nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Sub-menu links keep body color when sticky (white background, not dark header) */
.header.sticky-bar.stick .sub-menu .nav-link,
.header.sticky-bar.stick .level-menu .nav-link {
    color: var(--body-color);
}

.header.sticky-bar.stick .sub-menu .nav-link:hover,
.header.sticky-bar.stick .level-menu .nav-link:hover {
    color: var(--main-color);
}

.header.sticky-bar.stick .phone-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.header.sticky-bar.stick .phone-btn svg path {
    fill: #fff;
}

.header.sticky-bar.stick .phone-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

@keyframes stickyFadeIn {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent content jump when header becomes fixed */
body.has-sticky-header {
    padding-top: 80px;
}
.top-margin-header{
    margin-top: -80px;
    padding-top: 168px;
}
.header-inner {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 48px;
        justify-content: space-between;
}
.right-header{
        display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    display: inline-flex;}

.logo-dot {
    color: #2563EB;
}

/* Nav */
.nav {
    flex: 1;
}

.nav ul {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    white-space: nowrap;
    transition: 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: width 0.2s;
}

.nav-link:hover {
    color: #2563EB;
}

.nav-link:not(.active):hover::after {
    width: 100%;
}

/* Phone button */
.phone-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 16px;
    border: 2px solid var(--main-color);
    border-radius: 999px;
    color: var(--main-color);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.22s;
}

.phone-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #ffffff;
}
.phone-btn:hover svg path{
    fill: #ffffff;
}

/* ============================================================
   MOBILE / TABLET HEADER (<=1024px)
   Desktop header (.header) is untouched; this is a separate
   header + slide-in drawer shown only at <=1024px.
   ============================================================ */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1001;
    align-items: center;
    height: 55px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
}

.mobile-header .mobile-logo,
.mobile-drawer-header .mobile-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.mobile-header .mobile-logo img {
    max-height: 20px!important;
    width: auto;
}

/* Hamburger button */
.mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle span + span {
    margin-top: 5px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

/* Overlay */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1100;
    width: 85%;
    max-width: 360px;
    flex-direction: column;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer:focus {
    outline: none;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.mobile-drawer-header .mobile-logo img {
    max-height: 20px!important;
    width: auto;
}

.mobile-drawer-close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f4f4f5;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-drawer-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
}

.mobile-drawer-close span:first-child {
    transform: rotate(45deg);
}

.mobile-drawer-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-drawer-close:focus-visible {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

/* Nav */
.mobile-drawer-nav {
    flex: 1 1 auto;
    padding: 8px 8px 16px;
}

.mobile-drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-drawer-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer-nav li {
    position: relative;
}

.mobile-drawer-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 8px;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.mobile-drawer-nav .nav-link.active {
    color: var(--main-color);
}

/* Desktop-only underline indicator (.nav-link::after) doesn't apply in the drawer */
.mobile-drawer-nav .nav-link::after {
    content: none;
}

/* Chevron toggle button — only rendered when the item has children */
.mobile-drawer-nav .nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 12px;
    color: #999;
    background: transparent;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease,
        color 0.2s ease;
}

.mobile-drawer-nav .nav-link i:active {
    background: #ececec;
}

.mobile-drawer-nav li.submenu-open > .nav-link {
    color: var(--main-color);
}

.mobile-drawer-nav li.submenu-open > .nav-link > i {
    color: var(--main-color);
    background: rgba(0, 107, 234, 0.08);
}

.mobile-drawer-nav li.submenu-open > .nav-link > i.fi-rs-angle-right {
    transform: rotate(90deg);
}

/* Smooth accordion — JS animates max-height between 0 and the measured
   content height, then releases it to "none" once fully open so nested
   submenus can expand freely without being clipped by a stale value. */
.mobile-drawer-nav .sub-menu,
.mobile-drawer-nav .level-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 16px;
    background: #fafafa;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-nav .sub-menu .nav-link,
.mobile-drawer-nav .level-menu .nav-link {
    padding: 11px 8px;
    font-size: 14px;
    font-weight: 400;
}

.mobile-drawer-footer {
    flex-shrink: 0;
    padding: 16px;
    border-top: 1px solid #eee;
}

.mobile-drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--main-color);
    border-radius: 999px;
    color: var(--main-color);
    font-weight: 600;
}

body.mobile-drawer-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-drawer-overlay {
        display: block;
    }

    .mobile-drawer {
        display: flex;
    }
    .top-margin-header {
        margin-top: 0px;
        padding-top: 60px;
    }
    .top-margin-header.padding-b-80{
        padding-bottom: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .mobile-drawer {
        width: 420px;
        max-width: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span,
    .mobile-drawer-overlay,
    .mobile-drawer {
        transition: none !important;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #F2F4F5;
    padding-top: 50px;
    font-size: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr;
    gap: 72px;
    padding-bottom: 52px;
}

/* Footer brand column */
.footer-logo {
    margin-bottom: 22px;
    display: block;
}

.footer-brand p {
    margin-bottom: 9px;
    line-height: 1.65;
}

.footer-brand p strong {
    font-weight: 600;
}

.footer-cta {
    display: inline-block;
    margin-top: 16px;
    color: var(--main-color);
    font-weight: 600;
    transition: color 0.2s;
}

.footer-cta:hover {
    color: var(--body-color);
}

/* Footer nav columns */
.footer-col .title-footer {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a:hover {
    color: var(--main-color);
}

/* Social icons */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.5px solid var(--main-color );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color );
    transition: all 0.22s;
    flex-shrink: 0;
}

.social-btn:hover {
    color: #fff;
    background:  var(--main-color );
}

.social-btn:hover svg path {
    fill: #fff;
}
.social-btn:hover svg path.zalo-white {
    stroke: #fff;
    fill:var(--main-color );
}
/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid #5f6c728f;
    padding: 26px 0;
    text-align: center;
}
.quick-contact{
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 40px;
    padding: 2px 10px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.contact-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 10px 0;
    border-radius: 50%;
    background: var(--main-color);
    text-decoration: none;
    transition: .3s;
}
.contact-item svg{
    animation: iconSkew 1s infinite ease-out;
}
.contact-item:before,
.contact-item:after{
    position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    left: 0px;
    top: 0px;
    background: var(--main-color);
    border-radius: 50%;
    z-index: -1;
}
.contact-item:after{
    animation: euiBeaconPulseSmall 2s infinite ease-out;
}
.contact-item:before{
    animation: euiBeaconPulseSmall 2s infinite ease-out 0.4s;
}

.tooltip{
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.tooltip::after{
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.contact-item:hover .tooltip{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.field-tooltip{
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 4px;
    cursor: help;
}
.field-tooltip-content{
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    background: #fff;
    color: #333;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    white-space: pre-line;
    width: max-content;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all .2s ease;
    z-index: 20;
}
.field-tooltip:hover .field-tooltip-content,
.field-tooltip:focus .field-tooltip-content,
.field-tooltip:focus-within .field-tooltip-content,
.field-tooltip.active .field-tooltip-content{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bg-mix-color  {
    background:
    radial-gradient(
        circle at 10% 85%,
        #C0EFFF 0%,
        rgba(192,239,255,0.8) 15%,
        rgba(192,239,255,0) 35%
    ),
    radial-gradient(
        circle at 90% 15%,
        #C6CCFF 0%,
        rgba(198,204,255,0.8) 15%,
        rgba(198,204,255,0) 35%
    ),
    linear-gradient(
        135deg,
        #FFFBFF 0%,
        #F4F5FB 25%,
        #E9EEFF 50%,
        #D7DFFF 75%,
        #BCC3FF 100%
    );
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding-bottom: 80px;
}

.hero .hero-title {
    margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 34px 20px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border: 2px solid transparent;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    transition: all 0.25s;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--main-color);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.18);
    transform: translateY(-3px);
}


.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 56px;
    height: 56px;
}

.service-label {
    font-weight: 500;
    text-align: center;
    line-height: 1.45;
}

/* ============================================================
   Q&A SECTION
   ============================================================ */
.qa-section {
    padding: 80px 0 80px;
    background: #ffffff;
}

.qa-section .hero-title{
    margin-bottom: 40px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.10);
    padding:60px;
    border-radius: 12px;


}

.accordion-item {
    border-bottom: 1px solid #E5E7EB;
}



.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6px;
    cursor: pointer;
    user-select: none;
}

.accordion-header:hover .q-text {
    color: #2563EB;
}

.q-text {
    font-weight: 600;
    flex: 1;
    padding-right: 24px;
    transition: color 0.2s;
}

.q-icon svg:first-child {
    display: none;
   
}

.accordion-item.open .q-icon  svg:first-child{
    display: block;
}
.accordion-item.open .q-icon  svg:last-child {
    display: none;
}
.accordion-body {
    display: none;
}

.accordion-content {
    padding: 2px 6px 26px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
}

.accordion-content p + p {
    margin-top: 8px;
}

.accordion-content ul {
    margin: 6px 0 6px 4px;
}

.accordion-content ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 3px;
    list-style: none;
    list-style-type: none;
}

.accordion-content ul li::before {
    content: '\00B7';
    position: absolute;
    left: 2px;
    font-size: 20px;
    line-height: 1.3;
    color: #6B7280;
}

/* ============================================================
   hello-sevice
   ============================================================ */
.hello-sevice{
    padding-bottom: 80px;
}
.hello-sevice .hero-title {
    margin-bottom:10px;
    font-weight: 700;
}

.hello-sevice .hero-desc {
    margin-bottom:38px;
}
.hello-sevice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.hello-sevice-card {
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border: 3px solid transparent;
    box-shadow: 0 8px 40px 0 rgba(0, 107, 234, 0.15);
    transition: all 0.3s;
}

.hello-sevice-card:hover {
    border-color: var(--main-color);
}

.hello-sevice-card .title{
    font-weight: 600;
    font-size: 24px;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section{
    padding-top: 80px;
}

.map-section .wrap-map{
    margin:auto;
    display:flex;
    gap:40px;
}

.map-list{
    width:577px;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.10);
}

.map-header{
    background:var(--main-color);;
    color:#fff;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    padding: 24px 32px;
}
.list-item-map{
    max-height: 700px;
    overflow-y: auto;
}
.map-item{
    padding:20px 32px;
    border-bottom:1px solid #e5e5e5;
}

.map-item:last-child{
    border-bottom:none;
}

.map-item h3{
    margin:0 0 16px;
    color:var(--main-color);
    font-size:18px;
    font-weight: 600;
}

.info-row{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:12px;
    font-size:15px;
    line-height:1.5;
}

.info-row svg{
    width:18px;
    text-align:center;
    flex-shrink:0;
}

.info-row a{
    color:#ff3b30;
    text-decoration:none;
}

.map-link{
    display: inline-flex;
    color: var(--main-color);
    font-weight: 500;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: 25px;
}

.map-link span{
    text-decoration:underline;
}

.map-link svg{
    opacity: 0;
}

.map-link:hover svg{
    opacity: 1;
}
.map-link:hover{
    text-decoration:underline;
}

.map-iframe{
    flex:1;
    min-height:700px;
    border-radius:8px;
    overflow:hidden;
}

.map-iframe iframe{
    width:100%;
    height:100%;
    border:none;
}
.page-tt-bh{
    background: #fff;
    padding: 40px 40px 80px 40px;
    border-radius: 16px;
}
.map-section.top-margin-header{
        padding-top: 168px;
        padding-bottom: 80px;

}
.map-section .header-map{
    margin-bottom: 40px;
}

.map-section .header-map .hero-title{
    margin-bottom: 16px;
}
.map-section .page-tt-bh .map-list{
    box-shadow: none;
    max-width: 400px;
}

.map-section .page-tt-bh .map-list .map-header{
    font-size: 20px;
    padding: 18px;
    text-align: center;
}
.map-section .page-tt-bh .map-list .map-item {
    padding: 20px 0;
}
.map-section .page-tt-bh .map-list .map-item.active{
    padding: 16px 18px;
}
/* ============================================================
   POPUP NOT TRA CỨU BẢO HÀNH
   ============================================================ */

.not-tra-cuu-bh h4{
    font-weight: 600;
    margin-bottom: 12px;
}
.not-tra-cuu-bh .popup-list{
    color:var(--body-color);
    list-style: disc;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}
.not-tra-cuu-bh .popup-contact{
    border-top: 1px solid #929fa580;
    padding-top: 20px;
    margin-bottom: 40px;
}
.not-tra-cuu-bh .popup-contact-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}
.not-tra-cuu-bh .popup-contact-list li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.not-tra-cuu-bh .popup-contact-list li a{
    font-weight: 600;
}
.thay-the-linh-kien .popup-contact-list li{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}
/* ============================================================
   form kích hoạt bảo hành
   ============================================================ */
.kich-hoat-bh {
    padding-bottom: 80px;
}

.kich-hoat-bh .section-title{
    margin-bottom: 40px;
}

.kich-hoat-bh .form-heading{
    color: var(--main-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}


.kich-hoat-bh .submit-wrap{
    text-align: center;
}

/* ============================================================
    TRA CỨU BẢO HÀNH
   ============================================================ */

.tra-cuu-bh .global-form{
    max-width: 453px;
    margin: auto;
}
.yeu-cau-cap-linh-kien .global-form,
.dang-ky-tai-khoan .global-form,
.tra-cuu-bh .global-form{
    margin-top: 40px;
}
.yeu-cau-cap-linh-kien .hero-title,
.dang-ky-tai-khoan .hero-title,
.tra-cuu-bh .hero-title{
    margin-bottom: 24px;
}
.tra-cuu-bh .section-desc{
    margin-top: 8px;
}
/* ============================================================
   ket-qua-tra-cuu-bao-hanh
   ============================================================ */
.kq-td-sc,
.kq-tc-bh {
    margin-top:40px;
}
.kq-tc-bh .expiry-date,
.kq-tc-bh .activation-date{
    color: #EA0000;
}
.kq-tc-bh .product-name{
    max-width: 450px;
    text-align: left;
}
@media (max-width: 1200px) {
    .kq-tc-bh .product-name{
        max-width: 100%;
        text-align: right;
    }
}
.kq-tc-bh .remaining:not(.active) {
    color: #ccc;
}


/* ============================================================
   Đăng ký sửa chữa
   ============================================================ */

.dang-ky-sua-chua .section-desc{
    max-width: 640px;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 24px;
}

.tabs-form-nav{
    display:flex;
    justify-content:center;
    gap:0px;
    margin-bottom:40px;
}

.tabs-form-nav .nav-step-item{
    text-align:center;
    position:relative;
    padding-bottom: 15px;
        border-bottom: 4px solid #94C5FF;
        padding-left: 15px; 
        padding-right: 15px; 
}

.tabs-form-nav .nav-step-item:last-child{
    padding-right: 0px; 
}

.tabs-form-nav .nav-step-item:first-child{
    padding-left: 0px; 
}

.tabs-form-nav .nav-step-item span{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border: 2px solid #94C5FF;
    color:#94C5FF;
    margin:auto;
    background:#fff;
    font-weight: 500;
}

.tabs-form-nav .nav-step-item .title18{
    margin-top:10px;
    font-weight: 600;
    color: #94C5FF;
}

.tabs-form-nav .nav-step-item.active span{
    background:var(--main-color);
    color:#fff;
    border-color:var(--main-color);;
}

.tabs-form-nav .nav-step-item.active .title18{
    color:var(--main-color);;
}
.tabs-form-nav .nav-step-item.active{
    border-color: var(--main-color);
}
.content-step{
    display:none;
}

.content-step.active{
    display:block;
}

.step-buttons{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}


.dk-sc-wrap .btn-back{
    display:none;
}


.dk-sc-wrap .btn-submit{
    display:none;
}
.not-dk-tc .popup-list,
.dk-tc .popup-list{
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.copy-message {
    background: #e8e8e8;
    color: var(--main-color);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    display: inline-block;
    font-weight: 500;
}
.dk-tc .code-order{
    display: flex;
    align-items: center;
    gap: 6px;
}
.not-dk-tc h4{
    margin-bottom: 12px;
}
.not-dk-tc .group-bzo-btn{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 500px;
    justify-content: center;
    align-items: center;
    margin: auto;
}
/* ============================================================
   THONG TIN BO SUNG
   ============================================================ */

.thong-tin-bs .section-desc{
    max-width: 640px;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 24px;
}
.thong-tin-bs h4{
    font-size: 24px;
}
@media(max-width:1200px){
    .tabs-form-nav{
        justify-content:center;
    }

    

    .nav-step-item .title18{
        font-size:14px;
        font-weight:600;
    }
}
@media(max-width:767px){
    .tabs-form-nav .nav-step-item span {
        width: 35px;
        height: 35px;
    }
}


/* ============================================================
   TRA CUU SUA CHUA
   ============================================================ */
.yeu-cau-cap-linh-kien .section-desc,
.tra-cuu-sc .section-desc
{
    max-width: 640px;
    margin: auto;
}
.yeu-cau-cap-linh-kien .form-heading{
    margin-bottom: 24px;
}

/* ============================================================
   DANG NHAP
   ============================================================ */
.remember-me-wrap{
    display: flex;
    align-items: center;
    gap: 5px;
        justify-content: start;
}
.remember-me-wrap label{
    margin-bottom: 0;
    font-size: 14px;
}
.dang-ky-tai-khoan .submit-wrap,
.dang-nhap-dl .submit-wrap{
    margin-bottom: 24px;
}
.form-group{
    position: relative;
}
.view-password{
        position: absolute;
    right: 15px;
    bottom: 5px;
}

.tien-do-clk-wrap .section-title{
    margin-bottom: 16px;
}
.tien-do-sc-wrap .hero-title{
    margin-bottom: 16px;
}


#qr-scanner-modal{
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999;
    display: none;
}
#reader-cammera-get-qr{
    width: 100%;
    height: 100%;
}

#reader-cammera-get-qr video{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.scanner-header{
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

#close-scan-btn{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    font-size: 20px;
    cursor: pointer;
}

.scanner-guide{
   position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    font-weight: 600;
    width: 100%;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .title24{
        font-size: 20px;
    }
    body {
        font-size: 16px;
    }
    .container-wrap1194 {
        padding: 30px 15px;
    }
    .form-grid {
        gap: 24px 30px;
    }
     .footer-grid {
        gap: 30px;
    }
    .hero-title {
        font-size: 30px;
        line-height: 40px;
    }
    .kich-hoat-bh .form-heading,
    .thong-tin-bs h4 {
        font-size: 20px;
    }
    .quick-contact {
        right: 15px;
        padding: 0px 5px;
    }
    .contact-item {
        width: 30px;
        height: 30px;
        margin:8px 0;
    }
    .contact-item:before, .contact-item:after{
        height: 30px;
        width: 30px;
    }
    .bzo-btn-style2{
        padding: 8px 20px 8px 20px;
    font-size: 16px;
    }
    .bzo-btn-default {
        padding: 10px 20px 10px 20px;
        font-size: 16px;
    }
    .popup-info .popup-wrap {
        padding: 40px 30px;
    }
    .popup-info .hero-title {
        font-size: 24px;
    }
    .not-dk-tc .group-bzo-btn {
        gap: 20px;
    }
    .popup-info .popup-close {
        position: absolute;
        right: 5px;
        top: 5px;
    }
    .accordion {
        padding: 30px;
    }
    .map-list {
        width: 300px;
    }
    .map-section .wrap-map {
        gap: 20px;
    }
    .map-section .page-tt-bh .map-list .map-header,
    .map-header {
        font-size: 18px;
        padding: 10px 15px;
    }
    .map-item {
        padding: 15px 15px;
    }
    .map-item h3 {
        margin: 0 0 10px;
        font-size: 16px;
    }
    .info-row {
        gap: 10px;
        margin-bottom: 5px;
        font-size: 14px;
    }
    .map-link {
        font-size: 14px;
    }
    .page-tt-bh {
        padding: 40px 20px 40px 20px;
    }
    .map-section.top-margin-header {
        padding-top: 80px;
    }
}
@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns:2fr 1fr 1fr; 
    }
}
@media (max-width: 767px) {
    
    .title18{
        font-size: 16px;
    }

    .title24{
        font-size: 18px;
    }
    .page-tt-bh {
        padding: 40px 20px 20px 20px;
    }
    .hello-sevice-card .title {
        font-size: 18px;
    }
    .hello-sevice-grid {
        grid-template-columns: repeat(1, 1fr);
            max-width: 320px;
    }
    .list-item-map {
        max-height: 320px;
    }
    .wrap-map{
        flex-direction: column;
    }
    .map-iframe {
        min-height: auto;
    }
    .map-list {
        width: 100%;
    }
    .hello-sevice-grid {
        gap: 20px;
    }
    .hello-sevice-card {
        padding: 15px;
        gap: 15px;
    }
    .service-card {
        padding: 25px 10px 25px;
    }
    .accordion {
        padding: 20px 15px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .radio-icon {
        width: 16px;
        height: 16px;
        margin-top: 3px;
    }
    .radio-icon:before {
        width: 8px;
        height: 8px;
    }
    .radio-card-ship-external {
        gap: 10px;
        padding: 15px;
    }   
    .shipping-external,
    .radio-card-ship-direct {
        gap: 10px;
        padding: 10px;
        align-items: start;
    }
    .radio-card-warranty,
    .radio-card-external{
         gap: 10px;
    }
    .list-card-external {
        flex-wrap: wrap;
    }
    .form-group .label-ship {
        font-size: 18px;
    }
    .radio-content p{
        font-size: 14px;
    }
    .radio-content .title18 {
        font-size: 16px;
    }
    .popup-info .popup-wrap {
        padding: 40px 15px;
    }
    .popup-info .hero-title {
        font-size: 20px;
        line-height: 25px;
    }
    .hero-title {
        font-size: 20px;
        line-height: 30px;
    }
    .form-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    .footer-grid {
        grid-template-columns:1fr;
        gap: 30px;
        padding-bottom: 30px;
    }
    .thong-tin-bs .section-desc {
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .yeu-cau-cap-linh-kien .form-heading,
    .yeu-cau-cap-linh-kien .hero-title, 
    .dang-ky-tai-khoan .hero-title, 
    .tra-cuu-bh .hero-title {
        margin-bottom: 10px;
    }
    
    .kich-hoat-bh .section-title{
        margin-bottom: 20px;
    }
    .yeu-cau-cap-linh-kien .global-form, 
    .dang-ky-tai-khoan .global-form, 
    .tra-cuu-bh .global-form {
        margin-top: 20px;
    }
    .kich-hoat-bh .form-heading,
    .thong-tin-bs h4 {
        font-size: 18px;
    }
    .kich-hoat-bh .form-heading {
        margin-bottom: 15px;
    }
    .form-group input, .form-group select {
        height: 48px;
        font-size: 14px;
    }
    .form-group textarea{
         font-size: 14px;
    }
    .select2-container .select2-selection--single {
        height: 48px;
        font-size: 14px;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 48px;
        line-height: 48px;
    }
    .view-password{
        bottom: 3px;
    }
    .view-password svg{
        width: 22px;
    }
    .form-group .error-message {
        font-size: 12px;
        padding: 0;
    }
}

/* ============================================================
   DROPDOWN SUB-MENU
   ============================================================ */
.nav ul li {
    position: relative;
}

/* The parent/child chevron (fi-rs-angle-right, rotated to angle-down on
   open) is a mobile-drawer-only affordance for tap-to-expand; desktop
   reveals sub-menus on hover and has no use for it. */
.nav .nav-link i {
    display: none;
}

.nav .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 200;
}

/* Bridge the 8px gap between nav-link and sub-menu so hover isn't lost */
.nav ul li::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.nav ul li:hover > .sub-menu,
.nav ul li.open > .sub-menu {
    display: block;
}

.nav .sub-menu li {
    position: static;
}

.nav .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    color: var(--body-color);
}

.nav .sub-menu li a::after {
    display: none;
}

.nav .sub-menu li a:hover {
    background: #f0f6ff;
    color: var(--main-color);
}
.nav .sub-menu li a.active{
    color: var(--main-color);
}

/* Active nav button style for kich-hoat-bao-hanh */
.nav> ul> li> a.nav-activate-warranty.active, .nav >ul>li> a.nav-link.active {
    background-color: #006BEA;
    color: #fff !important;
    border-radius: 30px;
    padding: 8px 20px;
}
.nav> ul> li> a.nav-activate-warranty.active:hover, .nav >ul>li> a.nav-link.active:hover {
    background-color: #0055c7;
    color: #fff !important;
}

.content-pageDetail {
    font-size: 16px;
    line-height: 1.5;
}
.content-pageDetail p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.chinh-sach-bao-hanh h1 {
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 20px;
}
.chinh-sach-bao-hanh .container-wrap1194 {
    padding:40px 50px;
}
.ck-content .chinh-sach-bao-hanh figure.table {
    margin: .9em 0px;
    display: block;
}
.chinh-sach-bao-hanh .qa-section {
    padding-top: 0px;
    background: none;
}
.chinh-sach-bao-hanh .qa-section .accordion {
    max-width: 1200px;
    background: #fff;
}
@media (max-width: 1200px) {
    .chinh-sach-bao-hanh .container-wrap1194 {
        padding: 30px 15px;
    }
}
.table-style1{
    width:100%;
    border-collapse:collapse;
}

.table-style1 td{
    border:1px solid var(--border-color);
    padding:12px;
    vertical-align:top;
}

.table-style1 .tb-title{
    display:none;
    font-weight:700;
    color:var(--main-color);
    margin-bottom:4px;
}

@media (max-width:768px){
    .table-style1{
        border: none!important;
    }
        
    .table-style1,
    .table-style1 tbody,
    .table-style1 tr,
    .table-style1 td{
        display:block;
        width:100%;
    }

    .table-style1 tr{
        margin-bottom:30px;
        border:1px solid  #e2e2e2;
        border-radius:8px;
        overflow:hidden;
    }
     .table-style1 tr:nth-child(odd){
        background:#daebff3d;

     }

    .table-style1 td{
        border:none!important;
        border-bottom:1px solid #e2e2e2!important;
    }

    .table-style1 td:last-child{
        border-bottom:none!important;
    }

    .table-style1 .tb-title{
        display:block;
    }
}
@media(max-width: 767px){
    .map-section.top-margin-header,
    .hero,
    .kich-hoat-bh,
    .top-margin-header.padding-b-80,
    .qa-section,
    .hello-sevice {
        padding-bottom: 40px;
    }
    .map-section.top-margin-header,
    .qa-section,
    .map-section,
    .top-margin-header {
        padding-top: 40px;
    }
    .list-item-map {
        max-height: 100%;
    }
    .map-section .header-map .hero-title {
        margin-bottom: 10px;
    }
    .map-section .header-map,
    .hero .hero-title ,
    .qa-section .hero-title {
        margin-bottom: 20px;
    }
    .footer-logo img{
            width: 130px;
    }
    .kq-td-sc, .kq-tc-bh {
        margin-top: 20px;
    }
    .chinh-sach-bao-hanh .qa-section{
        padding-bottom: 0;
    }
    .map-iframe iframe{
        height: 400px;
    }
}