/* Business Listings and Single Business Content Ultra Premium Styles */
.nx-page-business,
.nx-page-single {
    background: var(--forest-950);
    color: var(--white);
}

.nx-page-single {
    padding-top: 0;
}

.nx-page-business .nx-title,
.nx-page-single .nx-title {
    color: var(--white);
}

.nx-page-business .nx-subtitle,
.nx-page-single .nx-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.nx-page-business .nx-eyebrow,
.nx-page-single .nx-eyebrow {
    color: var(--forest-500);
}

.nx-glass-sidebar {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.nx-detail-sidebar .nx-glass-sidebar {
    top: 120px;
    padding: 40px;
}

.nx-glass-sidebar h2,
.nx-glass-sidebar h3 {
    color: var(--white);
    font-family: 'DM Serif Display', serif;
    margin-top: 0;
}

.nx-glass-sidebar h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.nx-glass-sidebar .nx-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nx-detail-sidebar .nx-glass-sidebar .nx-input {
    margin-bottom: 24px;
}

.nx-glass-sidebar .nx-input option {
    background: var(--forest-900);
    color: var(--white);
}

.nx-glass-sidebar .nx-input:focus {
    border-color: var(--forest-500);
    box-shadow: 0 0 0 3px rgba(40, 181, 135, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.nx-glass-sidebar label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.nx-premium-listing-card {
    position: relative;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    text-decoration: none;
}

.nx-premium-listing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.nx-premium-listing-bg {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nx-premium-listing-card:hover .nx-premium-listing-bg {
    transform: scale(1.05);
}

.nx-premium-listing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 36, 21, 0.95) 0%, rgba(3, 36, 21, 0.6) 40%, rgba(3, 36, 21, 0.2) 100%);
    z-index: -1;
}

.nx-premium-listing-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nx-premium-listing-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nx-premium-listing-meta-item {
    display: flex;
    flex-direction: column;
}

.nx-premium-listing-meta-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.nx-premium-listing-meta-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

.nx-single-hero {
    position: relative;
    height: 60vh;
    min-height: 480px;
    background: var(--forest-900);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nx-single-hero-bg {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: slowPan 25s infinite alternate linear;
}

@keyframes slowPan {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.nx-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--forest-950) 0%, rgba(3, 36, 21, 0.6) 50%, rgba(3, 36, 21, 0.2) 100%);
    z-index: 1;
}

.nx-single-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.nx-single-hero .nx-title {
    color: var(--white);
    font-size: 56px;
    margin-top: 16px;
    line-height: 1.1;
    max-width: 900px;
}

.nx-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
}

.nx-glass-card h3 {
    color: var(--white);
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 24px;
}

.nx-glass-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 16px;
}

.nx-info-table {
    width: 100%;
    border-collapse: collapse;
}

.nx-info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nx-info-table tr:last-child {
    border-bottom: none;
}

.nx-info-table th {
    text-align: left;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    width: 40%;
    font-size: 15px;
}

.nx-info-table td {
    padding: 20px 0;
    color: var(--white);
    font-weight: 600;
    text-align: right;
    font-size: 16px;
}