/* ==========================================================================
   J@ZZ-ONLINE - WEBSEITEN-EDITOR (STYLES)
   ========================================================================== */

#website-editor-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999;
    background: #0d0f14;
    color: #f3f4f6;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

#website-editor-modal.active {
    display: flex;
}

/* Editor Header Bar */
.we-header {
    background: #141720;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
}

.we-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.we-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.we-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.we-btn-primary {
    background: linear-gradient(135deg, #d32f2f, #ea580c);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.4);
}

.we-btn-primary:hover {
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.6);
    transform: translateY(-1px);
}

.we-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.we-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.we-btn-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.we-btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
}

.we-view-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.we-toggle-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.we-toggle-btn.active {
    background: #d32f2f;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Editor Main Workspace */
.we-workspace {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
}

/* Sidebar / Segment Tabs */
.we-sidebar {
    width: 190px;
    background: #11141c;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow-y: auto;
}

.we-sidebar-title {
    padding: 12px 14px 6px 14px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    font-weight: 700;
}

.we-seg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #cbd5e1;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.we-seg-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.we-seg-item.active {
    background: rgba(211, 47, 47, 0.14);
    border-left-color: #d32f2f;
    color: #ffffff;
    font-weight: 600;
}

.we-seg-icon {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

/* Content Area */
.we-content-panel {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
    background: #0d0f14;
}

.we-panel-card {
    max-width: 820px;
    margin: 0 auto;
    background: #151821;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.we-panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.we-panel-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0 0 24px 0;
}

/* Form Controls */
.we-group {
    margin-bottom: 22px;
}

.we-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.we-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.we-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.we-textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
}

.we-textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Formatting Toolbar */
.we-toolbar {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 6px 10px;
}

.we-tool-btn {
    background: transparent;
    border: none;
    color: #cbd5e1;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}

.we-tool-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.we-editor-area {
    min-height: 120px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 8px 8px;
    color: #ffffff;
    outline: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.we-editor-area:focus {
    border-color: #f59e0b;
}

/* Dropzone & Copy-Paste Area */
.we-dropzone {
    border: 2px dashed rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.04);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
    position: relative;
}

.we-dropzone:hover, .we-dropzone.dragover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}

.we-dropzone-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    display: block;
}

.we-dropzone-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.we-dropzone-sub {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* Items List (Musiker, Fotos, Termine) */
.we-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    position: relative;
    transition: border-color 0.2s;
}

.we-item-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

/* Gallery Drag & Drop Sorting */
.we-gallery-sort-item {
    transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    user-select: none;
}

.we-gallery-sort-item.we-gallery-dragging {
    opacity: 0.35;
    transform: scale(0.96);
    border: 2px dashed #f59e0b !important;
    background: rgba(245, 158, 11, 0.08) !important;
}

.we-gallery-sort-item.we-gallery-drop-target {
    border: 2px solid #f59e0b !important;
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.45) !important;
    transform: scale(1.03);
    background: rgba(245, 158, 11, 0.1) !important;
}

.we-gallery-card-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.we-gallery-drag-handle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: grab;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease;
}

.we-gallery-drag-handle:hover {
    background: rgba(245, 158, 11, 0.18);
}

.we-gallery-drag-handle:active {
    cursor: grabbing;
}

.we-drag-dots {
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: -1px;
}

.we-gallery-pos-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: #cbd5e1;
}

.we-gallery-quick-order {
    display: flex;
    gap: 4px;
}

.we-order-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f5f9;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.we-order-btn:hover:not(:disabled) {
    background: #f59e0b;
    color: #0f172a;
    border-color: #f59e0b;
}

.we-order-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.we-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.we-item-title {
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.we-item-actions {
    display: flex;
    gap: 6px;
}

.we-icon-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #cbd5e1;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background 0.15s;
}

.we-icon-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.we-icon-btn.delete:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Live Preview Panel */
.we-preview-panel {
    flex: 1;
    background: #090a0e;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.we-toolbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 6px 4px;
}

.we-preview-device-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.we-device-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.we-device-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.we-preview-header {
    background: #141720;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
}

.we-preview-frame-wrap {
    flex: 1;
    overflow-y: auto;
    position: relative;
    background: #0d0f14;
    transition: background 0.2s;
}

.we-preview-frame-wrap.device-mobile {
    display: flex;
    justify-content: center;
    padding: 24px 12px;
    background: #06070a;
}

.we-preview-container {
    width: 100%;
    min-height: 100%;
    transition: all 0.2s;
}

.we-preview-frame-wrap.device-mobile .we-preview-container {
    width: 390px;
    max-width: 100%;
    height: 760px;
    border: 10px solid #232733;
    border-radius: 36px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    background: #0b0c10;
}

/* ==========================================================================
   Mobile & Tablet Responsive (Vollbild-Optimierung & kompaktes Rubriken-Menü)
   ========================================================================== */
@media (max-width: 900px) {
    /* Header Bar kompakt */
    .we-header {
        padding: 6px 10px;
        gap: 6px;
        min-height: 44px;
        box-sizing: border-box;
    }
    .we-title {
        font-size: 0.88rem;
        gap: 4px;
    }
    .we-view-toggle {
        padding: 2px;
        gap: 2px;
    }
    .we-toggle-btn {
        padding: 4px 10px;
        font-size: 0.78rem;
    }
    .we-header-actions {
        gap: 5px;
    }
    .we-btn {
        padding: 5px 9px;
        font-size: 0.78rem;
        border-radius: 6px;
        gap: 4px;
    }

    /* Workspace */
    .we-workspace {
        flex-direction: column;
        flex: 1;
        height: calc(100% - 44px);
        overflow: hidden;
    }

    /* Kompaktes, schlankes Rubriken-Menü oben (36px Höhe) */
    .we-sidebar {
        width: 100%;
        height: 38px;
        min-height: 38px;
        max-height: 38px;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: #10131b;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 3px 6px;
        box-sizing: border-box;
        gap: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        align-items: center;
    }
    .we-sidebar::-webkit-scrollbar {
        display: none;
    }
    .we-sidebar-title {
        display: none !important;
    }
    #we-sidebar-nav {
        display: flex;
        flex-direction: row;
        gap: 4px;
        align-items: center;
        width: max-content;
    }
    .we-seg-item {
        border-left: none;
        border-bottom: none;
        border-radius: 6px;
        white-space: nowrap;
        padding: 4px 8px;
        font-size: 0.76rem;
        font-weight: 500;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
        color: #cbd5e1;
        flex-shrink: 0;
        height: 28px;
        display: inline-flex;
        align-items: center;
        box-sizing: border-box;
    }
    .we-seg-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    .we-seg-item.active {
        background: #d32f2f;
        color: #ffffff;
        font-weight: 600;
        box-shadow: 0 1px 4px rgba(211, 47, 47, 0.4);
    }
    .we-seg-icon {
        font-size: 0.85rem;
        width: auto;
        margin: 0;
    }

    /* Editor-Formular: Nimmt auf kleinen Displays fast 100% Vollbild ein */
    .we-content-panel {
        flex: 1;
        width: 100% !important;
        height: calc(100% - 38px) !important;
        padding: 6px 4px 24px 4px !important;
        box-sizing: border-box !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #0d0f14;
    }
    .we-content-panel.mobile-hidden {
        display: none !important;
    }

    .we-panel-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 12px 10px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        box-shadow: none !important;
        background: #141720;
    }
    .we-panel-title {
        font-size: 1.15rem !important;
        margin-bottom: 2px !important;
    }
    .we-panel-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
    }
    .we-group {
        margin-bottom: 12px !important;
    }
    .we-label {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
    }
    .we-input, .we-textarea {
        padding: 7px 9px !important;
        font-size: 0.88rem !important;
        border-radius: 6px !important;
    }
    .we-toolbar {
        padding: 3px 6px !important;
    }
    .we-tool-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.8rem !important;
    }
    .we-dropzone {
        padding: 12px 8px !important;
        margin-bottom: 10px !important;
        border-radius: 8px !important;
    }
    .we-dropzone-icon {
        font-size: 1.5rem !important;
        margin-bottom: 2px !important;
    }
    .we-dropzone-text {
        font-size: 0.84rem !important;
    }
    .we-dropzone-sub {
        font-size: 0.72rem !important;
    }
    .we-item-card {
        padding: 8px 8px !important;
        margin-bottom: 8px !important;
        border-radius: 8px !important;
    }

    /* Vorschau-Panel: Nimmt im Vorschau-Modus 100% Vollbild ein ohne künstlichen Smartphone-Rahmen */
    .we-preview-panel {
        display: none;
        flex: 1;
        width: 100% !important;
        height: calc(100% - 38px) !important;
        border-left: none !important;
        background: #ffffff !important;
        overflow: hidden !important;
    }
    .we-preview-panel.mobile-active {
        display: flex !important;
    }
    .we-preview-header {
        padding: 3px 8px !important;
        min-height: 26px !important;
        font-size: 0.74rem !important;
        background: #11141d !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .we-preview-device-toggle {
        display: none !important; /* Bereits auf mobilem Display */
    }
    .we-preview-frame-wrap,
    .we-preview-frame-wrap.device-mobile {
        padding: 0 !important;
        background: #ffffff !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .we-preview-container,
    .we-preview-frame-wrap.device-mobile .we-preview-container {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 100% !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #ffffff !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
}

/* Smartphone Portrait (< 600px) */
@media (max-width: 600px) {
    .we-header {
        padding: 4px 6px;
        gap: 4px;
        flex-wrap: nowrap;
    }
    .we-title {
        display: none !important; /* Kein Platz für Titel – voller Fokus auf Umschaltung & Aktionen */
    }
    .we-view-toggle {
        flex: 1;
        max-width: 150px;
    }
    .we-view-toggle #we-toggle-split {
        display: none !important; /* Split auf Mini-Displays nicht sinnvoll */
    }
    .we-toggle-btn {
        padding: 4px 8px;
        font-size: 0.74rem;
        flex: 1;
        text-align: center;
    }
    .we-header-actions {
        gap: 3px;
    }
    .we-btn {
        padding: 4px 6px;
        font-size: 0.74rem;
        gap: 2px;
    }
    .we-btn-text-full {
        display: none !important;
    }
    .we-btn-text-short {
        display: inline !important;
    }
}

/* ==========================================================================
   Musiker Foto Crop & Zoom Controls
   ========================================================================== */
.we-member-crop-box {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.we-member-crop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.we-member-crop-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.we-crop-reset-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #cbd5e1;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.we-crop-reset-btn:hover {
    background: rgba(245, 158, 11, 0.2);
    color: #ffffff;
    border-color: #f59e0b;
}

.we-member-crop-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.we-member-crop-preview-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.we-member-crop-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    cursor: grab;
    user-select: none;
    touch-action: none;
    background: #0f172a;
}

.we-member-crop-circle.dragging {
    cursor: grabbing;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}

.we-crop-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.18) 100%);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.we-crop-hint {
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
    white-space: nowrap;
}

.we-member-crop-sliders {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.we-crop-slider-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.we-crop-label-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.we-crop-label {
    font-size: 0.78rem;
    color: #cbd5e1;
    font-weight: 500;
}

.we-crop-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    padding: 1px 6px;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
}

.we-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin: 4px 0;
}

.we-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f59e0b;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.15s, background-color 0.15s;
}

.we-slider::-webkit-slider-thumb:hover,
.we-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    background: #fbbf24;
}

.we-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f59e0b;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

@media (max-width: 600px) {
    .we-member-crop-body {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .we-member-crop-preview-wrap {
        align-self: center;
    }
}

