/* ========================================
   NAVIGATION
   Floating nav, mobile menu, logo
======================================== */

.floating-nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    pointer-events: none;
}



/* Logo on Left */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    padding: 10px 20px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.logo-33 {
    display: flex;
    align-items: center;
}

.logo-33 svg {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Do Hyeon', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

/* Center Navigation */
.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.center-nav::before {
    display: none;
}

.center-nav .nav-item {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
}

.center-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Right Actions */
.right-actions {
    margin-left: auto;
    display: flex;
    gap: 5px;
    pointer-events: auto;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn::before {
    display: none;
}

.cart-btn {
    background: rgba(30, 30, 30, 0.7);
    padding: 8px 16px;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.cart-btn i {
    margin: 0;
}

.currency-btn {
    background: rgba(30, 30, 30, 0.7);
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.currency-btn:hover {
    background: rgba(30, 30, 30, 0.7);
}

.currency-btn .currency-label {
    letter-spacing: 0.05em;
    color: var(--text-light);
    opacity: 1 !important;
    font-weight: 700;
}

.login-btn {
    text-transform: uppercase;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
}

.login-btn:hover {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
}

/* Hide old navbar styles */
.navbar {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}