/* ===== NAVBAR ===== */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

.nav-header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.nav-header>.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 20px;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-text-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.75rem;
    color: #7a0d1c;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.3px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.nav-link-item {
    font-size: .9rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color .18s;
    white-space: nowrap;
}

.nav-link-item:hover {
    color: #8B1A2B;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-review-btn {
    background: #8B1A2B;
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
}

.nav-review-btn:hover {
    opacity: .88;
    color: #fff;
    transform: translateY(-1px);
}

.nav-profile-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #8B1A2B;
    background: #8B1A2B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1rem;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.nav-profile-btn:hover {
    background: #6b0f1a;
    border-color: #6b0f1a;
    color: #fff !important;
    transform: scale(1.05);
}

/* Guest login icon — filled dark red circle with white user icon */
.nav-profile-btn--guest {
    background: #8B1A2B;
    border-color: #8B1A2B;
    color: #fff !important;
    font-size: 1rem;
}

.nav-profile-btn--guest:hover {
    background: #6b0f1a;
    border-color: #6b0f1a;
    color: #fff !important;
    transform: scale(1.05);
}

.nav-profile-wrap {
    position: relative;
}

.nav-profile-wrap:hover .nav-dropdown {
    display: block;
}

.nav-business-wrap {
    position: relative;
}

.nav-business-wrap:hover .nav-dropdown {
    display: block;
}

.nav-business-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: .9rem;
    font-weight: 500;
    color: #333;
    transition: color .18s;
    display: flex;
    align-items: center;
}

.nav-business-btn:hover {
    color: #8B1A2B;
}

.nav-business-dropdown {
    left: 0;
    right: auto;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    right: 0;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    min-width: 200px;
    padding: 8px 0;
    display: none;
    z-index: 999;
}

/* Invisible hover bridge — fills the gap between button and dropdown */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown.open {
    display: block;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    font-size: .88rem;
    color: #333;
    text-decoration: none;
    transition: background .15s;
}

.nav-dropdown a:hover {
    background: #ffe5e5ee;
    color: #8B1A2B;
}

.nav-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 0;
}

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

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all .2s;
}

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 12px 0;
}

.nav-mobile-menu.open {
    display: flex;
}

.nav-mobile-link {
    padding: 12px 24px;
    font-size: .92rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}

.nav-mobile-link:hover {
    color: #8B1A2B;
}

.nav-mobile-link--red {
    color: #8B1A2B;
    font-weight: 600;
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .nav-review-btn {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo-text-brand {
        font-size: 1.45rem;
    }

    .nav-inner {
        height: 64px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .nav-logo-text-brand {
        font-size: 1.25rem;
    }

    .nav-inner {
        height: 56px;
    }
}
