/* ============================================
   LISTING HERO SECTION - MOBILE OPTIMIZED
   ============================================ */

.listing-hero {
    background: linear-gradient(135deg, #1e293b 0%, #1a3a52 100%);
    color: white;
    padding: 20px 0;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.listing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.listing-hero .container {
    position: relative;
    z-index: 1;
    padding: 16px;
}

.listing-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
    opacity: 0.85;
}

.listing-breadcrumb a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 200ms ease;
}

.listing-breadcrumb a:hover {
    color: #fbbf24;
}

.listing-breadcrumb span {
    color: #94a3b8;
}

.listing-hero h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    word-wrap: break-word;
    color: white;
    max-width: 100%;
}

.listing-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.meta-item {
    color: #cbd5e1;
    display: inline-block;
}

.price-large {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .listing-hero {
        padding: 16px 0;
        margin-bottom: 20px;
    }

    .listing-hero .container {
        padding: 12px;
    }

    .listing-hero h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .listing-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 12px;
        gap: 6px;
    }

    .listing-hero-meta {
        font-size: 0.9rem;
        gap: 6px;
    }

    .price-large {
        font-size: 1.15rem;
        padding: 5px 10px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .listing-hero {
        padding: 12px 0;
        margin-bottom: 16px;
    }

    .listing-hero .container {
        padding: 10px;
    }

    .listing-hero h1 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        word-break: break-word;
    }

    .listing-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 8px;
        gap: 4px;
    }

    .listing-hero-meta {
        font-size: 0.85rem;
        gap: 4px;
        flex-wrap: wrap;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .price-large {
        font-size: 1rem;
        padding: 4px 8px;
        margin-top: 4px;
    }
}

@media (max-width: 375px) {
    .listing-hero h1 {
        font-size: 1.1rem;
    }

    .listing-hero-meta {
        font-size: 0.8rem;
    }

    .price-large {
        font-size: 0.95rem;
    }
}

/* Tablet and larger */
@media (min-width: 769px) {
    .listing-hero {
        padding: 32px 0;
        margin-bottom: 32px;
    }

    .listing-hero .container {
        padding: 24px;
    }

    .listing-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .listing-breadcrumb {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .listing-hero-meta {
        font-size: 1.05rem;
        gap: 12px;
    }

    .price-large {
        font-size: 1.5rem;
        padding: 8px 16px;
        margin-top: 12px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .listing-hero h1 {
        font-size: 2.4rem;
    }

    .listing-breadcrumb {
        font-size: 1rem;
    }
}
