/* Buyer Listings and Single Buyer Content Ultra Premium Styles */
.nx-page-buyer,
.nx-page-single {
    background: var(--forest-950);
    color: var(--white);
}

.nx-page-single {
    padding-top: 0;
}

.nx-page-buyer .nx-title,
.nx-page-single .nx-title {
    color: var(--white);
}

.nx-page-buyer .nx-subtitle,
.nx-page-single .nx-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.nx-page-buyer .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-glass-sidebar h2,
.nx-glass-sidebar h3 {
    color: var(--white);
    font-family: 'DM Serif Display', serif;
    margin-top: 0;
    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-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);
}

.nx-premium-buyer-card {
    position: relative;
    height: auto;
    min-height: 400px;
    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: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    text-decoration: none;
}

.nx-premium-buyer-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);
    background: rgba(255, 255, 255, 0.04);
}

.nx-premium-buyer-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(211, 155, 59, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transition: transform 1s ease;
}

.nx-premium-buyer-card:hover .nx-premium-buyer-bg {
    transform: scale(1.2);
}

.nx-premium-buyer-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-buyer-meta-item {
    display: flex;
    flex-direction: column;
}

.nx-premium-buyer-meta-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.nx-premium-buyer-meta-value {
    font-size: 13px;
    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;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 155, 59, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.nx-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--forest-950) 0%, rgba(3, 36, 21, 0.4) 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;
}