.bega-nav-7fa899e0-wrapper {
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Sticky Class */
.bega-nav-7fa899e0-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Offset top for WordPress Admin Bar when logged in */
body.admin-bar .bega-nav-7fa899e0-wrapper.is-sticky {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .bega-nav-7fa899e0-wrapper.is-sticky {
        top: 46px;
    }
}

.bega-nav-7fa899e0-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    gap: 20px;
    background: #ffffff;
}

/* Logo Group */
.bega-nav-7fa899e0-logo-group {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between logo and pill */
}

.bega-nav-7fa899e0-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bega-nav-7fa899e0-logo-img {
    height: auto;
    width: 100%;
    display: block;
    object-fit: contain;
}

/* Pill Badge */
.bega-nav-7fa899e0-pill {
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #888888;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Menu links */
.bega-nav-7fa899e0-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}
.bega-nav-7fa899e0-menu-link {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* CTA */
.bega-nav-7fa899e0-cta {
    background-color: #e8c373;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-align: center;
}
.bega-nav-7fa899e0-cta:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Mobile Toggle */
.bega-nav-7fa899e0-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.bega-nav-7fa899e0-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .bega-nav-7fa899e0-container {
        padding: 15px 20px;
    }
    .bega-nav-7fa899e0-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 15px;
    }
    .bega-nav-7fa899e0-menu.is-active {
        display: flex;
    }
    .bega-nav-7fa899e0-toggle {
        display: flex;
    }
}
