/* ============================================
   BASE / RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

/* ============================================
   UPLOAD FORM CONTAINER
   ============================================ */
.fe-product-upload-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ─── Form header ─────────────────────────── */
.fe-form-header {
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.fe-form-header h2 { margin: 0 0 6px; font-size: 22px; color: #2d2d2d; }
.fe-form-header p  { margin: 0 0 14px; color: #777; font-size: 15px; }

/* ─── Stats mini bar ──────────────────────── */
.fe-stats-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #f7f3ff;
    border: 1px solid #e2d5f8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}
.fe-stat-item {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    position: relative;
}
.fe-stat-item + .fe-stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: #e2d5f8;
}
.fe-stat-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #8c38de;
    line-height: 1.1;
}
.fe-stat-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    white-space: nowrap;
}
.fe-stat-item.fe-stat-remain .fe-stat-num { color: #e6a23c; }
.fe-stat-item.fe-stat-live .fe-stat-num   { color: #46b450; }

/* ─── Progress steps ──────────────────────── */
.fe-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 4px 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 64px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.fe-step:hover .fe-step-icon { transform: scale(1.08); }

.fe-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.fe-step span {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    transition: color 0.3s;
    text-align: center;
}

.fe-step.active .fe-step-icon {
    background: #8c38de;
    color: #fff;
    border-color: #8c38de;
    box-shadow: 0 0 0 4px rgba(140,56,222,0.15);
    transform: scale(1.12);
}
.fe-step.active span { color: #8c38de; font-weight: 600; }

.fe-step.completed .fe-step-icon {
    background: #46b450;
    color: #fff;
    border-color: #46b450;
}
.fe-step.completed span { color: #46b450; }

.fe-step-connector {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    min-width: 20px;
    max-width: 60px;
    margin-bottom: 22px;
    transition: background 0.3s;
}

/* ─── Form sections ───────────────────────── */
.fe-form-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #f9f9fb;
    border-radius: 3px;
    border: 1px solid #ebebeb;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.fe-form-section.fe-section-visible {
    opacity: 1;
    transform: translateY(0);
}

.fe-section-title {
    margin: 0 0 18px;
    padding-bottom: 10px;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid #8c38de;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fe-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #8c38de;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── Form layout ─────────────────────────── */
.fe-form-group { margin-bottom: 18px; width: 100%; position: relative; }
.fe-form-row   { display: flex; flex-wrap: wrap; margin: 0 -8px; }
.fe-col-12     { flex: 0 0 100%; max-width: 100%; padding: 0 8px; }

/* ─── Labels ──────────────────────────────── */
.fe-label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}
.fe-required  { color: #d63638; }
.fe-help-text { display: block; margin-top: 4px; font-size: 12px; color: #888; font-style: italic; font-weight: 400; }

/* ─── Inputs ──────────────────────────────── */
.fe-input,
.fe-textarea,
.fe-select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    height: 46px;
    line-height: 1.4;
}
.fe-textarea {
    height: auto;
    min-height: 110px;
    resize: vertical;
}

input[type="number"].fe-input { -moz-appearance: textfield; }
input[type="number"].fe-input::-webkit-outer-spin-button,
input[type="number"].fe-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.fe-input:focus,
.fe-textarea:focus,
.fe-select:focus {
    border-color: #8c38de;
    box-shadow: 0 0 0 3px rgba(140,56,222,0.12);
}

/* ─── Category select wrapper ─────────────── */
.fe-select-wrap {
    position: relative;
    width: 100%;
    /* Ensure the select and its dropdown sit above image zones */
    z-index: 200;
}
.fe-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #8c38de;
    pointer-events: none;
    z-index: 201;
}
.fe-select-wrap .fe-select {
    padding-right: 36px;
    cursor: pointer;
}

/* Select2 — match height & style of native inputs */
.fe-select-wrap .select2-container {
    width: 100% !important;
    z-index: 200 !important;
}
.fe-select-wrap .select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single {
    height: 46px !important;
    border: 1.5px solid #ddd !important;
    border-radius: 3px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #8c38de !important;
    box-shadow: 0 0 0 3px rgba(140,56,222,0.12) !important;
    outline: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
    line-height: normal !important;
    padding: 0 !important;
    flex: 1 !important;
    font-size: 14px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #bbb !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
    top: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #8c38de transparent transparent !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #8c38de !important;
}

/* CRITICAL: dropdown must appear above everything including image zones */
.select2-dropdown {
    border-radius: 3px !important;
    border: 1.5px solid #ddd !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1) !important;
    z-index: 99999 !important;
}
.select2-container--open .select2-dropdown {
    z-index: 99999 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #8c38de !important;
}
.select2-search--dropdown .select2-search__field {
    border-radius: 3px !important;
    padding: 7px 10px !important;
    border: 1.5px solid #ddd !important;
    outline: none !important;
    font-size: 14px !important;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: #8c38de !important;
}

/* ─── Price prefix ────────────────────────── */
.fe-input-prefix-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.fe-input-prefix {
    position: absolute;
    left: 12px;
    color: #8c38de;
    font-weight: 700;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
}
.fe-input-has-prefix { padding-left: 28px !important; }

/* ─── Price indicator ─────────────────────── */
.fe-price-indicator {
    margin-top: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}
.fe-price-bar {
    height: 10px; background: #f0f0f0;
    border-radius: 5px; overflow: hidden; margin-bottom: 10px;
}
.fe-price-bar-fill {
    height: 100%; border-radius: 5px;
    transition: width 0.4s ease, background-color 0.3s;
}
.fe-price-bar-fill.fe-bar-ok     { background: linear-gradient(90deg,#46b450,#5dd466); }
.fe-price-bar-fill.fe-bar-warn   { background: linear-gradient(90deg,#e6a23c,#f0b84e); }
.fe-price-bar-fill.fe-bar-danger { background: linear-gradient(90deg,#d63638,#e94c4e); }

.fe-price-info { font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.fe-info-ok   { color: #46b450; }
.fe-info-warn { color: #d63638; }

/* Margin advice text */
.fe-margin-advice {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    line-height: 1.5;
    padding: 8px 10px;
    background: #f7f3ff;
    border-radius: 4px;
    border-left: 3px solid #8c38de;
}
.fe-margin-advice.fe-advice-danger {
    background: #fff8f8;
    border-left-color: #d63638;
    color: #c0392b;
}
.fe-margin-advice.fe-advice-warn {
    background: #fdf6ec;
    border-left-color: #e6a23c;
    color: #7d5a10;
}

/* Reselling price suggestions */
.fe-price-suggestions {
    margin-top: 8px;
    padding: 10px;
    background: #f7f3ff;
    border-radius: 4px;
    border: 1px dashed #c9a8f0;
}
.fe-price-sug-title {
    font-size: 11px;
    color: #8c38de;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}
.fe-price-sug-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fe-price-sug-btn {
    flex: 1;
    min-width: 80px;
    padding: 7px 10px;
    background: #fff;
    border: 1.5px solid #c9a8f0;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    font-size: 13px;
    color: #5a1ca8;
    font-weight: 600;
    line-height: 1.3;
}
.fe-price-sug-btn:hover {
    background: #8c38de;
    color: #fff;
    border-color: #8c38de;
    transform: translateY(-1px);
}
.fe-price-sug-btn small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

/* ─── Phone suggestions ───────────────────── */
.fe-phone-wrap { position: relative; }
.fe-phone-suggestions {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1.5px solid #ddd; border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 100;
    display: none; overflow: hidden;
}
.fe-phone-suggestions.fe-sug-visible { display: block; animation: fe-sug-in 0.18s ease; }
@keyframes fe-sug-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fe-sug-title { padding: 7px 12px 4px; font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fe-sug-item  { padding: 9px 14px; cursor: pointer; font-size: 14px; color: #333; transition: background 0.15s; border-top: 1px solid #f5f5f5; }
.fe-sug-item:hover { background: #f5f0fb; color: #8c38de; }

/* ─── Drag & Drop ─────────────────────────── */
.fe-drag-drop-area {
    position: relative;
    border: 2px dashed #8c38de;
    border-radius: 3px;
    padding: 36px 20px;
    text-align: center;
    background: #faf7ff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Keep image zones below select dropdowns */
    z-index: 1;
}
.fe-drag-drop-area:hover { background: #f5f0fb; border-color: #6a2aab; }
.fe-drag-over             { background: #ede0fa !important; border-color: #6a2aab !important; box-shadow: 0 0 0 3px rgba(140,56,222,0.15); }
.fe-drag-drop-area.fe-error { border-color: #d63638; background: #fff8f8; }

.fe-file-input {
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0; opacity: 0; cursor: pointer; z-index: 2;
}

.fe-dropzone-content { position: relative; z-index: 1; text-align: center; }
.fe-dropzone-icon    { color: #8c38de; margin-bottom: 12px; }
.fe-dropzone-text    { display: block; font-size: 15px; color: #444; margin-bottom: 4px; }
.fe-dropzone-info    { font-size: 13px; color: #888; }

/* Upload animation */
.fe-uploading-anim { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #8c38de; font-size: 14px; }
.fe-upload-pulse   { width: 36px; height: 36px; border: 3px solid rgba(140,56,222,0.2); border-top-color: #8c38de; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Image preview ───────────────────────── */
.fe-image-preview {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 3;
    pointer-events: none;
}
.fe-preview-container {
    position: relative; width: 100%; height: 100%;
    pointer-events: auto;
}
.fe-preview-container img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 10px; border-radius: 3px;
}
.fe-preview-img-anim { animation: fe-img-in 0.3s ease; }
@keyframes fe-img-in {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.fe-heic-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 8px;
    background: #f5f0fb; border-radius: 3px;
    font-size: 13px; color: #8c38de;
}
.fe-heic-placeholder small { color: #999; font-size: 11px; }

.fe-existing-badge {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    background: rgba(140,56,222,0.85); color: #fff;
    padding: 2px 8px; border-radius: 3px; font-size: 11px;
    white-space: nowrap; pointer-events: none;
}

/* ─── Remove button — always visible, top-right ─── */
.fe-remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #d63638;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    padding: 0;
    box-shadow: 0 2px 8px rgba(214,54,56,0.5);
    z-index: 20;
    pointer-events: auto !important;
    flex-shrink: 0;
}
.fe-remove-image:hover { background: #b32d2e; transform: scale(1.12); }
.fe-remove-image svg   { width: 12px; height: 12px; display: block; pointer-events: none; }

/* ─── Gallery ─────────────────────────────── */
.fe-gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}
.fe-gallery-dropzone { padding: 16px 10px; min-height: 130px; }

/* ─── Submit button ───────────────────────── */
.fe-form-actions {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    text-align: center;
}
.fe-submit-btn {
    background: linear-gradient(135deg, #8c38de 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    position: relative;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(140,56,222,0.35);
}
.fe-submit-btn:hover {
    background: linear-gradient(135deg, #6a2aab 0%, #8c38de 100%);
    box-shadow: 0 8px 28px rgba(140,56,222,0.45);
    transform: translateY(-2px);
}
.fe-submit-btn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(140,56,222,0.3); }
.fe-submit-btn:disabled,
.fe-submit-btn.fe-btn-loading {
    background: linear-gradient(135deg, #b692e8 0%, #c9a8f0 100%);
    cursor: not-allowed; transform: none;
    box-shadow: none;
}

.fe-btn-icon { display: flex; align-items: center; }

.fe-form-note { margin-top: 14px; font-size: 13px; color: #888; }

/* ─── Upload progress overlay ─────────────── */
.fe-upload-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fe-upload-progress-box {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 28px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
    animation: fe-modal-in 0.25s ease;
}
.fe-upl-icon { margin-bottom: 14px; }
.fe-upl-title {
    font-size: 17px; font-weight: 700; color: #222;
    margin-bottom: 20px;
}
.fe-upl-progress-wrap { margin-bottom: 10px; }
.fe-upl-progress-bar {
    height: 10px; background: #f0f0f0;
    border-radius: 5px; overflow: hidden; margin-bottom: 8px;
}
.fe-upl-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8c38de, #b16ef5);
    border-radius: 5px;
    transition: width 0.25s ease;
}
.fe-upl-pct { font-size: 20px; font-weight: 700; color: #8c38de; }
.fe-upl-step { font-size: 13px; color: #888; margin-top: 10px; }

/* ─── Error popup modal ───────────────────── */
.fe-error-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 100000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.fe-error-modal {
    background: #fff; border-radius: 10px;
    padding: 32px 28px 24px; max-width: 400px; width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    animation: fe-modal-in 0.22s ease;
}
@keyframes fe-modal-in {
    from { opacity: 0; transform: scale(0.9) translateY(-10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.fe-error-modal-icon { margin-bottom: 16px; }
.fe-error-modal h3 { margin: 0 0 14px; font-size: 18px; color: #d63638; }
.fe-error-modal-body { text-align: left; margin-bottom: 20px; }
.fe-error-modal-body ul { margin: 0; padding-left: 18px; }
.fe-error-modal-body li { margin-bottom: 6px; color: #555; font-size: 14px; line-height: 1.5; }
.fe-error-modal-close {
    background: #d63638; color: #fff; border: none;
    padding: 10px 30px; border-radius: 3px; font-size: 15px;
    font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.fe-error-modal-close:hover { background: #b32d2e; }

/* ─── Alerts ──────────────────────────────── */
.fe-alert {
    padding: 14px 16px; border-radius: 3px;
    margin-bottom: 18px; border-left: 4px solid;
}
.fe-alert-success { background: #f0f9eb; border-color: #67c23a; color: #4a8d2a; }
.fe-alert-error   { background: #fef0f0; border-color: #f56c6c; color: #c0392b; }
.fe-alert-warning { background: #fdf6ec; border-color: #e6a23c; color: #b57a10; }
.fe-alert ul { margin: 8px 0 0; padding-left: 18px; }
.fe-alert li { margin-bottom: 4px; }

/* ─── Error/warning states ────────────────── */
.fe-error   { border-color: #d63638 !important; }
.fe-warning { border-color: #e6a23c !important; }
.fe-error-message { color: #d63638; font-size: 12px; margin-top: 5px; font-weight: 500; }

/* ─── Character counter ───────────────────── */
.fe-char-counter { text-align: right; font-size: 12px; color: #888; margin-top: 4px; }
.fe-char-limit   { color: #d63638; font-weight: bold; }

/* ─── Notification toast (upload form) ───── */
.fe-notification {
    position: fixed; bottom: 20px; right: 20px; max-width: 320px;
    background: white; border-radius: 3px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 14px 16px; z-index: 9999; border-left: 4px solid;
}
.fe-notification-error   { border-color: #d63638; }
.fe-notification-success { border-color: #46b450; }
.fe-notification-content { margin-right: 24px; font-size: 14px; }
.fe-notification-close {
    position: absolute; top: 8px; right: 8px;
    background: none; border: none; font-size: 20px;
    cursor: pointer; color: #999; width: 24px; height: 24px;
    border-radius: 3px; display: flex; align-items: center; justify-content: center;
}
.fe-notification-close:hover { background: #f5f5f5; }

/* ─── Placeholder ─────────────────────────── */
.fe-input::placeholder, .fe-textarea::placeholder { color: #bbb; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .fe-col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .fe-gallery-container { grid-template-columns: repeat(4, 1fr); }
    .fe-drag-drop-area { padding: 44px 20px; min-height: 220px; }
    .fe-gallery-dropzone { min-height: 160px; }
}

@media (max-width: 767px) {
    .fe-product-upload-container { padding: 14px; }
    .fe-form-section { padding: 14px; }
    .fe-form-header h2 { font-size: 18px; }
    .fe-section-title { font-size: 14px; }

    .fe-progress-steps {
        justify-content: center;
        gap: 0;
    }
    .fe-step { min-width: 56px; }
    .fe-step span { font-size: 10px; }
    .fe-step-connector { min-width: 12px; max-width: 28px; }

    .fe-input, .fe-textarea, .fe-select {
        padding: 9px 11px; font-size: 13px;
    }
    .fe-gallery-container { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .fe-drag-drop-area { padding: 28px 12px; min-height: 150px; }
    .fe-gallery-dropzone { min-height: 110px; }
    .fe-submit-btn { padding: 14px 32px; font-size: 15px; min-width: 180px; }
    .fe-stats-mini { flex-direction: row; }
    .fe-stat-num { font-size: 18px; }
    .fe-price-sug-btn { font-size: 12px; padding: 6px 8px; }
}

@media (max-width: 480px) {
    .fe-product-upload-container { padding: 10px; }
    .fe-form-section { padding: 12px; margin-bottom: 16px; }
    .fe-submit-btn { width: 100%; }
    .fe-gallery-container { gap: 8px; }
    .fe-gallery-dropzone { padding: 14px 8px; min-height: 100px; }

    .fe-step span { display: none; }
    .fe-step { min-width: 40px; }
    .fe-step-connector { min-width: 8px; max-width: 18px; }

    .fe-stats-mini { flex-direction: row; }
    .fe-stat-num { font-size: 16px; }
    .fe-price-sug-btns { flex-direction: column; }
    .fe-price-sug-btn { min-width: unset; }
}

/* ─── Misc ────────────────────────────────── */
.fe-form-group:last-child { margin-bottom: 0; }
.fe-form-section:last-child { margin-bottom: 0; }










