.psh-76298eeb__nav {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease, padding 0.3s ease, height 0.3s ease;
    box-sizing: border-box;
}

body.admin-bar .psh-76298eeb__nav--fixed {
    top: var(--wp-admin--admin-bar--height, 32px) !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar .psh-76298eeb__nav--fixed {
        top: 46px !important;
    }
}

.psh-76298eeb__nav--fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
}

.psh-76298eeb__nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative !important;
}

.psh-76298eeb__logo-wrap {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.psh-76298eeb__logo-link {
    display: block;
    text-decoration: none;
    line-height: 1;
}

.psh-76298eeb__logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.psh-76298eeb__logo-img {
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.psh-76298eeb__logo-img--sticky,
.psh-76298eeb__logo-img--mobile {
    display: none !important;
}

.psh-76298eeb__nav--sticky .psh-76298eeb__logo-img--main {
    display: none !important;
}
.psh-76298eeb__nav--sticky .psh-76298eeb__logo-img--sticky {
    display: block !important;
}

@media (max-width: 768px) {
    .psh-76298eeb__logo-img--main,
    .psh-76298eeb__logo-img--sticky {
        display: none !important;
    }
    .psh-76298eeb__logo-img--mobile {
        display: block !important;
    }
}

/* Burger Button */
.psh-76298eeb__burger-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.psh-76298eeb__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.psh-76298eeb__burger-line {
    background-color: #000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 4px;
    display: block;
}

.psh-76298eeb__burger-line:nth-child(1) { width: 100%; }
.psh-76298eeb__burger-line:nth-child(2) { width: 75%; }
.psh-76298eeb__burger--3 .psh-76298eeb__burger-line:nth-child(3) { width: 50%; }

.psh-76298eeb__burger-btn:hover .psh-76298eeb__burger-line {
    width: 100% !important;
}

/* Fullscreen Split Panel */
.psh-76298eeb__panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.6s step-start, opacity 0.6s ease;
}

body.admin-bar .psh-76298eeb__panel {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .psh-76298eeb__panel {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.psh-76298eeb__panel--open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Left Side Styling */
.psh-76298eeb__panel-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.psh-76298eeb__panel-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.psh-76298eeb__panel-left-img--zoom:hover {
    transform: scale(1.08);
}

.psh-76298eeb__panel-left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    pointer-events: none;
}

/* Right Side Styling */
.psh-76298eeb__panel-right {
    flex: 1;
    background-color: #ffffff;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.psh-76298eeb__panel--open .psh-76298eeb__panel-left,
.psh-76298eeb__panel--open .psh-76298eeb__panel-right {
    transform: translateX(0);
}

/* New layout additions for Top Left Logo and Panel Top Bar */
.psh-76298eeb__panel-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 15;
    pointer-events: none;
}

.psh-76298eeb__top-left-logo {
    position: absolute;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.psh-76298eeb__top-left-logo-link {
    display: inline-flex;
    text-decoration: none;
    line-height: 1;
}

/* FEATURE 1 FIXED: Perfect Logo Alignment using Flexbox */
.psh-76298eeb__panel-logo-wrap {
    flex: 1;
    display: flex;
    pointer-events: auto;
}

.psh-76298eeb__logo-container,
.psh-76298eeb__logo-link {
    display: inline-flex;
    align-items: center;
}

/* Close Button */
.psh-76298eeb__close-btn {
    position: absolute !important;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    padding: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
}

.psh-76298eeb__close-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Right Side Inner Content */
.psh-76298eeb__panel-right-content {
    padding: 80px 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

/* Navigation and Menu Links */
.psh-76298eeb__navigation {
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
}

.psh-76298eeb__menu,
.psh-76298eeb__menu-item {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}

.psh-76298eeb__menu::before,
.psh-76298eeb__menu::after,
.psh-76298eeb__menu-item::before,
.psh-76298eeb__menu-item::after,
.psh-76298eeb__menu-link::before,
.psh-76298eeb__menu-link::after {
    content: "" !important;
    display: none !important;
}

.psh-76298eeb__menu-item {
    display: block !important;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.psh-76298eeb__panel--open .psh-76298eeb__menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation of menu items */
.psh-76298eeb__panel--open .psh-76298eeb__menu-item:nth-child(1) { transition-delay: 0.2s; }
.psh-76298eeb__panel--open .psh-76298eeb__menu-item:nth-child(2) { transition-delay: 0.3s; }
.psh-76298eeb__panel--open .psh-76298eeb__menu-item:nth-child(3) { transition-delay: 0.4s; }
.psh-76298eeb__panel--open .psh-76298eeb__menu-item:nth-child(4) { transition-delay: 0.5s; }
.psh-76298eeb__panel--open .psh-76298eeb__menu-item:nth-child(5) { transition-delay: 0.6s; }
.psh-76298eeb__panel--open .psh-76298eeb__menu-item:nth-child(6) { transition-delay: 0.7s; }

.psh-76298eeb__menu-link {
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: inherit;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.psh-76298eeb__menu-link-span {
    display: inline-block;
    position: relative;
}

/* Arrow style */
.psh-76298eeb__menu-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.psh-76298eeb__menu-link:hover .psh-76298eeb__menu-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* HOVER ANIMATION: Underline Grow */
.psh-76298eeb-hover-underline-grow .psh-76298eeb__menu-link-span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.psh-76298eeb-hover-underline-grow .psh-76298eeb__menu-link:hover .psh-76298eeb__menu-link-span::after {
    transform: scaleX(1);
}

/* HOVER ANIMATION: Underline Slide */
.psh-76298eeb-hover-underline-slide .psh-76298eeb__menu-link-span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.psh-76298eeb-hover-underline-slide .psh-76298eeb__menu-link:hover .psh-76298eeb__menu-link-span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* HOVER ANIMATION: Fade Out Others */
.psh-76298eeb-hover-fade:hover .psh-76298eeb__menu-link:not(:hover) {
    opacity: 0.35;
}

/* HOVER ANIMATION: Scale */
.psh-76298eeb-hover-scale .psh-76298eeb__menu-link {
    transition: transform 0.3s ease, color 0.3s ease;
}
.psh-76298eeb-hover-scale .psh-76298eeb__menu-link:hover {
    transform: scale(1.08);
}

/* HOVER ANIMATION: Slide Right */
.psh-76298eeb-hover-slide-right .psh-76298eeb__menu-link {
    transition: transform 0.3s ease, color 0.3s ease;
}
.psh-76298eeb-hover-slide-right .psh-76298eeb__menu-link:hover {
    transform: translateX(15px);
}

/* HOVER ANIMATION: Slide Left */
.psh-76298eeb-hover-slide-left .psh-76298eeb__menu-link {
    transition: transform 0.3s ease, color 0.3s ease;
}
.psh-76298eeb-hover-slide-left .psh-76298eeb__menu-link:hover {
    transform: translateX(-15px);
}

/* HOVER ANIMATION: Modern Luxury Hover */
.psh-76298eeb-hover-modern-luxury .psh-76298eeb__menu-link-span {
    overflow: hidden;
}
.psh-76298eeb-hover-modern-luxury .psh-76298eeb__menu-link-span::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: currentColor;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.psh-76298eeb-hover-modern-luxury .psh-76298eeb__menu-link:hover .psh-76298eeb__menu-link-span {
    transform: translateY(-100%);
}

/* Bottom Information Grid */
.psh-76298eeb__bottom-info {
    margin-top: auto;
    border-top: 1px solid #e1e1e1;
    padding-top: 40px;
}

.psh-76298eeb__info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.psh-76298eeb__info-block {
    display: flex;
    flex-direction: column;
}

.psh-76298eeb__info-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.psh-76298eeb__info-val {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.psh-76298eeb__info-link {
    font-size: 13px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.psh-76298eeb__info-link:hover {
    opacity: 0.7;
}

.psh-76298eeb__socials {
    display: flex;
    gap: 15px;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
}

.psh-76298eeb__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
}

.psh-76298eeb__info-copyright {
    font-size: 11px;
    margin: 0;
}

/* FEATURE 2: CLOSE ANIMATION CLASSES FOR SMOOTH EXIT STATE */
.psh-76298eeb__panel--closing {
    opacity: 0 !important;
    pointer-events: none !important;
}

.psh-76298eeb__panel--closing .psh-76298eeb__panel-left {
    transform: translateX(-100%) !important;
}

.psh-76298eeb__panel--closing .psh-76298eeb__panel-right {
    transform: translateX(100%) !important;
}

.psh-76298eeb__panel--closing .psh-76298eeb__menu-item {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.psh-76298eeb__panel--closing .psh-76298eeb__close-btn,
.psh-76298eeb__panel--closing .psh-76298eeb__bottom-info,
.psh-76298eeb__panel--closing .psh-76298eeb__top-left-logo {
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .psh-76298eeb__panel-left {
        display: none !important;
    }
    .psh-76298eeb__panel-right {
        flex: 100%;
        transform: translateY(100%);
    }
    .psh-76298eeb__panel--open .psh-76298eeb__panel-right {
        transform: translateY(0);
    }
    .psh-76298eeb__panel--closing .psh-76298eeb__panel-right {
        transform: translateY(100%) !important;
    }
}
