/* ── WCE Frontend Styles ──────────────────────────── */

/* Banner */
.wce-category-banner {
    position: relative;
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.wce-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 180px;
    max-height: 360px;
}

.wce-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0, 0, 0, .55) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem 2rem;
}

.wce-banner-title {
    color: #fff !important;
    font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
    margin: 0 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,.4);
    line-height: 1.2;
}

/* Enhanced description */
.wce-enhanced-description {
    background: #f9f9f9;
    border-left: 4px solid #96588a; /* WooCommerce purple */
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
    font-size: .975rem;
    line-height: 1.7;
    color: #444;
}

.wce-enhanced-description p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media ( max-width: 600px ) {
    .wce-banner-overlay {
        padding: 1rem;
    }
    .wce-category-banner {
        border-radius: 0;
        margin-left: calc( -1 * var(--wp--style--root--padding-left, 1rem) );
        margin-right: calc( -1 * var(--wp--style--root--padding-right, 1rem) );
        width: 100vw;
    }
    .wce-enhanced-description {
        padding: 1rem;
    }
}
