/* ==========================================================================
   CUSTOM HEADER STYLES (NO CSS ROOT VARIABLES)
   ========================================================================== */

/* --- Container & Basic Layout --- */
.gtranslate_wrapper {
    margin-left: 10px;
}

.hk-header-wrapper {
    position: relative;
    z-index: 999;
}

/* --- Top Bar --- */
.hk-top-bar {
    background-color: #F5F5F5;
    color: #333303;
    padding: 9px 0;
}

.hk-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hk-top-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.hk-top-left .hk-icon {
    margin-right: 4px;
    transform: translateY(-1px);
}

.hk-date {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.hk-divider {
    color: #dee2e6;
    margin: 0 4px;
}

.hk-weather-widget {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hk-weather-city {
    font-weight: 700;
    color: #007E00;
}

.hk-weather-temp em {
    font-style: normal;
    font-weight: 700;
}

.hk-weather-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hk-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hk-top-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hk-top-link {
    font-weight: 600;
    font-size: 13px;
    color: #666;
}

.hk-top-link:hover {
    color: #044973;
}

/* --- Language Dropdown --- */
.hk-lang-dropdown {
    position: relative;
}

.hk-lang-btn {
    background: none;
    border: none;
    color: #495057;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hk-lang-btn:hover {
    background-color: #e9ecef;
}

.hk-chevron {
    transition: transform 0.2s ease;
}

.hk-lang-dropdown.active .hk-chevron {
    transform: rotate(180deg);
}

.hk-lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 4px 0;
    margin: 4px 0 0 0;
    min-width: 110px;
    z-index: 1050;
    display: none;
}

.hk-lang-dropdown.active .hk-lang-list {
    display: block;
}

.hk-lang-list li a {
    display: block;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.hk-lang-list li a:hover {
    background-color: #f1f3f5;
    color: #044973;
}

/* --- Middle Bar --- */
.hk-middle-bar {
    padding: 10px 0;
    position: relative;
}

.hk-middle-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.hk-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.hk-hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #495057;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.hk-hamburger-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hk-hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hk-hamburger-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hk-logo-area {
    flex-shrink: 0;
}

.hk-logo-img {
    height: 78px;
    display: block;
    width: auto;
}

/* --- Ticker / Stock Indices --- */
.hk-ticker-container {
    flex-grow: 1;
    overflow: hidden;
}

.hk-ticker-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hk-ticker-track .hk-ticker-item:not(:last-child) {
    border-right: 1px solid #E5E5E5;
}

.hk-ticker-item {
    display: flex;
    align-items: center;
    padding: 6px 15px;
}

.hk-ticker-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.hk-ticker-icon.down {
    color: #de3727;
    border: 1px solid #de3727;
}

.hk-ticker-icon.up {
    color: #059669;
    border: 1px solid #059669;
}

.hk-ticker-name {
    color: #666;
    margin-bottom: 10px;
}

.hk-ticker-values {
    display: flex;
    gap: 8px;
    line-height: 1.2;
}

.hk-ticker-val {
    font-size: 13px;
    color: #666;
}

.hk-ticker-change {
    font-size: 13px;
}

.hk-ticker-change.down {
    color: #de3727;
}

.hk-ticker-change.up {
    color: #319795;
}

.hk-mobile-search-btn {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f5;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #495057;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hk-mobile-search-btn:hover {
    background-color: #e9ecef;
}

/* --- Navigation Bar --- */
.hk-nav-bar {
    background-color: #044973;
    color: #ffffff;
    position: relative;
}

.hk-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hk-menu-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}

.hk-menu-item {
    position: relative;
    flex: 1;
    border-right: 1px solid #003454;
}

.hk-menu-item.hk-is-home {
    flex: 0 0 auto;
    border-left: 1px solid #003454;
}

/* .hk-menu-item:last-child {
    border-right: none;
} */

.hk-menu-item>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 6px;
    padding: 10px 5px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* .hk-menu-item:hover>a,
.hk-menu-item.active>a {
    background-color: rgba(255, 255, 255, 0.1);
} */


.hk-is-home>a {
    padding-left: 12px;
    padding-right: 12px;
}

/* --- Dropdown Menus (3 Levels) --- */
.hk-dropdown {
    position: absolute;
    background-color: #ffffff;
    list-style: none;
    /* padding: 8px 0; */
    margin: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}

/* Level 2 positioning */
.hk-dropdown-level-2 {
    top: 100%;
    left: 0;
    min-width: 200px;
}

.hk-dropdown-item {
    position: relative;
}

.hk-dropdown-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    color: #2d3748;
    font-size: 14px;
    line-height: 1.3;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.hk-dropdown-item a:hover {
    background-color: #ddd;
}

.hk-submenu-chevron {
    color: #a0aec0;
    margin-left: 10px;
}

/* Level 3 positioning */
.hk-dropdown-level-3 {
    top: 0;
    left: 100%;
    min-width: 210px;
    transform: translateX(10px);
}

/* Hover behaviors to show dropdowns */
.hk-menu-item:hover>.hk-dropdown-level-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hk-dropdown-item:hover>.hk-dropdown-level-3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Custom class for mock indicator */
.hk-mock-dropdown {
    background-color: #fdfdfd;
}

/* --- Search Icon & Input on Desktop --- */
.hk-search-desktop {
    position: relative;
    /* flex: 1; */
    border-right: 1px solid #003454;
}

.hk-search-btn {
    background: none;
    width: 100%;
    border: none;
    color: #ffffff;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

/* .hk-search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
} */

.hk-search-dropdown {
    position: absolute;
    bottom: calc(100% + 4px);
    right: 0;
    z-index: 1000;
    min-width: 240px;
    display: none;
}

.hk-search-dropdown.active {
    display: block;
    animation: hkFadeInUp 0.2s ease;
}

.hk-search-input-wrapper {
    display: flex;
    position: relative;
}

.hk-search-input {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 8px 50px 8px 12px;
    font-size: 14px;
    color: #495057;
}

/* .hk-search-input:focus {
    border-color: #044973;
    outline: none;
} */

.hk-search-submit {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    border: none;
    padding: 8px 11px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@keyframes hkFadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile / Tablet Drawer Layout --- */
.hk-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.hk-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    box-shadow: none;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

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

.hk-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 5px;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px;
}

.hk-drawer-close {
    background: none;
    border: none;
    color: #333333;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hk-drawer-search-wrapper-v2 {
    flex-grow: 1;
    position: relative;
}

.hk-drawer-search-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 8px 40px 8px 16px;
    font-size: 14px;
    outline: none;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.2s ease;
}

.hk-drawer-search-input:focus {
    border-color: #044973;
}

.hk-drawer-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #718096;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px 12px 0;
    background-color: #fafafa;
}

/* Custom Mega Grid for Mobile Drawer */
.hk-mobile-drawer .hk-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

.hk-mobile-drawer .hk-mega-col {
    display: flex;
    flex-direction: column;
}

/* Add bottom border lines between rows (items 1-6 in a 3-column grid) */
.hk-mobile-drawer .hk-mega-col:nth-child(-n+6) {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    /* margin-bottom: 10px; */
}

.hk-mobile-drawer .hk-mega-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hk-mobile-drawer .hk-mega-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hk-mobile-drawer .hk-mega-list-items li a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.hk-mobile-drawer .hk-mega-list-items li a:hover {
    color: #044973;
}

/* Drawer footer handle at the bottom center */
.hk-drawer-footer-handle {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.hk-drawer-footer-handle span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #b0b0b0;
    border-radius: 2px;
}



/* Helper class to prevent page scrolling when menu open */
body.hk-no-scroll {
    overflow: hidden;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (NO CSS ROOT VARIABLES)
   ========================================================================== */


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

    .hk-top-bar-inner {
        justify-content: right;
    }

    .hk-menu-item>a {
        font-size: 11px;
    }

    .hk-menu-item.hk-is-home svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 1120px) {
    .hk-menu-list {
        flex: none;
    }

    .hk-menu-item {
        flex: none;
    }

    .hk-menu-item>a {
        padding: 10px;
    }
}

/* --- Tablet Viewport (max-width: 1023px) --- */
@media (max-width: 1023px) {
    .hk-top-bar {
        font-size: 12px;
    }

    .hk-top-left {
        gap: 6px;
    }

    .hk-divider {
        margin: 0 2px;
    }

    .hk-logo-img {
        height: 50px;
    }

    /* Horizontal scrolling for indices on tablet */
    .hk-ticker-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .hk-ticker-track {
        justify-content: flex-start;
        width: max-content;
        gap: 10px;
    }

    .hk-ticker-item {
        min-width: 140px;
        padding: 4px 8px;
    }

    .hk-ticker-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .hk-ticker-val {
        font-size: 12px;
    }

    /* Hide desktop nav menu completely */
    .hk-nav-bar {
        display: none;
    }

    /* Show Hamburger on mobile/tablet */
    .hk-hamburger-btn {
        display: flex;
    }

    /* Show mobile search button in middle bar */
    .hk-mobile-search-btn {
        display: flex;
    }

    .hk-middle-bar-inner {
        gap: 10px;
    }

    .hk-drawer-lang-select {
        display: none;
    }
}

/* --- Mobile Viewport (max-width: 767px) --- */
@media (max-width: 767px) {


    .hk-logo-img {
        height: 40px;
    }

    .hk-middle-bar {
        padding: 10px 0;
    }

    /* Place Ticker below logo on mobile to make room */
    .hk-middle-bar-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 12px;
        column-gap: 10px;
    }

    .hk-logo-area {
        order: 2;
    }

    .hk-hamburger-btn {
        order: 1;
    }

    .hk-mobile-search-btn {
        order: 3;
    }

    .hk-ticker-container {
        order: 4;
        width: 100%;
        margin-top: 4px;
        border-top: 1px solid #f1f3f5;
        padding-top: 8px;
        /* display: none; */
    }
}

@media (max-width: 575px) {

    .hk-top-link,
    .hk-divider {
        display: none;
    }
}

/* --- Mega Menu Panel --- */
.hk-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fafafa;
    border-bottom: 2px solid #dee2e6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    display: none;
    padding: 20px 0;
}

.hk-mega-menu.active {
    display: block;
    animation: hkFadeInDown 0.25s ease;
}

.hk-mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hk-mega-col {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.hk-mega-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hk-mega-title a {
    color: #000000;
    text-decoration: none;
}

.hk-mega-title a:hover {
    color: #044973;
}

.hk-mega-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hk-mega-list-items li a {
    font-size: 14px;
    color: #333303;
    transition: color 0.2s ease;
}

.hk-mega-list-items li a:hover {
    color: #044973;
}

@media (max-width: 1023px) {
    .hk-mega-menu {
        display: none !important;
    }
}

/* --- Sticky Header / Affix --- */
.hk-nav-bar.is-sticky,
.hk-middle-bar.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hk-middle-bar.is-sticky {
    background-color: #ffffff;
}

/* ==========================================================================
   MOBILE HEADER VERSION 2 STYLES
   ========================================================================== */
.hk-mobile-header-v2 {
    display: none;
    background-color: #ffffff;
}

@media (max-width: 992px) {

    /* Hide desktop header components */
    .hk-top-bar,
    .hk-middle-bar,
    .hk-nav-bar {
        display: none !important;
    }

    /* Display mobile header v2 */
    .hk-mobile-header-v2 {
        display: block !important;
    }

    /* Top Row Layout */
    .hkm-top-row {
        padding: 10px 0;
        background-color: #ffffff;
        border-bottom: 1px solid #f0f0f0;
    }

    .hkm-top-row-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .hkm-logo {
        flex-shrink: 0;
    }

    .hkm-logo-img {
        height: 60px;
        width: auto;
        display: block;
    }

    .hkm-top-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        flex-grow: 1;
    }

    .hkm-top-links {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #666666;
    }

    .hkm-top-link {
        color: #666666;
        text-decoration: none;
        transition: color 0.2s ease;
        font-weight: 700;
    }

    .hkm-top-link:hover {
        color: #044973;
    }

    .hkm-divider {
        color: #dee2e6;
    }

    .hkm-search-box {
        position: relative;
        width: 100%;
        max-width: 220px;
    }

    .hkm-search-box form {
        display: flex;
        position: relative;
        width: 100%;
    }

    .hkm-search-input {
        width: 100%;
        border: 1px solid #ced4da;
        border-radius: 20px;
        padding: 9px 35px 9px 15px;
        font-size: 13px;
        outline: none;
        background-color: #f8f9fa;
        color: #495057;
        transition: border-color 0.2s ease, background-color 0.2s ease;
    }

    .hkm-search-input:focus {
        border-color: #044973;
        background-color: #ffffff;
    }

    .hkm-search-submit {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        background: none;
        border: none;
        padding: 0 12px;
        color: #6c757d;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hkm-search-submit:hover {
        color: #044973;
    }

    /* Middle Row Layout (Dark Blue Navigation Bar) */
    .hkm-nav-bar {
        background-color: #044973;
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1010;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hkm-nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 -10px;
    }

    .hkm-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 2px;
        color: #ffffff !important;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hkm-nav-item:last-child {
        border-right: none;
    }

    /* .hkm-nav-item:hover,
    .hkm-nav-item.active {
        background-color: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    } */

    .hkm-nav-icon {
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }

    .hkm-nav-icon svg {
        width: 18px;
        height: 18px;
    }

    .hkm-nav-label {
        font-size: 12px;
        font-weight: 400;
        display: block;

    }

    /* Bottom Row Layout (Light Grey Date & Weather Bar) */
    .hkm-bottom-bar {
        background-color: #F7F7F7;
        padding: 12px 0;
        border-bottom: 1px solid #e9ecef;
    }

    .hkm-bottom-bar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        font-weight: 500;
        color: #333333;
    }

    .hkm-date {
        /* font-weight: 700; */
    }

    .hkm-weather {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hkm-weather .hk-weather-city {
        font-weight: 700;
        color: #000;
    }

    .hkm-weather .hk-weather-temp em {
        font-style: normal;
        font-weight: 700;
    }

    .hkm-weather .hk-weather-icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    /* Ticker Row Layout */
    .hkm-ticker-bar {
        background-color: #ffffff;
        padding: 6px 0;
        margin-bottom: 15px;
        border-bottom: 1px solid #e9ecef;
    }

    .hkm-ticker-bar .hk-ticker-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
    }

    .hkm-ticker-bar .hk-ticker-track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 10px;
    }

    .hkm-ticker-bar .hk-ticker-item {
        min-width: 200px;
        border-right: 1px solid #e9ecef;
        padding: 2px 8px;
        display: flex;
        align-items: center;
    }

    .hkm-ticker-bar .hk-ticker-item:last-child {
        border-right: none;
    }

    .hkm-ticker-bar .hk-ticker-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .hkm-ticker-bar .hk-ticker-values {
        display: flex;
        gap: 6px;
    }

    .gtranslate_wrapper {
        margin-left: 0;
    }
}

.ads-mobile-header {
    min-height: 200px;
    display: none;
}

.ads-mobile-header img {
    width: 100%;
}

@media (max-width: 768px) {
    .ads-mobile-header {
        display: block;
    }

    .hk-mobile-drawer .hk-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}