.productpageclass {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 30px;
    align-items: start;
}
@media (max-width: 768px) {
    .productpageclass {
        grid-template-columns: 1fr;
    }
}
.productpageclass #product-filter {
    width: 100%;
}
#product-filter h3 {
      width: 100%;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 11px 0;
    margin: 0 0px 20px 0;
    font-size: 17px;
    color: #000;
    font-weight: 600;
}
.filter-group {
    margin-bottom: 40px;
}
.filter-group:last-child {
    margin-bottom: 0;
}
.attribute-section {
    margin-bottom: 10px;
}
.color-circle {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 6px;
    border: 1px solid #ccc;
}
.filter-group label {
    display: block;
    cursor: pointer;
    margin: 6px 0;
    line-height: 1.2;
    font-size: 16px !important;
}
.filter-group input[type="checkbox"], .filter-group input[type="radio"] {
    margin-right: 8px;
}
#reset-filter {
    cursor: pointer;
    transition: background .15s ease-in-out;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    background-color: #343B96;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 25px;
    line-height: 1.3;
    border: none;
}
#reset-filter:hover {
    background: #000;
}
.productpageclass .filtered-products {}
.product-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card .product-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.product-card .product-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card .product-title {
    font-size: 14px;
    line-height: 1.3;
    color: #222;
}
.product-card .product-price {
    font-weight: 600;
    color: #111;
}
.product-card .product-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
}
.button, .product-card .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fafafa;
    color: #222;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.button:hover, .product-card .button:hover {
    background: #f0f0f0;
    border-color: #ccc;
}
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.product-grid.loading {
    opacity: .6;
    pointer-events: none;
}
.product-grid:empty::before {
    content: "No products match your filters.";
    display: block;
    color: #666;
    padding: 24px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    background: #fafafa;
    text-align: center;
}
#filtered-products.loading {
    opacity: 0.6;
}
.filter-summary {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.filter-summary h6 {
    margin: 0;
    font-size: 20px;
  
}
.filter-summary strong {
    font-weight: 400;
}
@media (min-width: 1024px) {
    .productpageclass #product-filter {
        position: sticky;
        top: 16px;
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}