/* ─── NAV ────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 12px;
    left: 50%; transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1188px;
    height: 55px;
    background: #292E35;
    border-radius: 30px;
    z-index: 1000;
    display: flex; align-items: center;
}
.nav-inner {
    width: 100%; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
}
.nav-logo {
    height: 35px; width: auto; display: block; flex-shrink: 0;
}
.nav-links {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; list-style: none; flex: 1;
}
.nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px; font-style: normal; font-weight: 500;
    line-height: 20px; letter-spacing: -0.35px;
    color: var(--text2); transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-active { color: var(--orange); }
.nav-links .nav-product { color: #55D6F7; }
.nav-links .nav-product:hover { opacity: 0.78; }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.btn-nav {
    padding: 7px 20px; background: var(--orange); color: #0A0E14;
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
    border: none; border-radius: 50px; cursor: pointer;
    transition: background 0.18s, transform 0.15s; white-space: nowrap;
}
.btn-nav:hover { background: #e09070; color: #0A0E14; transform: translateY(-1px); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 12px;
    min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
}
.mobile-nav {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98); z-index: 999;
    flex-direction: column; padding: 32px 28px; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 18px; font-weight: 700; color: var(--text);
    padding: 16px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav .m-cta {
    display: block; margin-top: 24px; padding: 14px;
    background: var(--orange); color: var(--white);
    text-align: center; border-radius: 50px;
    font-weight: 700; font-size: 15px;
}
@media (max-width: 768px) {
    nav { width: calc(100% - 24px); }
    .nav-links, .btn-nav { display: none; }
    .nav-toggle { display: flex; }
}
