#header-main {
    background: white;
    padding: 24px 44px;
}

.custom-header-inner {
    display: flex;
    justify-content: space-between;
}

.header-col.logo-col {
    display: flex;
    align-items: center;
    gap: 64px;
}

.header-col.logo-col a img {
    width: 180px;
}
.custom-header-menu {list-style: none;margin: 0;padding: 0;display: flex;justify-content: center;gap: 24px;}
.custom-header-menu li { 
    display: inline-block; 
    font-family: 'Figtree';
    font-size: 16px;
}
.custom-header-menu a { text-decoration: none; color: #333; font-weight: 500; line-height: 1; padding: 6px 4px; }
.header-cta {
    display: inline-block;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 4px;
    background: #F90;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Figtree';
    line-height: 12px;
}
.header-cta:hover { opacity: 0.92; }
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin-left: 8px;
    cursor: pointer;
}

/* Hamburger visuals */
.hamburger-box { display: inline-block; width: 28px; height: 18px; position: relative; }
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    display: block;
    background-color: #222;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    right: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ""; top: -8px; }
.hamburger-inner::after  { content: ""; bottom: -8px; }

/* When menu open -> animate hamburger to X */
.custom-astra-header.menu-open .hamburger-inner { transform: rotate(45deg); }
.custom-astra-header.menu-open .hamburger-inner::before { transform: rotate(-90deg) translateX(-8px); top: 0; }
.custom-astra-header.menu-open .hamburger-inner::after  { opacity: 0; transform: translateX(20px); }

/* Mobile menu (hidden by default) */
.mobile-menu {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    position: relative;
    box-shadow: 0 8px 20px rgba(10,10,10,0.06);
}
button#mobile-menu-toggle:focus {
    background: #c4d4ff;
}
.mobile-menu-inner { max-width: 1200px; margin: 0 auto; padding: 12px 20px; box-sizing: border-box; }

/* Mobile menu list */
.mobile-header-menu { list-style: none; margin: 0; padding: 0; display: block; }
.mobile-header-menu li { border-bottom: 1px solid #f1f1f1; }
.mobile-header-menu li a { display: block; padding: 12px 8px; text-decoration: none; color: #333; font-weight: 500; }

/* Prevent body scroll when menu open */
body.mobile-menu-open { overflow: hidden; }

/* Responsive breakpoints */
@media (max-width: 780px) {
    .custom-header-inner {
        grid-template-columns: 1fr auto; /* logo left, controls right */
        gap: 12px;
    }

    /* Hide desktop menu */
    .menu-col { display: none; }

    /* Show hamburger toggle */
    .mobile-menu-toggle { display: inline-block; }

    /* Hide CTA on mobile (remove this if you want CTA visible) */
    .header-cta { display: none; }
}

/* small screen padding adjustments */
@media (max-width: 420px) {
    .custom-header-inner { padding-left: 12px; padding-right: 12px; }
    .mobile-menu-inner { padding-left: 12px; padding-right: 12px; }
    #header-main{
        padding: 10px;
    }
}