:root {
    --color-bg: #faf6f1;
    --color-surface: #f0e8dc;
    --color-surface-2: #e8ddd0;
    --color-wood: #a07850;
    --color-wood-dark: #7a5c3a;
    --color-wood-light: #c49a6c;
    --color-text: #3a2e24;
    --color-text-muted: #7a6d60;
    --color-accent: #8b5e3c;
    --color-cream: #f5efe7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    background: rgba(250, 246, 241, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(160, 120, 80, 0.15);
    transition: all 0.3s ease;
}

nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-wood-dark);
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav .nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav .nav-links a:hover {
    color: var(--color-wood-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a07850' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-wood);
    color: var(--color-wood-dark);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
    border-radius: 2px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-wood-dark) 50%, var(--color-wood) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-wood) 0%, var(--color-accent) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 120, 80, 0.3);
}

.hero-qr {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.hero-qr-item {
    text-align: center;
}

.hero-qr-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid rgba(160, 120, 80, 0.2);
    background: #fff;
    padding: 4px;
}

.hero-qr-item span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Section styling */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-wood);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
}

/* Story Section */
.story {
    background: var(--color-surface);
}

.story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-wood-dark);
}

.story-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

.story-highlight {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.story-stat {
    text-align: center;
}

.story-stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-wood);
    display: block;
}

.story-stat .label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(160, 120, 80, 0.15);
}

/* Gallery */
.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
    border: 1px solid rgba(160, 120, 80, 0.12);
    border-radius: 4px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Pricing */
.pricing {
    background: var(--color-surface);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-cream);
    border: 1px solid rgba(160, 120, 80, 0.2);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-wood), transparent);
}

.pricing-card .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .service-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-wood-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card .price-note {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.pricing-card .divider {
    width: 60px;
    height: 1px;
    background: var(--color-wood);
    margin: 2rem auto;
    opacity: 0.4;
}

.pricing-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(160, 120, 80, 0.1);
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.pricing-detail .icon {
    color: var(--color-wood);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 24px;
}

/* Contact */
.contact {
    background: var(--color-bg);
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(160, 120, 80, 0.3);
    color: var(--color-wood);
    font-size: 1.2rem;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--color-cream);
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-cta {
    background: var(--color-surface);
    border: 1px solid rgba(160, 120, 80, 0.15);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
}

.contact-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-wood-dark);
}

.contact-cta p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cta a.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-wood) 0%, var(--color-accent) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.contact-cta a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 120, 80, 0.3);
}

/* Facebook CTA */
.social-section {
    padding: 4rem 2rem;
    background: var(--color-surface);
    text-align: center;
}

.social-section a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(160, 120, 80, 0.3);
    color: var(--color-wood-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.social-section a:hover {
    background: rgba(160, 120, 80, 0.1);
    border-color: var(--color-wood);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(160, 120, 80, 0.15);
    background: var(--color-surface);
}

footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-wood-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Language switcher */
.lang-switcher-group {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(160, 120, 80, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    border-right: 1px solid rgba(160, 120, 80, 0.2);
    color: var(--color-wood-dark);
    cursor: pointer;
    padding: 0.4rem 0.65rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn:hover:not(.lang-active) {
    background: rgba(160, 120, 80, 0.1);
}

.lang-btn.lang-active {
    background: var(--color-wood-dark);
    color: #fff;
    cursor: default;
}

.lang-mobile-toggle {
    display: none;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown .lang-switcher-group {
    display: flex;
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-wood-dark);
    transition: all 0.3s ease;
}

/* Auth button in nav */
.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--color-wood) 0%, var(--color-accent) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(160, 120, 80, 0.3);
}

.auth-btn.auth-btn-outline {
    background: none;
    border: 1px solid rgba(160, 120, 80, 0.3);
    color: var(--color-wood-dark);
}

.auth-btn.auth-btn-outline:hover {
    background: rgba(160, 120, 80, 0.1);
    border-color: var(--color-wood);
    box-shadow: none;
    transform: none;
}

/* Login modal */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal {
    background: var(--color-cream);
    border: 1px solid rgba(160, 120, 80, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}

.login-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-wood-dark);
    margin-bottom: 0.5rem;
}

.login-modal p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.login-modal .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.login-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(160, 120, 80, 0.2);
    border-radius: 4px;
    background: #fff;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-option:hover {
    border-color: var(--color-wood);
    background: var(--color-bg);
}

.login-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(250, 246, 241, 0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(160, 120, 80, 0.15);
    }

    nav .nav-links.active {
        display: flex;
    }

    section {
        padding: 3rem 1.25rem;
    }

    .hero {
        min-height: auto;
        padding: 7rem 1.25rem 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .story-image::after {
        display: none;
    }

    .story-image img {
        height: 300px;
    }

    .story-text h3 {
        font-size: 1.4rem;
    }

    .story-highlight {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .story-stat .number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .gallery-item img {
        height: auto;
        max-height: 280px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card .price {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
    }

    .social-section {
        padding: 2.5rem 1.25rem;
    }

    .lang-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: 1px solid rgba(160, 120, 80, 0.3);
        border-radius: 3px;
        color: var(--color-wood-dark);
        cursor: pointer;
        padding: 0.4rem;
        transition: all 0.3s ease;
    }

    .lang-mobile-toggle:hover {
        background: rgba(160, 120, 80, 0.1);
    }

    .lang-mobile-toggle svg {
        width: 18px;
        height: 18px;
    }

    .lang-dropdown .lang-switcher-group {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        flex-direction: column;
        border: 1px solid rgba(160, 120, 80, 0.3);
        border-radius: 3px;
        overflow: hidden;
        background: rgba(250, 246, 241, 0.97);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 200;
    }

    .lang-dropdown.open .lang-switcher-group {
        display: flex;
    }

    .lang-dropdown .lang-btn {
        border-right: none;
        border-bottom: 1px solid rgba(160, 120, 80, 0.2);
        padding: 0.5rem 1rem;
        text-align: center;
        white-space: nowrap;
    }

    .lang-dropdown .lang-btn:last-child {
        border-bottom: none;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Member Dashboard Styles ===== */
.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-wood-dark);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-container {
        padding: 5rem 1.25rem 3rem;
    }
}

.dashboard-card {
    background: var(--color-cream);
    border: 1px solid rgba(160, 120, 80, 0.2);
    border-radius: 6px;
    padding: 2rem;
}

.dashboard-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--color-wood-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-card.full-width {
    grid-column: 1 / -1;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(160, 120, 80, 0.1);
    font-size: 0.9rem;
}

.profile-field:last-child {
    border-bottom: none;
}

.profile-field .label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.profile-field .value {
    color: var(--color-text);
}

.profile-field input {
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(160, 120, 80, 0.3);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text);
    background: #fff;
    width: 200px;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--color-wood) 0%, var(--color-accent) 100%);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(160, 120, 80, 0.3);
}

/* Loyalty card */
.loyalty-progress {
    margin: 1rem 0;
}

.loyalty-bar {
    width: 100%;
    height: 12px;
    background: var(--color-surface-2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.loyalty-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-wood), var(--color-wood-light));
    border-radius: 6px;
    transition: width 0.5s ease;
}

.loyalty-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.loyalty-big-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-wood);
    line-height: 1;
}

/* Booking list */
.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(160, 120, 80, 0.1);
}

.booking-item:last-child {
    border-bottom: none;
}

.booking-date {
    font-weight: 500;
    color: var(--color-text);
}

.booking-time {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.booking-status {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.booking-status.confirmed {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.booking-status.pending {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.booking-status.completed {
    background: rgba(160, 120, 80, 0.1);
    color: var(--color-wood);
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Hide auth menu items by default */
.login-hidden,
.auth-hidden {
    display: none !important;
}
