/* Navigation Header Component Layer Stylings Matrix Rules Mapping */

.site-header {
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid transparent;
}

.site-header-luxury-transparent {
    background-color: transparent;
    color: var(--white);
}

.site-header-luxury-transparent .site-logo-anchor {
    color: var(--white);
}

/* Active Class states toggled on thread trigger loops metrics by scroll application scripts */
.site-header.header-scrolled-active-state {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(110, 92, 74, 0.2);
    padding-top: 5px;
    padding-bottom: 5px;
    color: var(--white) !important;
}
.site-header.header-scrolled-active-state .site-logo-anchor {
    color: var(--white) !important;
}

.luxury-nav-menu a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.luxury-nav-menu a:hover {
    color: var(--heritage-gold);
}

.header-action-btn {
    transition: color 0.3s ease, transform 0.2s ease;
}
.header-action-btn:hover {
    color: var(--heritage-gold);
    transform: translateY(-1px);
}

.cart-badge-counter {
    top: -6px;
    right: -10px;
    font-size: 9px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    background-color: var(--heritage-gold);
}

/* Burger Trigger Visual Structures */
.burger-menu-button {
    width: 24px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.burger-bar {
    width: 100%;
    height: 1.5px;
    background-color: currentColor;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mobile Drawer Component Inner Overrides CSS Specifications mapping */
.luxury-mobile-overlay-view {
    background-color: rgba(11, 11, 11, 0.6);
}
.mobile-navigation-drawer {
    background-color: var(--warm-ivory);
    color: var(--luxury-black);
    box-shadow: 10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-navigation-overlay-active .mobile-navigation-drawer {
    transform: translateX(0);
}
.mobile-navigation-overlay-active {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.mobile-nav-list-wrapper a {
    color: var(--luxury-black);
    text-decoration: none;
    display: block;
    padding-y: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Fullscreen Overlay Layer Framework CSS Elements Parameters mapping */
.search-overlay-fullscreen-container {
    background-color: rgba(11, 11, 11, 0.98);
}
.search-overlay-fullscreen-active {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}
