.sh-6aa42762-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Offset top for WordPress admin bar */
body.admin-bar .sh-6aa42762-wrapper {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .sh-6aa42762-wrapper {
        top: 46px;
    }
}

.sh-6aa42762-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

/* 3 Column Structure */
.sh-6aa42762-col {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.sh-6aa42762-col-left {
    flex: 1 1 20%;
    justify-content: flex-start;
}

.sh-6aa42762-col-center {
    flex: 1 1 50%;
    justify-content: center;
}

.sh-6aa42762-col-right {
    flex: 1 1 30%;
    justify-content: flex-end;
    gap: 24px;
}

/* Logo State Toggle */
.sh-6aa42762-logo-link {
    display: inline-flex;
    line-height: 0;
}

.sh-6aa42762-logo-img {
    height: auto;
    object-fit: contain;
    display: block;
}

.sh-6aa42762-logo-scrolled {
    display: none !important;
}

.sh-6aa42762-nav.is-scrolled .sh-6aa42762-logo-default {
    display: none !important;
}

.sh-6aa42762-nav.is-scrolled .sh-6aa42762-logo-scrolled {
    display: block !important;
}

/* Menu styling */
.sh-6aa42762-menu-container {
    width: 100%;
}

.sh-6aa42762-menu-container ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-6aa42762-menu-container ul.menu > li {
    position: relative;
    padding: 0;
}

.sh-6aa42762-menu-container ul.menu > li > a {
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

/* Submenu dropdown support */
.sh-6aa42762-menu-container ul.menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.sh-6aa42762-menu-container ul.menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sh-6aa42762-menu-container ul.menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Phone Layout */
.sh-6aa42762-phone {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.sh-6aa42762-phone i,
.sh-6aa42762-phone svg {
    transition: fill 0.3s ease, color 0.3s ease;
}

/* CTA Button Layout */
.sh-6aa42762-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 155, 4, 0.25);
    transition: all 0.3s ease;
}

.sh-6aa42762-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 155, 4, 0.35);
}

/* Hamburger default state */
.sh-6aa42762-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.sh-6aa42762-hamburger span {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

/* Off-canvas Core Structure */
.sh-6aa42762-oc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

body.admin-bar .sh-6aa42762-oc-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .sh-6aa42762-oc-overlay {
        top: 46px;
    }
}

.sh-6aa42762-oc-panel {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 10002;
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

body.admin-bar .sh-6aa42762-oc-panel {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .sh-6aa42762-oc-panel {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

.sh-6aa42762-oc-position-left {
    left: 0;
    transform: translateX(-100%);
}

.sh-6aa42762-oc-position-right {
    right: 0;
    transform: translateX(100%);
}

.sh-6aa42762-oc-close {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Active Off-Canvas States */
body.sh-6aa42762-oc-open {
    overflow: hidden !important;
}

body.sh-6aa42762-oc-open .sh-6aa42762-oc-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.sh-6aa42762-oc-open .sh-6aa42762-oc-panel {
    transform: translateX(0);
}

/* Off-Canvas Vertical Menu Content styling */
.sh-6aa42762-oc-panel-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sh-6aa42762-oc-menu {
    width: 100%;
}

.sh-6aa42762-oc-menu ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sh-6aa42762-oc-menu ul.menu li {
    width: 100%;
}

.sh-6aa42762-oc-menu ul.menu li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    font-weight: 700;
    padding: 8px 0;
}

/* Dropdown arrow indicators */
.sh-6aa42762-oc-menu ul.menu .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
    vertical-align: middle;
    margin-left: 10px;
}

.sh-6aa42762-oc-menu ul.menu .menu-item-has-children.is-active > a::after {
    transform: rotate(-45deg);
}

.sh-6aa42762-oc-menu ul.menu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 5px 0 10px 0;
}

.sh-6aa42762-oc-phone {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    gap: 10px;
}

.sh-6aa42762-oc-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Responsive collapse rules per breakpoint */

/* 1. Tablet breakpoint (< 1025px) */
@media screen and (max-width: 1024px) {
    .sh-6aa42762-breakpoint-tablet .sh-6aa42762-col-center {
        display: none;
    }
    .sh-6aa42762-breakpoint-tablet .sh-6aa42762-col-right .sh-6aa42762-phone,
    .sh-6aa42762-breakpoint-tablet .sh-6aa42762-col-right .sh-6aa42762-btn {
        display: none;
    }
    .sh-6aa42762-breakpoint-tablet .sh-6aa42762-hamburger {
        display: flex;
    }
}

/* 2. Mobile Landscape breakpoint (< 768px) */
@media screen and (max-width: 767px) {
    .sh-6aa42762-breakpoint-mobile_landscape .sh-6aa42762-col-center {
        display: none;
    }
    .sh-6aa42762-breakpoint-mobile_landscape .sh-6aa42762-col-right .sh-6aa42762-phone,
    .sh-6aa42762-breakpoint-mobile_landscape .sh-6aa42762-col-right .sh-6aa42762-btn {
        display: none;
    }
    .sh-6aa42762-breakpoint-mobile_landscape .sh-6aa42762-hamburger {
        display: flex;
    }
}

/* 3. Mobile breakpoint (< 480px) */
@media screen and (max-width: 479px) {
    .sh-6aa42762-breakpoint-mobile .sh-6aa42762-col-center {
        display: none;
    }
    .sh-6aa42762-breakpoint-mobile .sh-6aa42762-col-right .sh-6aa42762-phone,
    .sh-6aa42762-breakpoint-mobile .sh-6aa42762-col-right .sh-6aa42762-btn {
        display: none;
    }
    .sh-6aa42762-breakpoint-mobile .sh-6aa42762-hamburger {
        display: flex;
    }
}
