/* =========================================================
   OTHER PRODUCTS PAGE — ADDITIONS
   Append this block to assets/css/other-products.css
   (uses the same design tokens defined in :root)
========================================================= */

/* ---- Page banner (Other Products variant) ---- */
.page-banner.other-products-banner {
    background-color: var(--espresso);
    background-image: linear-gradient(180deg, rgba(46, 33, 24, 0.92), rgba(46, 33, 24, 0.92)),
        url('../images/other-banner.jfif');
    background-size: cover;
    background-position: center;
    padding: 4.5rem 0 3rem;
    text-align: center;
}

.page-banner.other-products-banner .section-eyebrow-light {
    display: block;
}

.page-banner.other-products-banner .page-banner-title {
    font-family: var(--font-display);
    color: var(--ivory);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-banner.other-products-banner .page-banner-text {
    font-family: var(--font-body);
    color: rgba(251, 247, 241, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

/* ---- Product grid refinement ---- */
.collection-section .product-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background-color: var(--ivory);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.collection-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 33, 24, 0.18);
}

.collection-section .product-image-wrap {
    aspect-ratio: 5/6;
    overflow: hidden;
    background-color: var(--cream);
}

.collection-section .product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-section .product-card:hover .product-image-wrap img {
    transform: scale(1.07);
}

.product-name {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0.9rem 0.5rem;
    margin: 0;
    color: var(--walnut);
    border-top: 1px solid var(--line);
    background-color: var(--ivory);
    font-weight: 500;
}

/* ---- Section specific styles ---- */
#artisanal-handicraft .product-card {
    border-color: rgba(184, 134, 60, 0.25);
}

#wall-art-panels .product-card {
    border-color: rgba(46, 33, 24, 0.12);
}

#carved-accents .product-card {
    border-color: rgba(184, 134, 60, 0.20);
}

#sculptural-objects .product-card {
    border-color: rgba(46, 33, 24, 0.12);
}

#gift-ware .product-card {
    border-color: rgba(184, 134, 60, 0.25);
}

#limited-edition .product-card {
    border-color: rgba(184, 134, 60, 0.30);
    box-shadow: 0 2px 8px rgba(184, 134, 60, 0.08);
}

#limited-edition .product-card:hover {
    box-shadow: 0 20px 40px rgba(184, 134, 60, 0.25);
}

/* ---- Responsive adjustments ---- */
@media (max-width: 991.98px) {
    .page-banner.other-products-banner {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 767.98px) {
    .page-banner.other-products-banner {
        padding: 3rem 0 2rem;
        background-position: center;
    }

    .page-banner.other-products-banner .page-banner-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .product-name {
        font-size: 0.75rem;
        padding: 0.7rem 0.4rem;
    }
}

@media (max-width: 575.98px) {
    .page-banner.other-products-banner .page-banner-title {
        font-size: 1.7rem;
    }

    .collection-section .product-image-wrap {
        aspect-ratio: 4/5;
    }

    .product-name {
        font-size: 0.68rem;
        padding: 0.6rem 0.3rem;
    }
}