/*
 * @package BusinessSaleTheme
 * Extracted from: sections-featured-listings.css
 */
/* ── Section ── */
.fl-section {
    position: relative;
    padding: 5rem 1.5rem;
    background: #050505;
    overflow: hidden;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* Ambient glows */
.fl-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.fl-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.06), transparent 70%);
    top: -150px;
    right: -100px;
}
.fl-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.04), transparent 70%);
    bottom: -100px;
    left: -80px;
}

.fl-container {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.fl-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.fl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #facc15;
    margin-bottom: 0.625rem;
}
.fl-title {
    margin: 0 0 0.375rem;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.fl-desc {
    margin: 0;
    font-size: 0.9375rem;
    color: #a1a1aa;
    line-height: 1.5;
}
.fl-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    color: #a1a1aa;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
    flex-shrink: 0;
}
.fl-view-all:hover {
    border-color: rgba(129,140,248,0.2);
    color: #c7d2fe;
    background: rgba(129,140,248,0.05);
}
.fl-view-all svg {
    transition: transform 0.2s;
}
.fl-view-all:hover svg {
    transform: translateX(2px);
}

/* ── Grid ── */
.fl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* ── Card ── */
.fl-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(20px);
}
.fl-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--delay),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--delay),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.35s ease;
}
.fl-card:hover {
    background: rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}
.fl-card.visible:hover {
    transition-delay: 0s;
}

/* ── Card Image ── */
.fl-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}
.fl-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.fl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
    filter: brightness(0.85) saturate(0.9);
}
.fl-card:hover .fl-card-img img {
    transform: scale(1.06);
    filter: brightness(0.95) saturate(1);
}

/* Image overlay */
.fl-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Placeholder */
.fl-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #0f0f11;
    color: #52525b;
}

/* Badges */
.fl-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.375rem;
    z-index: 2;
}
.fl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fl-badge-featured {
    background: rgba(250,204,21,0.12);
    border: 1px solid rgba(250,204,21,0.2);
    color: #facc15;
}
.fl-badge-nda {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.15);
    color: #fca5a5;
}

/* Category tag */
.fl-cat-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d4d4d8;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    z-index: 2;
    transition: all 0.2s;
}
.fl-cat-tag:hover {
    background: rgba(129,140,248,0.15);
    border-color: rgba(129,140,248,0.25);
    color: #c7d2fe;
}

/* ── Card Body ── */
.fl-card-body {
    padding: 1.125rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Title */
.fl-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.fl-card-title a {
    color: #e4e4e7;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fl-card:hover .fl-card-title a {
    color: #ffffff;
}

/* Location */
.fl-card-loc {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    color: #52525b;
}
.fl-card-loc svg {
    flex-shrink: 0;
    color: #3f3f46;
}

/* Price */
.fl-card-price {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0;
    margin-top: 0.25rem;
}
.fl-price-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}
.fl-price-label {
    font-size: 0.6875rem;
    color: #3f3f46;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-top: 0.125rem;
}

/* Metrics row */
.fl-card-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.75rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
}
.fl-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0 0.5rem;
}
.fl-metric-label {
    font-size: 0.625rem;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.fl-metric-val {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #d4d4d8;
    font-variant-numeric: tabular-nums;
}
.fl-metric-highlight {
    color: #34d399;
}
.fl-metric-divider {
    width: 1px;
    height: 1.75rem;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
}

/* CTA */
.fl-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.6875rem 1rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: 0.125rem;
}
.fl-cta-primary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #d4d4d8;
}
.fl-cta-primary:hover {
    background: rgba(129,140,248,0.1);
    border-color: rgba(129,140,248,0.2);
    color: #c7d2fe;
}
.fl-cta-primary svg {
    transition: transform 0.2s;
}
.fl-cta-primary:hover svg {
    transform: translateX(2px);
}

.fl-cta-nda {
    background: rgba(250,204,21,0.06);
    border: 1px solid rgba(250,204,21,0.12);
    color: #fde047;
}
.fl-cta-nda:hover {
    background: rgba(250,204,21,0.1);
    border-color: rgba(250,204,21,0.2);
    color: #fef08a;
}
.fl-cta-nda svg:last-child {
    transition: transform 0.2s;
}
.fl-cta-nda:hover svg:last-child {
    transform: translateX(2px);
}

/* ── Empty State ── */
.fl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 4rem 2rem;
    text-align: center;
    color: #3f3f46;
}
.fl-empty-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 0.5rem;
}
.fl-empty p {
    font-size: 0.9375rem;
    margin: 0;
}
.fl-empty-link {
    font-size: 0.8125rem;
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s;
}
.fl-empty-link:hover {
    color: #a5b4fc;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fl-section {
        padding: 3.5rem 1rem;
    }
    .fl-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }
    .fl-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .fl-card-img {
        aspect-ratio: 16 / 9;
    }
    .fl-price-value {
        font-size: 1.25rem;
    }
    .fl-card-body {
        padding: 1rem;
    }
}

