.product-categories {
    margin-bottom: 30px;
}
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.category-list li {
    list-style: none;
}
.subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.subcategory {
    text-align: center;
}
.subcategory img {
    max-width: 100%;
    height: auto;
}
.sidebar-categories,
.product-filters {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group ul {
    list-style: none;
    padding: 0;
}


.tier-pricing-display table {
    margin: 15px 0;
    border-collapse: collapse;
    width: 100%;
}

.tier-pricing-display th,
.tier-pricing-display td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.tier-pricing-display th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.get-quote-btn {
    background-color: #0073aa !important;
    color: white !important;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none !important;
    display: inline-block;
}

.get-quote-btn:hover {
    background-color: #005a87 !important;
    color: white !important;
}

.contact-price {
    color: #666;
    font-style: italic;
}

.product-filters {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-group li {
    margin-bottom: 5px;
}

.sidebar-categories {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-categories h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 8px;
}

.sidebar-categories a {
    text-decoration: none;
    color: #333;
    padding: 5px 0;
    display: block;
}

.sidebar-categories a:hover {
    color: #0073aa;
}

.subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.subcategory {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #fff;
}

.subcategory:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.subcategory a {
    text-decoration: none;
    color: #333;
}

.subcategory h3 {
    margin: 10px 0 0 0;
    font-size: 16px;
}

/* Hide price when showing get quote */
.woocommerce .price:empty {
    display: none;
}

.product-main-info{
 display: flex;
}
