/* ============================================================
   Page Banner — shared across all templates + WooCommerce pages
   Loaded wherever header.php renders .adera-shop-banner
   ============================================================ */

.adera-shop-banner {
    position: relative;
    background-image: url('../images/woocommerce/producstHeroBg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.adera-shop-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 2, 28, 0.30);
    pointer-events: none;
    z-index: 1;
}

.adera-shop-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px 0;
}

.adera-shop-banner-title {
    font-family: var(--font-manrope);
    font-size: 35px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px;
    line-height: 33.4px;
    letter-spacing: -0.65px;
}

.adera-shop-banner-desc {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2px;
    line-height: 21px;
    margin: 0;
}

.adera-shop-banner-footer {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
    padding: 13px 0;
}

.adera-shop-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
}

.adera-shop-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.adera-shop-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.adera-shop-breadcrumb span:last-child {
    color: #ffffff;
    font-weight: 500;
}

.adera-bc-sep {
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
}

@media (max-width: 860px) {
    .adera-shop-banner-content { padding-bottom: 0; }

    /* Category hero: focus on the right side of the art on mobile */
    body.tax-product_cat .adera-shop-banner {
        background-position: right center;
    }

    .adera-shop-banner-title {
        font-size: 26px;
        line-height: 33.4px;
        letter-spacing: -0.65px;
    }

    .adera-shop-banner-desc {
        font-size: 14px;
        letter-spacing: 0.2px;
        line-height: 21px;
    }
}
