/* Collection banner */
.loome-category-banner img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.loome-category-banner {
    margin-bottom: 30px;
}

/* Two-column layout */
.loome-shop-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.loome-shop-sidebar {
    flex: 0 0 240px;
}
.loome-shop-sidebar .shop-filter-block {
    margin-bottom: 30px;
}
.loome-shop-sidebar .filter-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.loome-shop-main {
    flex: 1;
    min-width: 0;
}

/* Sort dropdown, top right of the grid */
.woocommerce-ordering {
    float: right;
    margin-bottom: 20px;
}
.woocommerce-ordering select {
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-family: inherit;
}

/* Stacked layout on mobile */
@media (max-width: 768px) {
    .loome-shop-layout {
        flex-direction: column;
    }
    .loome-shop-sidebar {
        flex: 1 1 100%;
    }
    .woocommerce-ordering {
        float: none;
    }
}
