body.wc-bulk-loading::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    z-index: 9999;
}
/* Hide bulk remove button initially */
.wc-bulk-remove-btn {
    display: none;
    margin-bottom:10px!important;
}
body.wc-bulk-loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    border: 4px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: wc-spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

@keyframes wc-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.wc-bulk-remove-item {
    margin-right: 8px;
}
/* Thumbnail container */
.c--th {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
}

/* Checkbox wrapper */
.wc-bulk-checkbox-wrap {
    /* position: absolute; */
    top: 8px;
    left: 8px;
    z-index: 5;
}

/* Hide native checkbox */
.wc-bulk-remove-item {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cfd4dc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

/* Hover */
.wc-bulk-remove-item:hover {
    border-color: #2271b1;
}

/* Checked state */
.wc-bulk-remove-item:checked {
    background-color: #2271b1;
    border-color: #2271b1;
}

/* Checkmark */
.wc-bulk-remove-item:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Optional: subtle background on image when checked */
.wc-bulk-remove-item:checked
    ~ img {
    opacity: 0.85;
}
.c.c--th a{
        display: flex;
    align-items: center;
}