body:has(.pf-form) { background: #fff !important; }
.pf-form .card { border: 1px solid #eceef1; border-radius: 10px; background: #f8f9fb; box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04); transition: box-shadow .2s; }
.pf-form .card:hover { box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06); }
.pf-form .card + .card { margin-top: 16px; }
.pf-form .card-header,
.pf-form .pf-section-header { padding: 14px 20px; border-bottom: 1px solid #f0f1f3; display: flex; align-items: center; gap: 10px; }
.pf-form .card-header::before,
.pf-form .pf-section-header::before { content: ''; width: 3px; height: 16px; border-radius: 6px; background: var(--brand-secondary, #E8772E); flex-shrink: 0; opacity: 0.85; }
.pf-form .card-header span,
.pf-form .pf-section-header span { font-size: 13px; font-weight: 600; color: #374151; text-transform: uppercase; letter-spacing: 0.06em; }
.pf-form .card-body,
.pf-form .pf-section-body { padding: 20px; }

.pf-form label.block,
.pf-form label.pf-label { font-size: 0.875rem; font-weight: 500; color: #6b7280; letter-spacing: 0.02em; margin-bottom: 5px; display: block; }

.pf-form input[type="text"],
.pf-form input[type="number"],
.pf-form input[type="url"],
.pf-form input[type="date"],
.pf-form input[type="email"],
.pf-form select,
.pf-form textarea {
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
    font-size: 0.95rem;
    transition: border-color .2s, box-shadow .2s;
}
.pf-form textarea { height: auto; padding: 8px 12px; }
.pf-form input:focus,
.pf-form select:focus,
.pf-form textarea:focus {
    border-color: var(--brand-secondary, #E8772E) !important;
    box-shadow: 0 0 0 3px rgba(232, 119, 46, .08) !important;
    outline: none;
}

.pf-form .cs-wrap { width: 100% !important; display: flex !important; }
.pf-form .cs-trigger { width: 100% !important; }

.pf-form input[type="checkbox"] {
    accent-color: var(--brand-secondary, #E8772E);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.pf-form .pf-toggle-row { border-radius: 6px; transition: background .2s; }
.pf-form .pf-toggle-row:hover { background: #f3f4f6; }

.pf-form .toggle-track {
    width: 44px; height: 24px; background: #d1d5db; border-radius: 12px;
    position: relative; transition: background .25s ease; cursor: pointer; flex-shrink: 0;
}
.pf-form .toggle-track::after {
    content: ''; position: absolute; width: 20px; height: 20px;
    border-radius: 50%; background: #fff; top: 2px; left: 2px;
    transition: transform .25s ease; box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.pf-form .toggle-input:checked + .toggle-track { background: var(--brand-secondary, #E8772E); }
.pf-form .toggle-input:checked + .toggle-track::after { transform: translateX(20px); }

.pf-form .toggle-reveal { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .3s ease; opacity: 0; }
.pf-form .toggle-reveal.open { max-height: 200px; opacity: 1; }

.pf-form, .pf-stepper, .pf-optional-hint, #autosave-banner { max-width: 860px; margin-left: auto; margin-right: auto; }
body:has(.pf-form) .alert-success,
body:has(.pf-form) .alert-error { max-width: 860px; margin-left: auto; margin-right: auto; }
.pf-stepper { display: flex; align-items: center; gap: 0; overflow-x: auto; padding: 4px 2px 6px; margin-bottom: 28px; justify-content: center; }
.pf-stepper::-webkit-scrollbar { display: none; }
.pf-step-item { display: flex; align-items: center; gap: 0; flex-shrink: 0; cursor: pointer; }
.pf-step-item:last-child .pf-step-line { display: none; }
.pf-step-dot {
    width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; border: 1.5px solid #e5e7eb; color: #9ca3af; background: #fff;
    transition: all .2s ease; position: relative; z-index: 1;
}
.pf-step-dot.done { background: var(--brand-secondary, #E8772E); border-color: var(--brand-secondary, #E8772E); color: #fff; }
.pf-step-dot.active { border-color: var(--brand-secondary, #E8772E); color: var(--brand-secondary, #E8772E); box-shadow: 0 0 0 3px rgba(232,119,46,.14); }
.pf-step-label { font-size: 14px; font-weight: 500; color: #9ca3af; margin-left: 10px; white-space: nowrap; transition: color .2s; }
.pf-step-item.is-done .pf-step-label,
.pf-step-item.is-active .pf-step-label { color: #111827; font-weight: 600; }
.pf-step-line { width: 48px; height: 2px; background: #e5e7eb; margin: 0 12px; flex-shrink: 0; transition: background .2s; border-radius: 2px; }
.pf-step-item.is-done .pf-step-line { background: var(--brand-secondary, #E8772E); }
@media (max-width: 768px) {
    .pf-step-label { display: none; }
    .pf-step-line { width: 24px; margin: 0 6px; }
}

.pf-step { display: none; opacity: 0; transform: translateY(8px); }
.pf-step.active { display: block; animation: pf-fadein .35s ease forwards; }
@keyframes pf-fadein { to { opacity: 1; transform: translateY(0); } }

.pf-nav { padding-top: 24px; }
.pf-btn-prev {
    display: inline-flex; align-items: center; gap: 6px; padding: 0 20px; height: 42px;
    font-size: 0.9rem; font-weight: 500; color: #6b7280; background: #fff;
    border: 1px solid #e5e7eb; border-radius: 6px; cursor: pointer; transition: all .2s;
}
.pf-btn-prev:hover { color: #374151; border-color: #d1d5db; background: #f9fafb; }
.pf-btn-next, .pf-btn-save {
    display: inline-flex; align-items: center; gap: 6px; padding: 0 24px; height: 42px;
    font-size: 0.9rem; font-weight: 600; color: #fff; border-radius: 6px;
    cursor: pointer; transition: all .2s; text-decoration: none;
}
.pf-btn-next { background: var(--brand-secondary, #E8772E); border: 1px solid var(--brand-secondary, #E8772E); }
.pf-btn-next:hover { filter: brightness(.92); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,119,46,.25); }
.pf-btn-save { background: var(--brand-primary, #1C3549); border: 1px solid var(--brand-primary, #1C3549); }
.pf-btn-save:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(28,53,73,.25); }
.pf-btn-prev.hidden, .pf-btn-next.hidden, .pf-btn-save.hidden { display: none !important; }
.pf-btn-save-draft {
    display: inline-flex; align-items: center; gap: 6px; padding: 0 20px; height: 42px;
    font-size: 0.9rem; font-weight: 500; color: #374151;
    background: #fff; border: 1px solid #d1d5db; border-radius: 6px;
    cursor: pointer; transition: all .2s;
}
.pf-btn-save-draft:hover { border-color: #9ca3af; background: #f9fafb; }
.pf-btn-save-draft:disabled { opacity: .6; cursor: not-allowed; }

.pf-sticky-footer {
    margin-top: 24px;
    padding: 20px 0 8px;
    border-top: 1px solid #e5e7eb;
}
.pf-sticky-footer-inner {
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.pf-btn-cancel {
    display: inline-flex; align-items: center; padding: 0 16px; height: 42px;
    font-size: 0.9rem; font-weight: 500; color: #6b7280; text-decoration: none;
    transition: color .2s;
}
.pf-btn-cancel:hover { color: #374151; }

.pf-optional-hint {
    font-size: 0.8rem; color: #6b7280; background: #f9fafb;
    border: 1px solid #e5e7eb; border-radius: 6px;
    padding: 8px 12px; margin-bottom: 16px;
}
.pf-optional {
    display: inline-block; margin-left: 4px;
    font-size: 0.8rem; font-weight: 400; color: #9ca3af; font-style: italic;
}
.pf-required {
    display: inline-block; margin-left: 4px;
    font-size: 0.8rem; font-weight: 600; color: #ef4444;
}
.pf-step-progress {
    display: inline-block; margin-left: 4px; font-size: 0.72rem; font-weight: 500;
    color: #9ca3af; padding: 1px 6px; border-radius: 9999px; background: #f3f4f6;
}
.pf-step-item.is-done .pf-step-progress,
.pf-step-item.is-active .pf-step-progress { background: rgba(232,119,46,.1); color: var(--brand-secondary, #E8772E); }
.pf-step-progress.is-complete { background: #dcfce7; color: #16a34a; }

.pf-geo-map-wrapper { margin-top: 16px; }
.pf-geo-map-wrapper.hidden { display: none; }
.pf-geo-map-hint {
    font-size: 0.8rem; color: #6b7280; margin-bottom: 8px;
    display: inline-flex; align-items: center; gap: 6px;
}
.pf-geo-map-hint::before {
    content: ''; width: 8px; height: 8px; border-radius: 9999px;
    background: #E8772E; flex-shrink: 0;
}
.pf-geo-map {
    width: 100%; height: 280px; border-radius: 8px;
    border: 1px solid #eceef1; overflow: hidden; background: #f8f9fb;
}

.pf-btn-preview {
    display: inline-flex; align-items: center; gap: 6px; padding: 0 20px; height: 42px;
    font-size: 0.9rem; font-weight: 500; color: var(--brand-primary, #1C3549);
    background: #fff; border: 1px solid var(--brand-primary, #1C3549); border-radius: 6px;
    cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.pf-btn-preview:hover { background: var(--brand-primary, #1C3549); color: #fff; }
.pf-btn-preview.hidden { display: none !important; }

.pac-container { display: none !important; }

.image-dropzone-container.dz-drag-active .dz-grid {
    background: rgba(232, 119, 46, 0.05);
    border-radius: 10px;
    outline: 2px dashed var(--brand-secondary, #E8772E);
    outline-offset: 4px;
}
.dz-add-tile.is-loading {
    color: var(--brand-primary, #1C3549);
    border-color: var(--brand-primary, #1C3549);
    background: rgba(28, 53, 73, 0.04);
}

.pf-tags-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    min-height: 42px;
    cursor: text;
    transition: border-color .2s, box-shadow .2s;
}
.pf-tags-input:focus-within {
    border-color: var(--brand-secondary, #E8772E);
    box-shadow: 0 0 0 3px rgba(232, 119, 46, .08);
}
.pf-tags-list { display: contents; }
.pf-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 26px;
    padding: 0 12px;
    background: rgba(232, 119, 46, 0.12);
    color: #9a3f0e;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    max-width: 100%;
}
.pf-tag-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
.pf-tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #9a3f0e;
    border: 0;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 600;
    padding: 0;
    transition: color .15s ease;
}
.pf-tag-remove:hover {
    color: #7c2d12;
}
.pf-form .pf-tags-input-field,
.pf-form input[type="text"].pf-tags-input-field {
    flex: 1 1 180px;
    min-width: 140px;
    border: 0 !important;
    outline: none !important;
    padding: 0 !important;
    height: 26px !important;
    line-height: 26px !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0.9rem;
}
.pf-form .pf-tags-input-field:focus,
.pf-form input[type="text"].pf-tags-input-field:focus {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}
.pf-form .pf-tags-input-field:disabled {
    background: transparent !important;
    color: #9ca3af;
    cursor: not-allowed;
}

.pf-addr-wrap { position: relative; }
.pf-addr-field { position: relative; }
.pf-addr-field input[readonly].is-validated {
    padding-right: 130px;
    background: #f0fdf4;
    border-color: #86efac;
    color: #111827;
    cursor: not-allowed;
}
.pf-addr-field input[readonly].is-validated:focus {
    border-color: #86efac !important;
    box-shadow: none !important;
}
.pf-addr-unlock {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 32px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: var(--brand-secondary, #E8772E);
    border: 1px solid var(--brand-secondary, #E8772E);
    border-radius: 6px;
    cursor: pointer;
    transition: filter .15s ease;
    box-shadow: 0 1px 2px rgba(232, 119, 46, .25);
}
.pf-addr-unlock:hover {
    filter: brightness(1.08);
}
.pf-addr-unlock.hidden { display: none; }
.pf-addr-suggest {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 9500;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12), 0 4px 12px rgba(16, 24, 40, 0.06);
    padding: 6px;
    max-height: 320px;
    overflow-y: auto;
}
.pf-addr-suggest.hidden { display: none; }
.pf-addr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.35;
    transition: background .15s ease, color .15s ease;
}
.pf-addr-item:hover,
.pf-addr-item.is-active {
    background: rgba(232, 119, 46, 0.08);
    color: #111827;
}
.pf-addr-main {
    font-weight: 500;
    color: #111827;
    flex-shrink: 0;
}
.pf-addr-main strong {
    font-weight: 700;
    color: var(--brand-secondary, #E8772E);
}

.pf-preview-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 10000;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.pf-preview-backdrop.open { display: flex; }
.pf-preview-modal {
    background: #fff; border-radius: 12px; max-width: 480px; width: 100%;
    max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.pf-preview-modal-header {
    padding: 14px 20px; border-bottom: 1px solid #eceef1;
    display: flex; align-items: center; justify-content: space-between;
}
.pf-preview-modal-header h3 { font-size: 0.95rem; font-weight: 600; color: #111827; margin: 0; }
.pf-preview-modal-header button {
    width: 30px; height: 30px; border: 0; background: transparent; cursor: pointer;
    color: #6b7280; font-size: 20px; line-height: 1; border-radius: 6px;
}
.pf-preview-modal-header button:hover { background: #f3f4f6; color: #111827; }
.pf-preview-modal-body { padding: 20px; background: #f8f9fb; }

.pf-preview-card {
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.pf-preview-img {
    width: 100%; aspect-ratio: 4/3; background: #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; font-size: 0.85rem;
}
.pf-preview-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-preview-body { padding: 14px 16px; }
.pf-preview-price { font-size: 1.1rem; font-weight: 700; color: var(--brand-primary, #1C3549); margin-bottom: 4px; }
.pf-preview-title { font-size: 0.95rem; font-weight: 600; color: #111827; margin-bottom: 6px; line-height: 1.3; }
.pf-preview-loc { font-size: 0.8rem; color: #6b7280; margin-bottom: 10px; }
.pf-preview-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-preview-chip {
    font-size: 0.72rem; color: #4b5563; background: #f3f4f6;
    padding: 2px 8px; border-radius: 9999px;
}
.pf-preview-empty {
    color: #9ca3af; font-style: italic; font-size: 0.85rem;
}

.pf-error-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 10001;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.pf-error-backdrop.open { display: flex; animation: pfErrorFadeIn .15s ease; }
@keyframes pfErrorFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pf-error-modal {
    background: #fff; border-radius: 12px; max-width: 480px; width: 100%;
    max-height: 85vh; display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    animation: pfErrorSlideIn .2s ease;
}
@keyframes pfErrorSlideIn { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pf-error-modal-header {
    padding: 18px 20px 14px; display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid #f0f1f3;
}
.pf-error-modal-icon {
    width: 36px; height: 36px; border-radius: 9999px;
    background: #fef2f2; color: #dc2626;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pf-error-modal-title {
    flex: 1; font-size: 0.95rem; font-weight: 600; color: #111827; margin: 0;
}
.pf-error-modal-close {
    width: 30px; height: 30px; border: 0; background: transparent; cursor: pointer;
    color: #6b7280; font-size: 22px; line-height: 1; border-radius: 6px; flex-shrink: 0;
}
.pf-error-modal-close:hover { background: #f3f4f6; color: #111827; }
.pf-error-modal-body {
    padding: 18px 20px; overflow-y: auto; color: #374151; font-size: 0.9rem;
}
.pf-error-modal-intro { margin: 0 0 12px; color: #374151; }
.pf-error-modal-list { list-style: none; padding: 0; margin: 0; }
.pf-error-modal-list li {
    color: #dc2626; font-size: 0.875rem; line-height: 1.5;
    position: relative; padding: 2px 0 2px 16px;
}
.pf-error-modal-list li::before {
    content: ''; position: absolute; left: 4px; top: 11px;
    width: 5px; height: 5px; border-radius: 9999px; background: #dc2626;
}
.pf-error-modal-footer {
    padding: 12px 20px 18px; display: flex; justify-content: flex-end;
    border-top: 1px solid #f0f1f3;
}
.pf-error-modal-ok {
    display: inline-flex; align-items: center; padding: 0 18px; height: 36px;
    font-size: 0.85rem; font-weight: 600; color: #fff;
    background: var(--brand-primary, #1C3549); border: 0; border-radius: 6px;
    cursor: pointer; transition: filter .2s;
}
.pf-error-modal-ok:hover { filter: brightness(1.1); }
.pf-error-modal-ok:focus { outline: 3px solid rgba(28,53,73,.2); outline-offset: 1px; }

.pf-form .ql-editor { min-height: 120px; font-family: 'Inter', system-ui, sans-serif; font-size: 0.95rem; background: #fff; }
.pf-form .ql-toolbar.ql-snow { border: 1px solid #e5e7eb; border-radius: 6px 6px 0 0; background: #fafafa; }
.pf-form .ql-container.ql-snow { border: 1px solid #e5e7eb; border-radius: 0 0 6px 6px; background: #fff; }
.pf-form .ql-toolbar.ql-snow .ql-picker-label:hover,
.pf-form .ql-toolbar.ql-snow button:hover { color: var(--brand-secondary, #E8772E) !important; }

.pf-form .cs-wrap { position: relative; display: inline-block; }
.pf-form .cs-wrap:not(.w-full) { display: flex !important; width: 100% !important; }
.pf-form .cs-trigger { width: 100% !important; }
.pf-form .cs-trigger {
    display: flex !important; align-items: center !important; justify-content: space-between !important;
    height: 40px !important; padding: 0 12px !important; border: 1px solid #d1d5db !important;
    border-radius: var(--radius-base, 6px) !important; background: #fff !important; color: #1f2937 !important;
    font-size: 0.9rem !important; cursor: pointer !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    user-select: none !important; white-space: nowrap !important; overflow: hidden !important;
}
.pf-form .cs-trigger:hover { border-color: #9ca3af !important; }
.pf-form .cs-open .cs-trigger { border-color: var(--brand-secondary, #E8772E) !important; box-shadow: 0 0 0 3px rgba(232,119,46,.08) !important; }
.pf-form .cs-label { overflow: hidden; text-overflow: ellipsis; flex: 1; }
.pf-form .cs-arrow { flex-shrink: 0; margin-left: 8px; display: flex; transition: transform 0.2s; }
.pf-form .cs-open .cs-arrow { transform: rotate(180deg); }
.pf-form .cs-dropdown {
    display: none; position: fixed !important; max-height: 220px !important; overflow-y: auto !important;
    background: #fff !important; border: 1px solid #e5e7eb !important; border-radius: var(--radius-base, 6px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important; z-index: 9999 !important; padding: 4px 0 !important;
}
.pf-form .cs-dropdown::-webkit-scrollbar { width: 4px; }
.pf-form .cs-dropdown::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
.pf-form .cs-option {
    padding: 6px 12px !important; font-size: 0.9rem !important; color: #374151 !important;
    cursor: pointer !important; transition: background 0.15s !important;
    white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important;
}
.pf-form .cs-option:hover { background: #f3f4f6 !important; }
.pf-form .cs-option.cs-selected { background: #fff7ed !important; color: var(--brand-secondary, #E8772E) !important; font-weight: 500 !important; }
.pf-form .cs-option.cs-disabled { color: #9ca3af !important; cursor: default !important; }
.pf-form .cs-option.cs-disabled:hover { background: transparent !important; }
.pf-form .cs-search-wrap {
    display: flex; align-items: center; gap: 4px; padding: 4px 10px;
    border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; background: #fff; z-index: 1;
}
.pf-form .cs-search-icon { flex-shrink: 0; display: flex; }
.pf-form .cs-search-input {
    width: 100%; border: none !important; outline: none; font-size: 0.8rem;
    color: #374151; background: transparent; height: auto !important; padding: 2px 0 !important;
    min-height: auto !important;
}
.pf-form .cs-search-input::placeholder { color: #9ca3af; }
.pf-form .cs-options-list { max-height: 200px; overflow-y: auto; }
.pf-form .cs-options-list::-webkit-scrollbar { width: 4px; }
.pf-form .cs-options-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
.pf-form .cs-no-result { padding: 10px 12px; font-size: 0.85rem; color: #9ca3af; text-align: center; }
.pf-form .cs-dropdown:has(.cs-search-wrap) { max-height: none !important; overflow: visible !important; }
.pf-form .cs-trigger-multi {
    display: flex !important; align-items: center !important; flex-wrap: wrap !important;
    gap: 4px !important; min-height: 34px !important;
}
.pf-form .cs-tags { display: flex; flex-wrap: wrap; gap: 4px; flex: 1; align-items: center; }
.pf-form .cs-tag {
    display: inline-flex; align-items: center; gap: 3px; background: #fff7ed;
    border: 1px solid #fed7aa; border-radius: 4px; padding: 1px 6px;
    font-size: 0.8rem; color: #9a3412; line-height: 1.4; white-space: nowrap;
}
.pf-form .cs-tag-remove { cursor: pointer; font-size: 1rem; color: #9ca3af; line-height: 1; margin-left: 2px; }
.pf-form .cs-tag-remove:hover { color: #ef4444; }
.pf-form .cs-option-multi { display: flex !important; align-items: center !important; gap: 8px !important; }
.pf-form .cs-check {
    width: 16px; height: 16px; flex-shrink: 0; display: flex;
    align-items: center; justify-content: center;
    border: 1.5px solid #d1d5db; border-radius: 3px; background: #fff; color: #fff;
    transition: all .15s;
}
.pf-form .cs-option-multi.cs-selected .cs-check { background: var(--brand-secondary, #E8772E); border-color: var(--brand-secondary, #E8772E); }
