/* WP Cafe Product Label — admin term editor styles */

.wpcafe-label-field { margin-bottom: 1em; }

.wpcafe-label-icon-source label { display: inline-flex; align-items: center; }

.wpcafe-label-icon-panel {
    margin-top: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    max-width: 520px;
}

.wpcafe-label-icon-search {
    width: 100%;
    margin-bottom: 8px;
}

.wpcafe-label-icon-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    max-height: 220px;
    overflow-y: auto;
}

.wpcafe-label-icon-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    transition: all 0.12s ease;
}

.wpcafe-label-icon-cell:hover {
    background: #fff;
    border-color: #2271b1;
}

.wpcafe-label-icon-cell.is-selected {
    background: #2271b1;
    border-color: #135e96;
}

.wpcafe-label-icon-cell.is-selected .dashicons {
    color: #fff;
}

.wpcafe-label-icon-cell .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    color: #1d2327;
}

/* Shared badge styling — used in both admin preview and the term list column */
.wpc-product-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.wpc-product-label__icon.dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 14px;
}

.wpc-product-label__icon--svg {
    width: 14px;
    height: 14px;
}

.wpcafe-label-preview-wrap {
    display: inline-block;
    padding: 12px 16px;
    background: repeating-conic-gradient(#e5e7eb 0% 25%, #fff 0% 50%) 50% / 16px 16px;
    border-radius: 6px;
}
