/* ============================================================
   LISTING.CSS — Category & Subcategory Listing Pages
   Used by: curtain_listing.html, bedding_subcategory.html,
            curtain_all.html & bedding_all.html
   Vitech Home & Living
   ============================================================ */

/* ============================================================
   LISTING PAGE
   ============================================================ */
.listing-page {
    padding-top: 2rem;
    padding-bottom: 60px;
}

/* ============================================================
   LISTING HEADER
   ============================================================ */
.listing-page .page-title {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.listing-page .page-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* ============================================================
   LISTING SUBHEADING (for grouped sections)
   ============================================================ */
.listing-subheading {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary-dark);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-bg-section);
}

/* ============================================================
   PRODUCT GRID (Inherits from cards.css)
   ============================================================ */
.listing-page .product-grid {
    margin-top: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .listing-page {
        padding-top: 1.5rem;
        padding-bottom: 40px;
    }

    .listing-page .page-title {
        font-size: var(--font-size-h3);
    }

    .listing-page .page-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .listing-subheading {
        font-size: var(--font-size-h4);
        margin: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .listing-page {
        padding-top: 1rem;
    }

    .listing-page .page-title {
        font-size: 1.35rem;
    }
}