/* Navigation - Desktop nav hidden, burger menu only */
.sa-nav {
    display: none;
}

/* Mobile nav overlay (used for all screen sizes now) */
.sa-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sa-primary);
    z-index: var(--sa-z-modal);
    overflow-y: auto;
    padding: 60px 20px 20px;
}

.sa-mobile-nav.active {
    display: block;
}

.sa-mobile-nav__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.sa-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa-mobile-nav a {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sa-mobile-nav a:hover {
    color: var(--sa-accent);
}

/* Legacy nav classes kept for fallback menu */
.sa-nav__list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sa-nav__link {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sa-nav__link:hover {
    color: var(--sa-accent);
}

.sa-nav__link--eksklusiv {
    color: var(--sa-eksklusiv);
}

/* Pulse animation for breaking */
@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
