/* Fashion Navbar Styles - Clean Implementation */
.fashion-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fashion-header.scrolled {
    background: #F5F1EE !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Force hide regular navbars ONLY on fashion pages */
body.fashion-page .header,
body.fashion-page nav:not(.fashion-nav),
body.fashion-page .navbar:not(.fashion-nav),
body.fashion-page .main-header,
body.fashion-page .site-header,
body[data-page="fashion"] .header,
body[data-page="fashion"] nav:not(.fashion-nav),
body[data-page="fashion"] .navbar:not(.fashion-nav) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.fashion-nav {
    width: 100%;
    padding: 20px 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fashion-header.scrolled .fashion-nav {
    padding: 15px 0;
}

.fashion-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand - Left side */
.fashion-nav-brand {
    flex: 0 0 auto;
}

.fashion-brand-link {
    color: #A41616;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.fashion-brand-link:hover {
    color: #8B1214;
}

/* Navigation Menu - Center */
.fashion-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fashion-nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    white-space: nowrap;
    max-width: 100%;
}

.fashion-nav-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Scroll indicators */
.fashion-nav-menu::before,
.fashion-nav-menu::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fashion-nav-menu::before {
    left: 0;
    background: linear-gradient(to right, rgba(245, 241, 238, 0.8), transparent);
}

.fashion-nav-menu::after {
    right: 0;
    background: linear-gradient(to left, rgba(245, 241, 238, 0.8), transparent);
}

.fashion-nav-menu.show-left-shadow::before {
    opacity: 1;
}

.fashion-nav-menu.show-right-shadow::after {
    opacity: 1;
}

.fashion-nav-item {
    position: relative;
    flex-shrink: 0;
}

.fashion-nav-link {
    color: #A41616;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.fashion-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #A41616;
    transition: width 0.3s ease;
}

.fashion-nav-link:hover::after,
.fashion-nav-link.active::after {
    /* width: 100%; */
}

.fashion-nav-link:hover {
    color: #8B1214;
    transform: translateY(-1px);
}

.fashion-nav-link.active {
    color: #A41616;
    font-weight: 400;
}

/* Enquiry Button - Desktop */
.fashion-nav-enquiry {
    flex: 0 0 auto;
    z-index: 1003;
    position: relative;
}

.fashion-enquiry-btn {
    padding: 10px 24px;
    background: transparent;
    color: #A41616;
    border: 1px solid #A41616;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.fashion-enquiry-btn:hover {
    background: #A41616;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(164, 22, 22, 0.3);
}

/* Mobile Menu Toggle */
.fashion-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1004;
    background: none;
    border: none;
    outline: none;
    position: relative;
}

.fashion-hamburger {
    width: 25px;
    height: 2px;
    background: #A41616;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.fashion-nav-toggle.active .fashion-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.fashion-nav-toggle.active .fashion-hamburger:nth-child(2) {
    opacity: 0;
}

.fashion-nav-toggle.active .fashion-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fashion-nav-container {
        padding: 0 15px;
    }
    
    .fashion-nav-list {
        gap: 25px;
        padding: 0 15px;
    }
    
    .fashion-nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 1026px) {
    .fashion-nav-brand .fashion-brand-link {
        font-size: 1.4rem;
    }
    
    .fashion-nav-list {
        gap: 20px;
    }
    
    /* Hide desktop enquiry button */
    .fashion-nav-enquiry:not(.mobile-only) {
        display: none;
    }
    
    /* Show mobile toggle */
    .fashion-nav-toggle {
        display: flex !important;
    }
    
    /* Mobile menu - Full screen like original */
    .fashion-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #F5F1EE;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 40px 40px 40px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        z-index: 1003;
        justify-content: center;
        align-items: center;
    }
    
    .fashion-nav-menu::before,
    .fashion-nav-menu::after {
        display: none; /* Hide scroll indicators on mobile */
    }
    
    .fashion-nav-menu.active {
        transform: translateX(0);
    }
    
    /* Mobile menu list */
    .fashion-nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        flex: 1;
        margin: 0;
        padding: 0;
        display: flex;
        overflow: visible; /* Reset overflow for mobile */
        white-space: normal;
    }
    
    .fashion-nav-item {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
        /* padding: 15px 0; */
    }
    
    .fashion-nav-link {
        font-size: 1.2rem;
        font-weight: 300;
        padding: 15px 20px;
        width: 100%;
        display: block;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #A41616;
        transition: all 0.3s ease;
    }
    
    .fashion-nav-link:hover {
        background: rgba(164, 22, 22, 0.1);
        transform: scale(1.02);
    }
    
    .fashion-nav-link.active {
        /* background: rgba(164, 22, 22, 0.15); */
        font-weight: 500;
    }
    
    /* Mobile enquiry button - Fixed at bottom */
    .fashion-nav-enquiry.mobile-only {
        display: flex !important;
        width: 100%;
        max-width: 280px;
        margin-top: auto;
        padding: 0;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        z-index: 1004;
    }
    
    .fashion-nav-enquiry.mobile-only .fashion-enquiry-btn {
        width: 100%;
        text-align: center;
        padding: 18px 40px;
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        border: 2px solid #A41616;
        background: transparent;
        color: #A41616;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .fashion-nav-enquiry.mobile-only .fashion-enquiry-btn:hover {
        background: #A41616;
        color: #F5F1EE;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(164, 22, 22, 0.3);
    }
}

/* Desktop - hide mobile-only elements */
@media (min-width: 1027px) {
    .fashion-nav-enquiry.mobile-only {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .fashion-nav-container {
        padding: 0 15px;
    }
    
    .fashion-nav-brand .fashion-brand-link {
        font-size: 1.2rem;
    }
    
    .fashion-nav-menu {
        padding: 70px 30px 30px 30px;
    }
    
    .fashion-nav-link {
        font-size: 1.1rem;
        padding: 12px 15px;
        letter-spacing: 1.5px;
    }
    
    .fashion-nav-enquiry.mobile-only {
        bottom: 30px;
        max-width: 250px;
    }
    
    .fashion-nav-enquiry.mobile-only .fashion-enquiry-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
}

/* Animation keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fashion-header {
    animation: fadeInDown 0.6s ease-out;
}
