/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM CAR LISTING EDIT - ULTRA-LUXURY STYLESHEET
   Namespace: cleeeeee (Car Listing Edit Excellence & Elegance)
   Brand: Automotive Excellence | High-Performance Design System
   ═══════════════════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* ═══════════════════════════════════════════════════════════════════════════
   ROOT VARIABLES - BRAND COLOR SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
    /* Primary Brand Colors */
    --cleeeeee-primary-orange: #ff7a00;
    --cleeeeee-orange-light: #ff9533;
    --cleeeeee-orange-dark: #e66a00;
    --cleeeeee-orange-glow: rgba(255, 122, 0, 0.4);
    
    /* Neutral Colors */
    --cleeeeee-white: #ffffff;
    --cleeeeee-cream: #f5e7da;
    --cleeeeee-black: #000000;
    
    /* Dark Theme Palette */
    --cleeeeee-dark-primary: #0a0a0a;
    --cleeeeee-dark-secondary: #0d0d0d;
    --cleeeeee-dark-elevated: #141414;
    --cleeeeee-dark-surface: #181818;
    --cleeeeee-dark-card: #1a1a1a;
    --cleeeeee-dark-border: #222222;
    --cleeeeee-dark-medium: #2d2d2d;
    
    /* Status Colors */
    --cleeeeee-success: #10b981;
    --cleeeeee-success-dark: #059669;
    --cleeeeee-danger: #ef4444;
    --cleeeeee-danger-dark: #dc2626;
    --cleeeeee-warning: #f59e0b;
    --cleeeeee-warning-dark: #d97706;
    --cleeeeee-info: #3b82f6;
    --cleeeeee-info-dark: #2563eb;
    
    /* Text Colors */
    --cleeeeee-text-primary: #ffffff;
    --cleeeeee-text-secondary: rgba(255, 255, 255, 0.85);
    --cleeeeee-text-tertiary: rgba(255, 255, 255, 0.7);
    --cleeeeee-text-muted: rgba(255, 255, 255, 0.5);
    --cleeeeee-text-disabled: rgba(255, 255, 255, 0.3);
    
    /* Gradients */
    --cleeeeee-gradient-primary: linear-gradient(135deg, #ff7a00, #ff9533);
    --cleeeeee-gradient-dark: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --cleeeeee-gradient-glass: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 149, 51, 0.06));
    --cleeeeee-gradient-card: linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(34, 34, 34, 0.95));
    --cleeeeee-gradient-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
    --cleeeeee-gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
    --cleeeeee-gradient-info: linear-gradient(135deg, #3b82f6, #2563eb);
    
    /* Shadows */
    --cleeeeee-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --cleeeeee-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --cleeeeee-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --cleeeeee-shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    --cleeeeee-shadow-glow: 0 0 40px rgba(255, 122, 0, 0.3);
    --cleeeeee-shadow-glow-strong: 0 0 60px rgba(255, 122, 0, 0.5);
    --cleeeeee-shadow-primary: 0 25px 80px rgba(255, 122, 0, 0.35);
    
    /* Effects */
    --cleeeeee-blur-glass: blur(25px);
    --cleeeeee-blur-heavy: blur(40px);
    
    /* Border Radius */
    --cleeeeee-radius-xs: 8px;
    --cleeeeee-radius-sm: 12px;
    --cleeeeee-radius-md: 16px;
    --cleeeeee-radius-lg: 20px;
    --cleeeeee-radius-xl: 24px;
    --cleeeeee-radius-2xl: 32px;
    --cleeeeee-radius-full: 9999px;
    
    /* Transitions */
    --cleeeeee-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --cleeeeee-transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cleeeeee-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --cleeeeee-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --cleeeeee-transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-index Scale */
    --cleeeeee-z-base: 1;
    --cleeeeee-z-dropdown: 100;
    --cleeeeee-z-sticky: 200;
    --cleeeeee-z-fixed: 300;
    --cleeeeee-z-modal: 400;
    --cleeeeee-z-popover: 500;
    --cleeeeee-z-tooltip: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL WRAPPER & RESET
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cleeeeee-dark-primary), var(--cleeeeee-dark-elevated), var(--cleeeeee-dark-secondary));
    color: var(--cleeeeee-text-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    padding: clamp(80px, 12vh, 120px) clamp(16px, 3vw, 40px) clamp(60px, 10vh, 100px);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING PARTICLES BACKGROUND
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--cleeeeee-z-base);
    overflow: hidden;
}

.cleeeeee-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cleeeeee-primary-orange), transparent);
    opacity: 0.2;
    animation: cleeeeeeFloatOrbit 25s linear infinite;
}

.cleeeeee-particle:nth-child(1) { width: 4px; height: 4px; left: 15%; top: 25%; animation-duration: 20s; }
.cleeeeee-particle:nth-child(2) { width: 6px; height: 6px; left: 75%; top: 20%; animation-duration: 28s; animation-delay: -5s; }
.cleeeeee-particle:nth-child(3) { width: 3px; height: 3px; left: 50%; top: 70%; animation-duration: 22s; animation-delay: -10s; }
.cleeeeee-particle:nth-child(4) { width: 5px; height: 5px; left: 85%; top: 55%; animation-duration: 26s; animation-delay: -15s; }

.cleeeeee-glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent);
    filter: blur(100px);
    animation: cleeeeeePulseGlow 7s ease-in-out infinite;
}

.cleeeeee-glow-1 { width: 350px; height: 350px; left: 20%; top: 30%; animation-delay: 0s; }
.cleeeeee-glow-2 { width: 450px; height: 450px; left: 65%; top: 55%; animation-delay: -4s; }

.cleeeeee-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 35%, rgba(255, 122, 0, 0.08), transparent 60%),
                radial-gradient(circle at 75% 75%, rgba(245, 231, 218, 0.05), transparent 60%);
    pointer-events: none;
    z-index: var(--cleeeeee-z-base);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(20px, 4vw, 32px);
    margin-bottom: clamp(40px, 8vh, 60px);
    padding: clamp(28px, 5.5vh, 40px) clamp(28px, 5.5vw, 48px);
    background: var(--cleeeeee-gradient-card);
    backdrop-filter: var(--cleeeeee-blur-glass);
    border-radius: var(--cleeeeee-radius-xl);
    border: 1px solid rgba(255, 122, 0, 0.15);
    box-shadow: var(--cleeeeee-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.cleeeeee-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent 70%);
    pointer-events: none;
    animation: cleeeeeePulseSlow 5s ease-in-out infinite;
}

.cleeeeee-header-content {
    flex: 1;
    z-index: 2;
}

.cleeeeee-header-title {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    background: linear-gradient(135deg, var(--cleeeeee-primary-orange), var(--cleeeeee-orange-light), var(--cleeeeee-white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cleeeeee-header-title i {
    color: var(--cleeeeee-primary-orange);
    font-size: 0.85em;
    -webkit-text-fill-color: var(--cleeeeee-primary-orange);
}

.cleeeeee-header-subtitle {
    font-size: clamp(0.95rem, 1.8vw + 0.3rem, 1.05rem);
    color: var(--cleeeeee-text-tertiary);
    font-weight: 500;
}

.cleeeeee-header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTON STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(12px, 2.5vh, 16px) clamp(20px, 4vw, 28px);
    border-radius: var(--cleeeeee-radius-md);
    font-size: clamp(0.9rem, 1.6vw + 0.3rem, 0.95rem);
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--cleeeeee-transition-smooth);
    overflow: hidden;
    z-index: 2;
}

.cleeeeee-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cleeeeee-btn:hover::before {
    left: 100%;
}

.cleeeeee-btn-primary {
    background: var(--cleeeeee-gradient-primary);
    color: var(--cleeeeee-white);
    box-shadow: 0 6px 20px var(--cleeeeee-orange-glow);
    border: 2px solid transparent;
}

.cleeeeee-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 122, 0, 0.5);
}

.cleeeeee-btn-secondary {
    background: rgba(34, 34, 34, 0.8);
    color: var(--cleeeeee-text-secondary);
    border: 2px solid rgba(255, 122, 0, 0.2);
}

.cleeeeee-btn-secondary:hover {
    background: rgba(255, 122, 0, 0.1);
    border-color: var(--cleeeeee-primary-orange);
    color: var(--cleeeeee-primary-orange);
    transform: translateY(-2px);
}

.cleeeeee-btn-info {
    background: var(--cleeeeee-gradient-info);
    color: var(--cleeeeee-white);
    border: 2px solid transparent;
}

.cleeeeee-btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cleeeeee-btn-lg {
    padding: clamp(16px, 3vh, 20px) clamp(28px, 5vw, 36px);
    font-size: clamp(1rem, 1.8vw + 0.3rem, 1.1rem);
}

.cleeeeee-btn-block {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ALERT/NOTIFICATION STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-alert {
    position: relative;
    padding: clamp(16px, 3vh, 20px) clamp(20px, 4vw, 24px);
    border-radius: var(--cleeeeee-radius-lg);
    margin-bottom: clamp(20px, 4vh, 28px);
    backdrop-filter: var(--cleeeeee-blur-glass);
    border: 2px solid;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: cleeeeeeSlideIn 0.5s ease-out;
}

.cleeeeee-alert i {
    font-size: 1.2em;
    margin-top: 2px;
}

.cleeeeee-alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border-color: var(--cleeeeee-danger);
    color: #fca5a5;
}

.cleeeeee-alert-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    border-color: var(--cleeeeee-info);
    color: #93c5fd;
}

.cleeeeee-alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    border-color: var(--cleeeeee-warning);
    color: #fcd34d;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 32px);
}

@media (min-width: 1024px) {
    .cleeeeee-form-container {
        grid-template-columns: 1fr 400px;
    }
}

.cleeeeee-form-main {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vh, 32px);
}

.cleeeeee-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vh, 32px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARD STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-card {
    position: relative;
    background: var(--cleeeeee-gradient-card);
    backdrop-filter: var(--cleeeeee-blur-glass);
    border-radius: var(--cleeeeee-radius-xl);
    border: 1px solid rgba(255, 122, 0, 0.12);
    box-shadow: var(--cleeeeee-shadow-md);
    overflow: hidden;
    transition: var(--cleeeeee-transition-smooth);
}

.cleeeeee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.cleeeeee-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cleeeeee-shadow-lg), 0 0 40px rgba(255, 122, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.25);
}

.cleeeeee-card-header {
    padding: clamp(20px, 4vh, 28px) clamp(24px, 5vw, 32px);
    border-bottom: 1px solid rgba(255, 122, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), transparent);
}

.cleeeeee-card-title {
    font-size: clamp(1.15rem, 2.2vw + 0.3rem, 1.3rem);
    font-weight: 700;
    color: var(--cleeeeee-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cleeeeee-card-title i {
    color: var(--cleeeeee-primary-orange);
}

.cleeeeee-card-body {
    padding: clamp(24px, 5vh, 32px) clamp(24px, 5vw, 32px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM CONTROLS
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vh, 28px);
}

.cleeeeee-form-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.cleeeeee-form-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.cleeeeee-form-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
}

.cleeeeee-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cleeeeee-form-label {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 0.95rem);
    font-weight: 600;
    color: var(--cleeeeee-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cleeeeee-required {
    color: var(--cleeeeee-danger);
    font-size: 1.1em;
}

.cleeeeee-form-control,
.cleeeeee-form-select,
.cleeeeee-form-textarea {
    width: 100%;
    padding: clamp(12px, 2.5vh, 15px) clamp(16px, 3vw, 20px);
    background: rgba(24, 24, 24, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 122, 0, 0.15);
    border-radius: var(--cleeeeee-radius-sm);
    color: var(--cleeeeee-text-primary);
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 0.95rem);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    transition: var(--cleeeeee-transition-base);
}

.cleeeeee-form-control::placeholder,
.cleeeeee-form-textarea::placeholder {
    color: var(--cleeeeee-text-muted);
}

.cleeeeee-form-control:focus,
.cleeeeee-form-select:focus,
.cleeeeee-form-textarea:focus {
    outline: none;
    border-color: var(--cleeeeee-primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
    transform: translateY(-2px);
}

.cleeeeee-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff7a00' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer;
}

.cleeeeee-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.cleeeeee-form-text {
    font-size: clamp(0.8rem, 1.3vw + 0.3rem, 0.85rem);
    color: var(--cleeeeee-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cleeeeee-invalid-feedback {
    font-size: clamp(0.8rem, 1.3vw + 0.3rem, 0.85rem);
    color: var(--cleeeeee-danger);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: cleeeeeeShake 0.3s ease;
}

.cleeeeee-is-invalid {
    border-color: var(--cleeeeee-danger);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.cleeeeee-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.cleeeeee-form-check-input {
    width: 20px;
    height: 20px;
    accent-color: var(--cleeeeee-primary-orange);
    cursor: pointer;
}

.cleeeeee-form-check-label {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 0.95rem);
    color: var(--cleeeeee-text-secondary);
    font-weight: 500;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════════════
   IMAGE GALLERY/PREVIEW SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-image-preview-section {
    margin-bottom: clamp(20px, 4vh, 28px);
}

.cleeeeee-image-preview-label {
    font-size: clamp(0.95rem, 1.6vw + 0.3rem, 1rem);
    font-weight: 600;
    color: var(--cleeeeee-text-secondary);
    margin-bottom: 12px;
    display: block;
}

.cleeeeee-current-main-image {
    position: relative;
    display: inline-block;
    border-radius: var(--cleeeeee-radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 122, 0, 0.3);
    box-shadow: var(--cleeeeee-shadow-md);
    transition: var(--cleeeeee-transition-smooth);
}

.cleeeeee-current-main-image:hover {
    transform: scale(1.05);
    box-shadow: var(--cleeeeee-shadow-lg), 0 0 40px rgba(255, 122, 0, 0.4);
    border-color: var(--cleeeeee-primary-orange);
}

.cleeeeee-current-main-image img {
    max-height: clamp(150px, 25vh, 200px);
    width: auto;
    display: block;
}

.cleeeeee-current-main-image::before {
    content: 'Current Main Image';
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--cleeeeee-gradient-primary);
    color: var(--cleeeeee-white);
    border-radius: var(--cleeeeee-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.cleeeeee-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 120px), 1fr));
    gap: clamp(12px, 2.5vw, 16px);
    margin-top: 16px;
}

.cleeeeee-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--cleeeeee-radius-md);
    overflow: hidden;
    border: 2px solid rgba(255, 122, 0, 0.2);
    transition: var(--cleeeeee-transition-smooth);
    cursor: pointer;
}

.cleeeeee-gallery-item:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: var(--cleeeeee-shadow-md), 0 0 30px rgba(255, 122, 0, 0.3);
    border-color: var(--cleeeeee-primary-orange);
    z-index: 10;
}

.cleeeeee-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cleeeeee-transition-smooth);
}

.cleeeeee-gallery-item:hover img {
    transform: scale(1.15);
}

.cleeeeee-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cleeeeee-gradient-overlay);
    opacity: 0;
    transition: var(--cleeeeee-transition-base);
}

.cleeeeee-gallery-item:hover::after {
    opacity: 1;
}

.cleeeeee-remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--cleeeeee-gradient-danger);
    color: var(--cleeeeee-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--cleeeeee-transition-base);
    z-index: 20;
}

.cleeeeee-gallery-item:hover .cleeeeee-remove-image-btn {
    opacity: 1;
    transform: scale(1);
}

.cleeeeee-remove-image-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILE INPUT STYLING
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-form-file {
    position: relative;
    padding: clamp(16px, 3vh, 20px);
    background: rgba(24, 24, 24, 0.6);
    border: 2px dashed rgba(255, 122, 0, 0.3);
    border-radius: var(--cleeeeee-radius-md);
    cursor: pointer;
    transition: var(--cleeeeee-transition-base);
}

.cleeeeee-form-file:hover {
    background: rgba(255, 122, 0, 0.05);
    border-color: var(--cleeeeee-primary-orange);
    border-style: solid;
}

.cleeeeee-form-file::before {
    content: '📁 Choose File';
    display: block;
    text-align: center;
    color: var(--cleeeeee-text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.cleeeeee-form-file:hover::before {
    color: var(--cleeeeee-primary-orange);
}

input[type="file"].cleeeeee-form-file {
    padding-top: clamp(40px, 7vh, 50px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STICKY SIDEBAR FOR SUBMIT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .cleeeeee-sticky-sidebar {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTON GROUP
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REJECTION REASON DISPLAY
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-rejection-box {
    padding: clamp(16px, 3vh, 20px);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
    border: 2px solid var(--cleeeeee-danger);
    border-radius: var(--cleeeeee-radius-lg);
    margin-bottom: clamp(20px, 4vh, 28px);
    animation: cleeeeeePulse 2s ease-in-out infinite;
}

.cleeeeee-rejection-title {
    font-size: clamp(1rem, 2vw + 0.3rem, 1.1rem);
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cleeeeee-rejection-reason {
    font-size: clamp(0.9rem, 1.6vw + 0.3rem, 0.95rem);
    color: var(--cleeeeee-text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes cleeeeeeFloatOrbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 0.2;
    }
}

@keyframes cleeeeeePulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.12);
    }
}

@keyframes cleeeeeePulseSlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.06);
    }
}

@keyframes cleeeeeeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cleeeeeeShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes cleeeeeePulse {
    0%, 100% {
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

@keyframes cleeeeeeShimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-mb-3 {
    margin-bottom: clamp(16px, 3vh, 24px);
}

.cleeeeee-d-grid {
    display: grid;
}

.cleeeeee-gap-2 {
    gap: clamp(12px, 2.5vw, 16px);
}

.cleeeeee-text-muted {
    color: var(--cleeeeee-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .cleeeeee-wrapper {
        padding: clamp(70px, 11vh, 100px) clamp(16px, 3vw, 32px) clamp(50px, 9vh, 80px);
    }
    
    .cleeeeee-form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .cleeeeee-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cleeeeee-header-actions {
        justify-content: center;
    }
    
    .cleeeeee-form-grid-3,
    .cleeeeee-form-grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    }
}

@media (max-width: 768px) {
    .cleeeeee-wrapper {
        padding: clamp(60px, 10vh, 90px) 20px clamp(40px, 8vh, 70px);
    }
    
    .cleeeeee-header-title {
        flex-direction: column;
        gap: 8px;
    }
    
    .cleeeeee-form-grid-2,
    .cleeeeee-form-grid-3,
    .cleeeeee-form-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .cleeeeee-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 100px), 1fr));
    }
}

@media (max-width: 640px) {
    .cleeeeee-header-actions {
        flex-direction: column;
    }
    
    .cleeeeee-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY & PERFORMANCE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.cleeeeee-wrapper ::selection {
    background: var(--cleeeeee-primary-orange);
    color: var(--cleeeeee-white);
}

.cleeeeee-wrapper :focus-visible {
    outline: 3px solid var(--cleeeeee-primary-orange);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.cleeeeee-wrapper::-webkit-scrollbar {
    width: 10px;
}

.cleeeeee-wrapper::-webkit-scrollbar-track {
    background: var(--cleeeeee-dark-primary);
}

.cleeeeee-wrapper::-webkit-scrollbar-thumb {
    background: var(--cleeeeee-gradient-primary);
    border-radius: 5px;
}

.cleeeeee-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--cleeeeee-orange-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   END OF STYLESHEET - PRODUCTION READY
   ═══════════════════════════════════════════════════════════════════════════ */

   QUICK FIX - The CSS is missing! Add this to your edit page stylesheet OR inline:
Option 1: Add to @push('styles') in your edit blade:
blade@push('styles')
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link href="{{ asset('css/car-listing-edit.css') }}" rel="stylesheet">

<style>
/* ═══════════════════════════════════════════════════════════════════════════
   IMAGE UPLOAD SYSTEM - REQUIRED STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hide file inputs */
.cleeeeee-form-file-hidden {
    position: absolute;
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    z-index: -1;
}

/* Upload Area - Compact */
.cleeeeee-upload-area {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(34, 34, 34, 0.95));
    border: 2px dashed rgba(255, 122, 0, 0.4);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-top: 12px;
}

.cleeeeee-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.cleeeeee-upload-area:hover::before {
    left: 100%;
}

.cleeeeee-upload-area:hover {
    border-color: #ff7a00;
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.08), rgba(255, 149, 51, 0.04));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.cleeeeee-upload-area.active {
    border-color: #ff9533;
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.12), rgba(255, 149, 51, 0.06));
    border-style: solid;
}

.cleeeeee-upload-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.4);
    transition: all 0.3s;
    position: relative;
    flex-shrink: 0;
}

.cleeeeee-upload-area:hover .cleeeeee-upload-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.6);
}

.cleeeeee-upload-text {
    flex: 1;
    text-align: left;
}

.cleeeeee-upload-title {
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff7a00, #ff9533, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.cleeeeee-upload-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.cleeeeee-upload-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.cleeeeee-upload-hint i {
    color: #ff7a00;
}

.cleeeeee-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(255, 122, 0, 0.4);
    flex-shrink: 0;
}

.cleeeeee-browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(255, 122, 0, 0.6);
}

/* File Selected State */
.cleeeeee-file-selected {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    margin-top: 10px;
}

.cleeeeee-file-selected.show {
    display: flex;
}

.cleeeeee-file-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.cleeeeee-file-info {
    flex: 1;
}

.cleeeeee-file-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.cleeeeee-file-size {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.cleeeeee-file-remove {
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cleeeeee-file-remove:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1) rotate(90deg);
}

/* Image Preview */
.cleeeeee-image-preview-container {
    margin-top: 16px;
}

.cleeeeee-image-preview-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 122, 0, 0.3);
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cleeeeee-preview-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.cleeeeee-remove-preview-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ef4444;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.cleeeeee-remove-preview-btn:hover {
    background: #dc2626;
    transform: scale(1.1) rotate(90deg);
}

.cleeeeee-new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* New Gallery Preview Grid */
.cleeeeee-new-gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.cleeeeee-new-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: #000;
    transition: all 0.3s;
}

.cleeeeee-new-gallery-item:hover {
    border-color: #10b981;
    transform: scale(1.05);
}

.cleeeeee-new-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cleeeeee-new-gallery-item .cleeeeee-remove-preview-btn {
    opacity: 0;
}

.cleeeeee-new-gallery-item:hover .cleeeeee-remove-preview-btn {
    opacity: 1;
}

.cleeeeee-upload-area.dragover {
    border-color: #ff9533;
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.15), rgba(255, 149, 51, 0.08));
    transform: scale(1.01);
}

@media (max-width: 640px) {
    .cleeeeee-upload-area {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .cleeeeee-upload-text {
        text-align: center;
    }
    .cleeeeee-browse-btn {
        width: 100%;
        justify-content: center;
    }
}

.cleeeeee-swal-toast {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
}

.cleeeeee-swal-toast .swal2-icon {
    margin: 0 12px 0 0 !important;
}

.cleeeeee-swal-toast .swal2-title {
    font-size: 1rem !important;
    margin: 0 !important;
}

.cleeeeee-swal-toast .swal2-html-container {
    margin: 0 !important;
    font-size: 0.9rem !important;
}

.cleeeeee-current-main-image-wrapper {
    position: relative;
}

.cleeeeee-remove-current-main-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
}

.cleeeeee-current-main-image-wrapper:hover .cleeeeee-remove-current-main-btn {
    opacity: 1;
}

.cleeeeee-remove-current-main-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5);
}

.cleeeeee-swal-confirm {
    border-radius: 20px !important;
    border: 2px solid rgba(255, 122, 0, 0.3) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6) !important;
}

.cleeeeee-swal-btn-confirm,
.cleeeeee-swal-btn-cancel {
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: none !important;
}

.cleeeeee-swal-btn-confirm {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: #fff !important;
}

.cleeeeee-swal-btn-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5) !important;
}

.cleeeeee-swal-btn-cancel {
    background: rgba(107, 114, 128, 0.2) !important;
    color: #fff !important;
    border: 2px solid rgba(107, 114, 128, 0.4) !important;
}

.cleeeeee-swal-btn-cancel:hover {
    background: rgba(107, 114, 128, 0.3) !important;
    transform: translateY(-2px) !important;
}

.swal2-actions {
    gap: 12px !important;
}