/* =========================
   Container & Layout
   ========================= */
.container-fluid.pt-5 {
    max-width: 1400px;
    margin: auto;
}
#shop-products-table img {
    width: 80px; /* smaller images */
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}
img.attachment-thumbnail.size-thumbnail.wp-post-image {
    width: 80px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* =========================
   Product Table
   ========================= */
#shop-products-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    background: #fff;
}

#shop-products-table thead th {
    background-color: #0073aa;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 12px;
}

#shop-products-table tbody td {
    text-align: center;
    padding: 12px;
    vertical-align: middle;
}

#shop-products-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

#shop-products-table tbody a {
    text-decoration: none;
    color: #0073aa;
    transition: 0.3s;
}

#shop-products-table tbody a:hover {
    text-decoration: underline;
}

/* Enquire button */
.gmwqp_inq {
    padding: 6px 14px;
    border-radius: 8px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.gmwqp_inq:hover {
    background: #005f80;
}

/* =========================
   Pagination
   ========================= */
.shop-pagination .pagination .page-item .page-link {
    color: #0073aa;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin: 0 2px;
    transition: 0.3s;
}
.shop-pagination .pagination .page-item.active .page-link {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.shop-pagination .pagination .page-item .page-link:hover {
    background: #005f80;
    color: #fff;
}
.yith-wcan-filter {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    max-width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.filter-item input[type="checkbox"] {
    margin-right: 0.5rem;
}

.filter-item.extra {
    display: none; /* hidden by default */
}

.toggle-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0;
}
/* =========================
   Responsive Adjustments
   ========================= */
@media(max-width: 991px) {
    .yith-wcan-filter .filter-item {
        flex: 1 1 100%;
    }
}
