/* 
* Custom styling for product brand pages
* This makes product brand taxonomy pages match the styling of product category pages
*/

/* Override WooCommerce default brand styling */
.tax-product_brand .brand-description {
    display: none; /* Hide the default brand description layout */
}

/* Apply the same styling as product categories */
.tax-product_brand .woocommerce-products-header {
    margin-bottom: 30px;
}

/* Make sure product grid displays properly */
.tax-product_brand ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Match pagination styling with categories */
.tax-product_brand .woocommerce-pagination {
    margin-top: 20px;
}

/* Ensure proper spacing and layout */
.tax-product_brand .page-title-wrap {
    margin-bottom: 30px;
}