html {
    margin: 0;
    overflow-x: clip;   /* clip (et pas hidden) pour ne pas casser le header sticky */
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f6f8fc;
    color: #222;
    max-width: 100vw;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;   /* clip (et pas hidden) pour ne pas casser le header sticky */
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Enhanced header styles */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: linear-gradient(90deg, #fff 80%, #e3edfa 100%);
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    border-radius: 0 0 18px 18px;
    position: sticky;   /* reste fixe en haut quand on scrolle */
    top: 0;
    z-index: 1000;
    min-height: 48px;
    width: 100%;
    margin: 0 auto 48px auto;
    border-bottom: 1px solid rgba(37,99,235,0.08);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 7px 18px 7px 9px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(37,99,235,0.14);
    box-shadow: 0 2px 10px rgba(37,99,235,0.08);
    position: relative;
    overflow: hidden;
}

/* Icon badge: white "drop into tray" glyph on the site's blue gradient */
.logo::before {
    content: '';
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v10m0 0l-4-4m4 4l4-4'/%3E%3Cpath d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px, cover;
    box-shadow: 0 4px 12px rgba(37,99,235,0.32);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shine sweep, same language as the site's premium buttons */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.08), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.logo:hover {
    border-color: rgba(37,99,235,0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37,99,235,0.18);
}

.logo:hover::before {
    transform: scale(1.08) rotate(-5deg);
}

.logo:hover::after {
    left: 100%;
}

.logo-icon {
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    white-space: nowrap;
}

.post-ad-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 12px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25), 0 2px 4px rgba(37,99,235,0.1);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.post-ad-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.post-ad-btn:hover::before {
    left: 100%;
}

.post-ad-btn:hover {
    background: linear-gradient(135deg, #1746a2 0%, #2563eb 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37,99,235,0.35), 0 4px 8px rgba(37,99,235,0.15);
    border-color: rgba(255,255,255,0.3);
}

.post-ad-icon {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.post-ad-btn:hover .post-ad-icon {
    transform: scale(1.2) rotate(90deg);
}

.post-ad-text {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 0;
    padding: 0 20px;
}

/* Header Search - ULTRA SIMPLE */
.search-simple {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input {
    width: 100%;
    padding: 14px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    background: #fff;
    font-size: 1rem;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(16,24,40,0.05);
}

.search-input:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(16,24,40,0.08);
}

.search-input:focus {
    border-color: #2563eb;
    border-radius: 35px;
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 8px 20px -6px rgba(37, 99, 235, 0.28);
}

.search-simple.expanded {
    max-width: 650px;
}

.search-simple.expanded .search-input {
    padding: 14px 28px;
    border-radius: 35px;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 10px 26px -6px rgba(37, 99, 235, 0.3);
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Barre de recherche arrondie (référence : page d'accueil) — s'applique à
   toutes les pages. Les media queries mobiles des pages restent prioritaires. */
.search-input {
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
}

.search-input:focus {
    border-radius: 35px !important;
    transform: scale(1.02) !important;
}

.search-simple {
    transition: all 0.3s ease !important;
}

.search-simple.expanded .search-input {
    border-radius: 35px !important;
}

/* ===== MOBILE : logo et "Post an Ad" strictement identiques =====
   Sélecteurs volontairement spécifiques (.main-header .x) pour l'emporter
   sur les règles !important des pages, quel que soit l'ordre de chargement. */
@media (max-width: 900px) {
    header.main-header .logo,
    header.main-header .post-ad-btn {
        height: 54px !important;
        min-height: 54px !important;
        padding: 0 16px !important;
        border-radius: 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        transform: none !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }

    /* Le logo garde toujours un fond blanc (jamais de teinte bleue) */
    header.main-header .logo {
        background: #ffffff !important;
        border: 1px solid rgba(37, 99, 235, 0.12) !important;
    }

    header.main-header .logo-text,
    header.main-header .post-ad-text {
        white-space: nowrap !important;
        line-height: 1 !important;
    }

    header.main-header .logo-text {
        font-size: 1.1rem !important;
        letter-spacing: 0.2px !important;
    }

    header.main-header .post-ad-text {
        font-size: 0.98rem !important;
    }

    header.main-header .logo::before,
    header.main-header .post-ad-icon {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
    }

    /* Barre de recherche identique sur toutes les pages en mobile */
    header.main-header .search-input {
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 18px !important;
        border-radius: 23px !important;
        font-size: 15px !important;
        box-sizing: border-box !important;
    }

    header.main-header .header-left {
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }

    /* Mise en page mobile commune : tout centré, même padding */
    header.main-header {
        padding: 10px 15px !important;
    }

    header.main-header .header-left,
    header.main-header .header-right {
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
    }

    header.main-header .header-right {
        gap: 6px !important;
        flex-wrap: nowrap !important;
    }

    /* Boutons de droite : taille identique partout, tenant sur une seule ligne */
    header.main-header .sign-in-btn,
    header.main-header .sign-up-btn {
        height: 42px !important;
        min-height: 42px !important;
        padding: 0 13px !important;
        border-radius: 12px !important;
        font-size: 0.88rem !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    header.main-header .header-link {
        height: 42px !important;
        min-height: 42px !important;
        padding: 0 9px !important;
        border-radius: 12px !important;
        font-size: 0.8rem !important;
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
}

/* Très petits écrans : on réduit légèrement pour que les deux tiennent côte à côte */
@media (max-width: 400px) {
    header.main-header .logo,
    header.main-header .post-ad-btn {
        height: 54px !important;
        min-height: 54px !important;
        padding: 0 13px !important;
        gap: 7px !important;
    }

    header.main-header .logo-text {
        font-size: 1rem !important;
    }

    header.main-header .post-ad-text {
        font-size: 0.9rem !important;
    }

    header.main-header .logo::before,
    header.main-header .post-ad-icon {
        width: 20px !important;
        height: 20px !important;
    }

    header.main-header .header-left {
        gap: 8px !important;
    }
}

/* Écrans très étroits (≤ 350px) : on garde la hauteur, on resserre la largeur */
@media (max-width: 350px) {
    header.main-header .logo,
    header.main-header .post-ad-btn {
        padding: 0 10px !important;
        gap: 5px !important;
    }

    header.main-header .logo-text {
        font-size: 0.88rem !important;
    }

    header.main-header .post-ad-text {
        font-size: 0.8rem !important;
    }

    header.main-header .logo::before,
    header.main-header .post-ad-icon {
        width: 18px !important;
        height: 18px !important;
    }

    header.main-header .header-left {
        gap: 6px !important;
    }

    /* Boutons de droite resserrés pour tenir sur une seule ligne */
    header.main-header .header-right {
        gap: 4px !important;
    }

    header.main-header .sign-in-btn,
    header.main-header .sign-up-btn {
        padding: 0 9px !important;
        font-size: 0.78rem !important;
    }

    header.main-header .header-link {
        padding: 0 5px !important;
        font-size: 0.72rem !important;
    }
}

@media (max-width: 900px) {
    .search-simple {
        max-width: 90%;
    }
    
    .search-simple.expanded {
        max-width: 95%;
    }
}

@media (max-width: 600px) {
    .search-input {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .search-simple.expanded .search-input {
        padding: 13px 22px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.header-link:hover {
    background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.12) 100%);
    color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.header-link svg {
    transition: all 0.3s ease;
}

.header-link:hover svg {
    transform: scale(1.1);
    stroke: #2563eb;
}

.link-text {
    font-weight: 600;
    transition: all 0.3s ease;
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 12px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239,68,68,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(37,99,235,0.1);
}

.sign-in-btn, .sign-up-btn {
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.sign-in-btn {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}

/* Gradient fill that sweeps in via transform (GPU-smooth), same blue
   language as the Sign Up button so the pair reads as one system. */
.sign-in-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.sign-in-btn:hover::before {
    transform: translateX(0);
}

.sign-in-btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,99,235,0.35);
}

.sign-in-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(37,99,235,0.25);
}

.sign-up-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.sign-up-btn:hover {
    background: linear-gradient(135deg, #1746a2 0%, #2563eb 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.sign-in-btn svg, .sign-up-btn svg {
    transition: all 0.3s ease;
}

.sign-in-btn:hover svg, .sign-up-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive improvements */
@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 4vw;
        min-height: 0;
        border-radius: 0 0 12px 12px;
        margin-bottom: 20px;
    }
    
    .header-left {
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        padding: 6px 10px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .post-ad-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .post-ad-icon {
        width: 18px;
        height: 18px;
    }
    
    .header-center {
        padding: 0 8px;
        order: 2;
    }
    
    .search-input {
        padding: 12px 18px;
        font-size: 1rem;
    }
    
    .header-right {
        justify-content: center;
        gap: 12px;
        order: 3;
    }
    
    .auth-buttons {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    
    .header-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .sign-in-btn, .sign-up-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

@media (max-width: 600px) {
    .main-header {
        padding: 12px 3vw;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .logo {
        padding: 4px 10px 4px 6px;
        gap: 8px;
        border-radius: 11px;
    }

    .logo::before {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        background-size: 14px 14px, cover;
    }

    .logo-text {
        font-size: 1.05rem;
        letter-spacing: 0.2px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .post-ad-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .post-ad-icon {
        width: 16px;
        height: 16px;
    }
    
    .post-ad-text {
        font-size: 0.85rem;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header-link {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .header-link .link-text {
        display: none;
    }
    
    .sign-in-btn, .sign-up-btn {
        padding: 7px 12px;
        font-size: 0.85rem;
        gap: 4px;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 10px 2vw;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 22px;
        height: 22px;
    }
    
    .post-ad-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .post-ad-icon {
        width: 14px;
        height: 14px;
    }
    
    .post-ad-text {
        font-size: 0.8rem;
    }
    
    .header-right {
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .header-link {
        font-size: 0.75rem;
        padding: 4px 6px;
    }
    
    .header-link svg {
        width: 16px;
        height: 16px;
    }
    
    .sign-in-btn, .sign-up-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .sign-in-btn svg, .sign-up-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .search-input {
        font-size: 0.85rem;
        padding: 8px 14px;
        border-radius: 25px;
    }
    
    .header-center {
        padding: 0 4px;
    }
    
    .notification-badge {
        font-size: 0.7rem;
        padding: 1px 4px;
        min-width: 16px;
    }
}

/* Animation keyframes pour le logo */
@keyframes logoGlow {
    0% { box-shadow: 0 4px 12px rgba(37,99,235,0.15); }
    50% { box-shadow: 0 6px 20px rgba(37,99,235,0.25); }
    100% { box-shadow: 0 4px 12px rgba(37,99,235,0.15); }
}

.logo:focus-within {
    animation: logoGlow 2s ease-in-out infinite;
}

/* Animation de pulsation pour le bouton Post an Ad */
@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.post-ad-btn:focus {
    animation: buttonPulse 1s ease-in-out;
}

.main-bg {
    min-height: 100vh;
    background: #f6f8fc;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Auth pages modern style */
.auth-bg {
    min-height: 100vh;
    background: linear-gradient(120deg, #e3edfa 0%, #f6f8fc 100%);
    display: flex;
    flex-direction: column;
}

.auth-container {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.13), 0 2px 12px rgba(37,99,235,0.09);
    padding: 72px 60px 56px 60px;
    max-width: 540px;
    width: 100%;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.7s cubic-bezier(.4,2,.6,1);
    min-height: 650px;
    transition: box-shadow 0.2s;
}
.auth-container:hover {
    box-shadow: 0 24px 64px rgba(37,99,235,0.18), 0 4px 16px rgba(37,99,235,0.13);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.auth-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3edfa;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    padding: 10px;
}

.auth-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #2563eb;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.1;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 18px;
}

.input-icon-group {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    opacity: 0.95;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.auth-input.with-icon {
    width: 100%;
    box-sizing: border-box;
    padding-left: 60px;
    height: 60px;
    font-size: 1.18rem;
    border-radius: 16px;
    background: #f6f8fc;
    border: 1.5px solid #e0e7ef;
    box-shadow: 0 1.5px 8px rgba(37,99,235,0.06);
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    color: #222;
    font-weight: 500;
    margin: 0;
}
.auth-input.with-icon:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 4px 18px rgba(37,99,235,0.13);
}
.input-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.auth-btn.auth-btn-big {
    width: 100%;
    padding: 20px 0;
    font-size: 1.22rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 16px;
    margin-top: 24px;
    background: linear-gradient(90deg, #2563eb 60%, #1e40af 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.13);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.auth-btn.auth-btn-big:hover {
    background: linear-gradient(90deg, #1746a2 60%, #2563eb 100%);
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.04);
}
.auth-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-footer {
    margin-top: 38px;
    font-size: 1.12rem;
    color: #555;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.auth-link {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.auth-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .auth-container {
        padding: 18px 1vw 18px 1vw;
        max-width: 99vw;
        min-height: unset;
    }
    .auth-title {
        font-size: 1.4rem;
    }
    .auth-title-row {
        gap: 8px;
    }
    .input-icon svg {
        width: 20px;
        height: 20px;
    }
    .auth-input.with-icon {
        height: 44px;
        font-size: 1rem;
        padding-left: 38px;
    }
    .auth-btn.auth-btn-big {
        padding: 13px 0;
        font-size: 1rem;
        border-radius: 10px;
    }
}

.site-footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    text-align: center;
    padding: 20px 0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    margin-top: auto;
}

.profile-bg {
    min-height: 100vh;
    background: linear-gradient(120deg, #e3edfa 0%, #f6f8fc 100%);
    display: flex;
    flex-direction: column;
    margin: 0;
}

.profile-container {
    margin: 60px auto 60px auto;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.13), 0 2px 12px rgba(37,99,235,0.09);
    padding: 48px 40px 40px 40px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.7s cubic-bezier(.4,2,.6,1);
    min-height: 420px;
    transition: box-shadow 0.2s;
}
.profile-container:hover {
    box-shadow: 0 24px 64px rgba(37,99,235,0.18), 0 4px 16px rgba(37,99,235,0.13);
}

.profile-avatar {
    background: #e3edfa;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
}

.profile-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2563eb;
    margin: 0 0 32px 0;
    letter-spacing: 1px;
    line-height: 1.1;
    text-align: center;
}

.profile-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.profile-info-row {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    color: #222;
    background: #f6f8fc;
    border-radius: 16px;
    padding: 16px 20px;
    font-weight: 500;
    box-shadow: 0 1.5px 8px rgba(37,99,235,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.profile-info-row:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
}

.profile-info-row span {
    min-width: 90px;
    color: #2563eb;
    font-weight: 600;
}

.profile-listings-btn {
    width: 100%;
    margin-bottom: 24px;
    padding: 14px 28px;
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2563eb 60%, #1e40af 100%);
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.13);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.profile-listings-btn:hover {
    background: linear-gradient(90deg, #1746a2 60%, #2563eb 100%);
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.02);
}
.profile-listings-btn svg {
    transition: transform 0.2s;
}
.profile-listings-btn:hover svg {
    transform: scale(1.1);
}

.profile-edit-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    width: 100%;
}

.profile-save-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.12rem;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #2563eb 60%, #1e40af 100%);
    color: #fff;
}
.profile-save-btn:hover {
    background: linear-gradient(90deg, #1746a2 60%, #2563eb 100%);
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.02);
}

.profile-info-row input[type="text"],
.profile-info-row input[type="email"],
.profile-info-row input[type="tel"] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #e0e7ef;
    font-size: 1.08rem;
    background: #fff;
    transition: all 0.2s ease;
    outline: none;
    color: #222;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(37,99,235,0.06);
    margin-left: 12px;
}
.profile-info-row input:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .profile-container {
        padding: 32px 24px 32px 24px;
        max-width: 99vw;
        min-height: unset;
        margin: 40px auto 0 auto;
    }
    .profile-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    .profile-info-row {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .profile-info-row span {
        min-width: 80px;
    }
    .profile-listings-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .profile-save-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

main {
    margin: 0;
    padding: 0;
    flex: 1;
}

.listings-container {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.13), 0 2px 12px rgba(37,99,235,0.09);
    padding: 56px 48px 44px 48px;
    max-width: 600px;
    width: 100%;
    margin: 60px auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.7s cubic-bezier(.4,2,.6,1);
    min-height: 420px;
}

.listings-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2563eb;
    margin: 0 0 32px 0;
    letter-spacing: 1px;
    line-height: 1.1;
    text-align: center;
}

.listings-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.listings-empty-text {
    color: #888;
    font-size: 1.18rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

@media (max-width: 600px) {
    .listings-container {
        padding: 18px 2vw 18px 2vw;
        max-width: 99vw;
        min-height: unset;
    }
    .listings-title {
        font-size: 1.3rem;
    }
}

/* Post Ad Page Styles */
.post-ad-container {
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    animation: fadeIn 0.7s cubic-bezier(.4,2,.6,1);
}

.post-ad-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 24px 24px 0 0;
    padding: 48px 40px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.post-ad-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

.post-ad-subtitle {
    font-size: 1.18rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}

.post-ad-form {
    background: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.13), 0 2px 12px rgba(37,99,235,0.09);
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e3edfa;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e7ef;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #f6f8fc;
    transition: all 0.2s ease;
    outline: none;
    color: #222;
    font-weight: 500;
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
    transform: translateY(-1px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

.file-upload-area {
    border: 2px dashed #e0e7ef;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #f6f8fc;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
}

.file-upload-area p {
    margin: 12px 0 8px 0;
    font-weight: 600;
    color: #2563eb;
    font-size: 1.08rem;
}

.file-upload-area span {
    color: #666;
    font-size: 0.95rem;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid #e3edfa;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', Arial, sans-serif;
}

.btn-primary {
    background: linear-gradient(90deg, #2563eb 60%, #1e40af 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.13);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #1746a2 60%, #2563eb 100%);
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: #fff;
    color: #2563eb;
    border: 1.5px solid #2563eb;
    box-shadow: 0 1px 6px rgba(37,99,235,0.06);
}

.btn-secondary:hover {
    background: #e3edfa;
    color: #1746a2;
    border-color: #1746a2;
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .post-ad-container {
        margin: 20px auto;
        max-width: 95vw;
    }
    
    .post-ad-hero {
        padding: 32px 24px;
        border-radius: 16px 16px 0 0;
    }
    
    .post-ad-title {
        font-size: 2rem;
    }
    
    .post-ad-subtitle {
        font-size: 1.05rem;
    }
    
    .post-ad-form {
        padding: 24px;
        border-radius: 0 0 16px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .post-ad-hero {
        padding: 24px 16px;
    }
    
    .post-ad-title {
        font-size: 1.8rem;
    }
    
    .post-ad-form {
        padding: 16px;
    }
    
    .section-title {
        font-size: 1.15rem;
    }
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.create-listing-btn {
    background: linear-gradient(90deg, #2563eb 60%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.13);
}

.create-listing-btn:hover {
    background: linear-gradient(90deg, #1746a2 60%, #2563eb 100%);
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.02);
}

.listings-empty-subtext {
    color: #999;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 8px 0 0 0;
}

.listing-card {
    background: #fff;
    border: 1px solid #e3edfa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37,99,235,0.06);
}

.listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
    border-color: #2563eb;
}

.listing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.listing-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.listing-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0;
}

.listing-details {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.listing-category,
.listing-condition,
.listing-location {
    background: #f6f8fc;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.listing-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.listing-edit-btn,
.listing-delete-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-edit-btn {
    background: #fff;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.listing-edit-btn:hover {
    background: #e3edfa;
    transform: translateY(-1px);
}

.listing-delete-btn {
    background: #fff;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.listing-delete-btn:hover {
    background: #fef2f2;
    transform: translateY(-1px);
}

.listing-date {
    color: #999;
    font-size: 0.9rem;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .listings-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .create-listing-btn {
        justify-content: center;
        width: 100%;
    }
    
    .listing-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .listing-price {
        font-size: 1.2rem;
    }
    
    .listing-details {
        gap: 8px;
    }
    
    .listing-actions {
        flex-direction: column;
    }
}

/* New Premium Profile Dashboard Styles */
.profile-dashboard {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 8px;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.12);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Main Profile Card */
.profile-main-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.profile-main-card:hover {
    box-shadow: 0 24px 64px rgba(37,99,235,0.16);
}

/* Profile Header Section */
.profile-header-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid rgba(37,99,235,0.08);
}

.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.profile-avatar-container {
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3edfa 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    transition: transform 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.avatar-change-btn {
    display: none;
}

/* .avatar-change-btn:hover {
    background: #1e40af;
    transform: scale(1.1);
} */

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.status-badge.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.profile-title-section {
    flex: 1;
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.profile-listings-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(37,99,235,0.25);
}

.profile-listings-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.35);
}

/* Profile Section */
.profile-section {
    padding: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.section-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Form Styles */
.profile-form {
    max-width: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    color: #1f2937;
    font-weight: 500;
}

.form-group input:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    transform: translateY(-1px);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}

.save-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(16,185,129,0.25);
}

.save-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16,185,129,0.35);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-dashboard {
        margin: 20px auto;
        padding: 0 16px;
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .profile-header-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .profile-title {
        font-size: 2rem;
    }
    
    .profile-section {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-actions {
        justify-content: center;
    }
    
    .save-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Profile Styles for Modern Dashboard */
.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.profile-avatar-container {
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3edfa 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37,99,235,0.25);
}

.avatar-change-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
}

.avatar-change-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.status-badge.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* Quick Actions */
.profile-quick-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-action-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.2);
    position: relative;
    overflow: hidden;
}

.quick-action-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;
}

.quick-action-btn:hover::before {
    left: 100%;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.quick-action-btn.secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 16px rgba(107,114,128,0.2);
}

.quick-action-btn.secondary:hover {
    box-shadow: 0 8px 24px rgba(107,114,128,0.3);
}

/* Profile Form Card */
.profile-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-form-card:hover {
    box-shadow: 0 20px 56px rgba(37,99,235,0.12);
}

/* Enhanced Form Styles */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #f9fafb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    color: #1f2937;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.form-group textarea:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    transform: translateY(-1px);
}

.form-group textarea:hover {
    border-color: #d1d5db;
    background: #fff;
}

.save-btn.secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 6px 20px rgba(107,114,128,0.25);
}

.save-btn.secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    box-shadow: 0 8px 28px rgba(107,114,128,0.35);
}

.save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Enhanced Mobile Responsiveness for Profile */
@media (max-width: 768px) {
    .listings-controls {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }
    
    .profile-quick-actions {
        justify-content: center;
        width: 100%;
    }
    
    .quick-action-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .profile-form-card {
        padding: 32px 24px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .avatar-change-btn {
        width: 32px;
        height: 32px;
        bottom: 4px;
        right: 4px;
    }
}

@media (max-width: 480px) {
    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .profile-quick-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* Premium My Listings Dashboard Styles */
.listings-dashboard {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Overview Section */
.listings-overview {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.06);
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.premium-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
    position: relative;
    overflow: hidden;
}

.premium-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;
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37,99,235,0.35);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.stat-card.primary {
    border-left-color: #2563eb;
    background: linear-gradient(135deg, rgba(37,99,235,0.02) 0%, #fff 100%);
}

.stat-card.success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, rgba(16,185,129,0.02) 0%, #fff 100%);
}

.stat-card.warning {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245,158,11,0.02) 0%, #fff 100%);
}

.stat-card.info {
    border-left-color: #2563eb;
    background: linear-gradient(135deg, rgba(37,99,235,0.02) 0%, #fff 100%);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.stat-card .stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-card.primary .stat-icon {
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    color: #2563eb;
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
    color: #10b981;
}

.stat-card.warning .stat-icon {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.05));
    color: #f59e0b;
}

.stat-card.info .stat-icon {
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    color: #2563eb;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-info {
    flex: 1;
}

.stat-info .stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1;
}

.stat-info .stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.stat-change.positive {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

/* Listings Controls */
.listings-controls {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.04);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.controls-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.controls-right {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    color: #374151;
    font-weight: 500;
    min-width: 180px;
    cursor: pointer;
}

.filter-select:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.view-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    gap: 2px;
}

.view-btn {
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.view-btn.active {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.15);
}

.view-btn:hover:not(.active) {
    background: rgba(255,255,255,0.5);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box svg {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    pointer-events: none;
}

.search-box input {
    padding: 12px 16px 12px 44px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    color: #374151;
    min-width: 250px;
}

.search-box input:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* Listings Content */
.listings-content {
    min-height: 400px;
}

.listings-grid {
    display: grid;
    gap: 24px;
    transition: all 0.3s ease;
}

.listings-grid.grid-view,
.listings-grid.list-view,
.listings-grid {
    grid-template-columns: 1fr;
}

/* Enhanced Listing Cards */
.listing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.1);
}

.listing-card-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.listing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.listing-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2563eb;
    margin: 0;
}

.listing-details {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.listing-category,
.listing-condition,
.listing-location {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.listing-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-meta {
    padding: 16px 24px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.listing-actions {
    display: flex;
    gap: 8px;
}

.listing-edit-btn,
.listing-delete-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-edit-btn {
    background: #fff;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.listing-edit-btn:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-1px);
}

.listing-delete-btn {
    background: #fff;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.listing-delete-btn:hover {
    background: #ef4444;
    color: #fff;
    transform: translateY(-1px);
}

/* Enhanced Empty State */
.empty-state {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.06);
    max-width: 600px;
    margin: 40px auto;
}

.empty-illustration {
    margin-bottom: 32px;
    opacity: 0.7;
}

.empty-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.empty-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.empty-actions {
    margin-bottom: 40px;
}

.create-first-listing-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}

.create-first-listing-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.35);
}

.empty-tips {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.empty-tips h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.empty-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empty-tips li {
    padding: 8px 0;
    color: #374151;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .listings-dashboard {
        margin: 20px auto;
        padding: 0 16px;
        gap: 24px;
    }
    
    .overview-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .dashboard-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .premium-btn {
        justify-content: center;
        width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .listings-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .controls-left {
        flex-direction: column;
        gap: 16px;
    }
    
    .filter-select,
    .search-box input {
        min-width: 100%;
    }
    
    .listings-grid.grid-view {
        grid-template-columns: 1fr;
    }
    
    .empty-state {
        padding: 40px 24px;
        margin: 20px auto;
    }
    
    .empty-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-premium-container {
        padding: 20px 12px;
    }
    
    .auth-glassmorphism-card {
        margin: 10px;
        padding: 24px 20px;
    }
    
    .auth-premium-title {
        font-size: 1.6rem;
    }
}

/* Social Login Buttons */
.social-login-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 140px;
    justify-content: center;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-btn.google-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border-color: rgba(37,99,235,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shine sweep, same language as .auth-premium-btn::before */
.social-btn.google-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12), transparent);
    transition: left 0.5s ease;
}

/* The invisible real Google button overlays .google-btn, so hover is
   detected on the wrapper (.google-btn-wrap) added by google-auth.js */
.social-btn.google-btn:hover,
.google-btn-wrap:hover .social-btn.google-btn {
    background: #fff;
    border-color: rgba(37,99,235,0.35);
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
}

.social-btn.google-btn:hover::before,
.google-btn-wrap:hover .social-btn.google-btn::before {
    left: 100%;
}

/* Premium Auth Pages Styles */
.auth-premium-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e3edfa 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.auth-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -10;
    isolation: isolate;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -5;
    isolation: isolate;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Auth Container */
.auth-premium-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
    position: relative;
    z-index: 50;
    isolation: isolate;
}

.auth-glassmorphism-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    z-index: 100;
    isolation: isolate;
}

/* Barrière invisible pour protéger l'icône */
.auth-glassmorphism-card::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -20px;
    right: -20px;
    height: 250px;
    background: transparent;
    z-index: 250;
    pointer-events: none;
    isolation: isolate;
}

.auth-glassmorphism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Section */
.auth-welcome-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 150;
    isolation: isolate;
}

.auth-icon-container {
    margin-bottom: 32px;
    position: relative;
    z-index: 200;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    isolation: isolate;
}

.auth-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    margin: 0 auto;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 200;
    isolation: isolate;
}

.auth-icon-wrapper:hover {
    transform: scale(1.05);
}

.auth-icon-wrapper.signup-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.auth-premium-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
    z-index: 150;
    isolation: isolate;
}

.auth-premium-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0 0 32px 0;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 150;
    isolation: isolate;
}

/* Form Styles */
.auth-premium-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 150;
    isolation: isolate;
}

.form-floating-group {
    position: relative;
    overflow: visible;
    margin-top: 8px;
    isolation: isolate;
}

.input-premium-group {
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.input-icon-wrapper {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    z-index: 1;
    transition: color 0.3s ease;
    pointer-events: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon-wrapper svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.input-premium {
    width: 100%;
    padding: 20px 20px 20px 65px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.05rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    color: #1f2937;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}

.input-premium:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.input-premium:focus + .label-floating,
.input-premium:not(:placeholder-shown) + .label-floating {
    top: -8px;
    left: 16px;
    font-size: 0.85rem;
    color: #2563eb;
    background: #fff;
    padding: 2px 8px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 4;
}

.input-premium-group:focus-within .input-icon-wrapper {
    color: #2563eb;
}

.label-floating {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    max-height: 20px;
    overflow: hidden;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.input-premium:focus ~ .input-highlight {
    transform: scaleX(1);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 4;
    pointer-events: auto;
}

.password-toggle:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.field-error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-error-message.show {
    opacity: 1;
}

/* Password Strength */
.password-strength {
    margin-top: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.strength-meter {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.strength-requirements {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.requirement.met {
    color: #10b981;
}

.req-icon {
    font-weight: bold;
    transition: all 0.3s ease;
}

.requirement.met .req-icon {
    color: #10b981;
}

.password-match-indicator {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.password-match-indicator.match {
    background: #10b981;
    opacity: 1;
}

.password-match-indicator.no-match {
    background: #ef4444;
    opacity: 1;
}

/* Auth Options */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.checkbox-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-premium input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-premium input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-premium input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.forgot-password-link,
.terms-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.forgot-password-link:hover,
.terms-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Auth Button */
.auth-premium-btn {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    margin-top: 12px;
}

.auth-premium-btn.signup-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.auth-premium-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;
}

.auth-premium-btn:hover::before {
    left: 100%;
}

.auth-premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.auth-premium-btn.signup-btn:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer Section */
.auth-premium-footer {
    margin-top: 32px;
    text-align: center;
}

.auth-switch-text {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0 0 24px 0;
}

.auth-switch-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.auth-switch-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.auth-divider {
    position: relative;
    margin: 24px 0;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.95);
    color: #9ca3af;
    padding: 0 16px;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

/* Success Animation */
.success-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Force a centered vertical stack so the badge / title / text can never
       fall into a horizontal row, whatever display value the JS toggles. */
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 28px;
    box-shadow: 0 30px 60px -12px rgba(16, 24, 40, 0.25), 0 0 0 1px rgba(16, 185, 129, 0.06);
    z-index: 10;
    width: min(360px, calc(100% - 32px));
    box-sizing: border-box;
    animation: successCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successCardIn {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.92) translateY(8px); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1) translateY(0); }
}

.success-checkmark {
    width: 84px;
    height: 84px;
    flex: 0 0 auto;
    margin: 0 auto 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ecfdf5, #d1fae5);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.18);
    animation: checkmarkBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s both;
}

.success-checkmark svg {
    width: 42px;
    height: 42px;
}

@keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.success-animation h3 {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.success-animation p {
    width: 100%;
    max-width: 260px;
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    line-height: 1.55;
}

/* Responsive Design */
@media (max-width: 600px) {
    .auth-premium-container {
        padding: 20px 12px;
        min-height: calc(100vh - 120px);
        z-index: 100;
    }
    
    .auth-glassmorphism-card {
        padding: 32px 24px;
        border-radius: 24px;
        margin: 0 12px;
        z-index: 150;
    }
    
    .auth-welcome-section {
        z-index: 200;
    }
    
    .auth-icon-container {
        z-index: 250;
    }
    
    .auth-icon-wrapper {
        z-index: 250;
    }
    
    .auth-premium-title {
        font-size: 2rem;
        z-index: 200;
        position: relative;
    }
    
    .auth-premium-subtitle {
        font-size: 1rem;
        z-index: 200;
        position: relative;
    }
    
    .input-premium {
        padding: 16px 16px 16px 55px;
        font-size: 1rem;
    }
    
    .input-icon-wrapper {
        left: 18px;
    }
    
    .label-floating {
        left: 55px;
        font-size: 1rem;
    }
    
    .input-premium:focus + .label-floating,
    .input-premium:not(:placeholder-shown) + .label-floating {
        font-size: 0.8rem;
    }
    
    .auth-premium-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .auth-options {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .floating-shape {
        opacity: 0.3;
        z-index: -20;
    }
}

@media (max-width: 768px) {
    .floating-shape {
        opacity: 0.4;
        z-index: -30;
    }
    
    .auth-welcome-section {
        z-index: 200;
        isolation: isolate;
    }
    
    .auth-premium-title,
    .auth-premium-subtitle {
        position: relative;
        z-index: 250;
        isolation: isolate;
    }
}

@media (max-width: 480px) {
    .auth-premium-title {
        font-size: 1.8rem;
        z-index: 300;
        position: relative;
        isolation: isolate;
    }
    
    .auth-premium-subtitle {
        z-index: 300;
        position: relative;
        isolation: isolate;
    }
    
    .floating-shape {
        display: none;
    }
    
    .auth-icon-wrapper {
        width: 64px;
        height: 64px;
        z-index: 350;
    }
    
    .auth-icon-container {
        z-index: 350;
    }
    
    .auth-welcome-section {
        z-index: 300;
    }
    
    .success-animation {
        margin: 0 12px;
        padding: 32px 24px;
    }
}

/* Enhanced Post Ad Page Styles */
.post-ad-wizard {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    animation: fadeIn 0.7s cubic-bezier(.4,2,.6,1);
}

.wizard-progress {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.08);
    border-bottom: 1px solid #f1f5f9;
}

.progress-header {
    text-align: center;
    margin-bottom: 32px;
}

.wizard-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.wizard-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.progress-bar-container {
    position: relative;
    margin: 32px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 25%;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 16px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f1f5f9;
    color: #9ca3af;
    border: 2px solid #e5e7eb;
    box-sizing: border-box;
}

.step-circle.active {
    background: #2563eb;
    color: white;
    border: none;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3), 0 0 0 2px rgba(37,99,235,0.2);
    box-sizing: border-box;
}

.step-circle.completed {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(16,185,129,0.38), 0 0 0 3px rgba(16,185,129,0.15);
    box-sizing: border-box;
    animation: stepPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-circle.completed svg {
    display: block;
    animation: stepCheckIn 0.4s ease 0.05s both;
}
@keyframes stepPop {
    0%   { transform: scale(0.82); }
    55%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}
@keyframes stepCheckIn {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    transition: color 0.3s ease;
}

.step-label.active {
    color: #2563eb;
}

.step-label.completed {
    color: #10b981;
}

.wizard-content {
    background: #fff;
    border-radius: 0 0 20px 20px;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(37,99,235,0.08);
    min-height: 500px;
}

.wizard-step {
    display: none;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-description {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.wizard-form-group {
    margin-bottom: 32px;
}

.wizard-label {
    display: block;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    font-size: 1rem;
}

.wizard-input,
.wizard-select,
.wizard-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
    color: #1f2937;
    font-weight: 500;
    font-family: 'Inter', Arial, sans-serif;
    box-sizing: border-box;
}

.wizard-input:focus,
.wizard-textarea:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    transform: translateY(-1px);
}

.wizard-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.wizard-select {
    cursor: pointer;
    appearance: none;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
    border: 2px solid #e1e7ef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-select:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #fefeff 0%, #f8fafc 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.wizard-select:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 8px 24px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.upload-zone {
    border: 3px dashed #d1d5db;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.upload-zone:hover {
    border-color: #2563eb;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.upload-zone.dragover {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
}

.upload-icon {
    margin-bottom: 16px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.upload-zone:hover .upload-icon {
    color: #2563eb;
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.upload-subtext {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.image-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f1f5f9;
    border: none;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 10px 24px -14px rgba(16, 24, 40, 0.35);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.image-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.12), 0 22px 44px -18px rgba(37, 99, 235, 0.5);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-preview:hover img {
    transform: scale(1.06);
}

/* Sortie fluide quand on supprime une vignette (pas de rechargement/flash) */
.image-preview.removing {
    opacity: 0;
    transform: scale(0.82);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Léger dégradé en haut pour que le bouton reste lisible sur toute image */
.image-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 46%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.30), rgba(2, 6, 23, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.image-preview:hover::before {
    opacity: 1;
}

/* Bouton supprimer : "verre dépoli" sombre, discret, devient rouge au survol */
.image-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.55);
    -webkit-backdrop-filter: blur(6px) saturate(140%);
    backdrop-filter: blur(6px) saturate(140%);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(2, 6, 23, 0.30);
    transition: background 0.18s ease, transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s ease;
}

.image-remove:hover {
    background: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.5);
}

.image-remove:active {
    transform: scale(0.94);
}

/* Badge "Cover" automatique sur la 1re photo de la grille */
.image-preview-grid .image-preview:first-child::after {
    content: 'Cover';
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 2;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #f1f5f9;
}

.wizard-navigation #prev-btn.hidden {
    visibility: hidden !important;
}

.wizard-navigation #next-btn {
    margin-left: auto;
}

.nav-btn {
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', Arial, sans-serif;
}

.nav-btn.primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.nav-btn.primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}

.nav-btn.secondary {
    background: #f9fafb;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.nav-btn.secondary:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    margin-bottom: 24px;
    color: #10b981;
}

.success-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.success-message {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .post-ad-wizard {
        margin: 20px auto;
        max-width: 95vw;
    }
    
    .wizard-progress,
    .wizard-content {
        padding: 24px;
    }
    
    .wizard-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .progress-steps {
        gap: 40px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .progress-step {
        min-width: 80px;
    }
}

/* Enhanced Form Elements Styles */

/* Checkboxes modernes */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 8px;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
    background: #2563eb;
    border-color: #2563eb;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:hover {
    border-color: #2563eb;
    transform: scale(1.05);
}

input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Radio buttons modernes */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 8px;
    vertical-align: middle;
}

input[type="radio"]:checked {
    border-color: #2563eb;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
}

input[type="radio"]:hover {
    border-color: #2563eb;
    transform: scale(1.05);
}

input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Select modernes pour tous les formulaires */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

select:hover {
    border-color: #2563eb;
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #fff;
}

select option {
    padding: 12px 16px;
    background: #fff;
    color: #1f2937;
    font-weight: 500;
}

select option:checked {
    background: #2563eb;
    color: white;
}

/* Inputs de base améliorés */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    color: #1f2937;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="url"]:hover,
textarea:hover {
    border-color: #9ca3af;
}

/* Labels améliorés */
label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Groupe de formulaire avec label et input */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
}

/* Groupes de checkboxes et radio */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
}

.checkbox-item label,
.radio-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

/* Boutons améliorés */
button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* États disabled */
input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f3f4f6;
}

input:disabled:hover,
select:disabled:hover,
textarea:disabled:hover {
    border-color: #e5e7eb;
    transform: none;
    box-shadow: none;
}

/* Correction spécifique pour les listes déroulantes du wizard */
.wizard-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    position: relative !important;
    outline: none !important;
    min-height: 56px !important;
}

.wizard-select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select:active {
    transform: translateY(-1px) !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.2),
        0 8px 20px rgba(37, 99, 235, 0.15) !important;
}

/* Style pour les options (support navigateur limité mais améliore l'expérience) */
.wizard-select option {
    padding: 16px 24px !important;
    background: #ffffff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
    font-size: 1.05rem !important;
    font-family: 'Inter', sans-serif !important;
}

.wizard-select option:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    color: #1e40af !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.wizard-select:not(:focus):hover {
    animation: selectPulse 2s ease-in-out infinite;
}

/* Correction pour tous les select dans le wizard avec le même style */
.wizard-content select,
.post-ad-wizard select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100% !important;
    padding: 18px 55px 18px 24px !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(59,130,246,0.05) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    min-height: 56px !important;
}

.wizard-content select:hover,
.post-ad-wizard select:hover {
    border-color: #60a5fa !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.wizard-content select:focus,
.post-ad-wizard select:focus {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    background-image: 
        linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.1) 100%),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: 0 0, right 20px center !important;
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        0 12px 32px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
}

.wizard-select option {
    padding: 12px 16px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    border: none !important;
}

.wizard-select option:hover {
    background: #f3f4f6 !important;
}

.wizard-select option:checked {
    background: #2563eb !important;
    color: white !important;
}

.wizard-select option:checked,
.wizard-select option:selected {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Animation quand une option est sélectionnée */
.wizard-select[data-selected="true"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #60a5fa !important;
    color: #1e40af !important;
}

/* Effet pulse subtil */
@keyframes selectPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    50% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

/* Simple Dropdown Styles - SIMPLIFIED */
.simple-dropdown {
    position: relative;
    width: 100%;
    min-width: 200px;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: 'Inter', Arial, sans-serif;
}

.dropdown-selected:hover {
    border-color: #cbd5e1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.simple-dropdown.open .dropdown-selected {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 8px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.selected-text {
    flex: 1;
    text-align: left;
    font-weight: 600;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.simple-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
    color: #2563eb;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #2563eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
    z-index: 999999;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 4px;
    display: none;
}

/* Scrollbar personnalisé pour les dropdowns */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.dropdown-option {
    padding: 14px 20px;
    font-size: 1rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
    font-family: 'Inter', Arial, sans-serif;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #2563eb;
    padding-left: 24px;
    font-weight: 600;
}

.dropdown-option:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.dropdown-option:last-child {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

/* Fix pour l'affichage des dropdowns */
.simple-dropdown.open {
    z-index: 999998;
    position: relative;
}

.simple-dropdown {
    overflow: visible !important;
}

.filter-group {
    overflow: visible !important;
}

.controls-left {
    overflow: visible !important;
}

.simple-dropdown.open .dropdown-options {
    z-index: 999999;
    display: block;
}

/* Masquer la navigation quand un dropdown est ouvert */
body:has(.simple-dropdown.open) .wizard-navigation #prev-btn {
    visibility: hidden;
}

/* S'assurer que les conteneurs parents n'interfèrent pas */
.wizard-form-group,
.filter-group,
.form-group {
    overflow: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .simple-dropdown {
        min-width: 150px;
    }
    
    .dropdown-selected {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .dropdown-option {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .dropdown-arrow {
        width: 14px;
        height: 14px;
    }
}

/* Enhanced Wizard Input Styles */
.wizard-input {
    width: 100% !important;
    padding: 18px 24px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 16px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    outline: none !important;
}

.wizard-input:hover {
    border-color: #cbd5e1 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px) !important;
}

.wizard-input:focus {
    border-color: #2563eb !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 8px 32px rgba(37, 99, 235, 0.15) !important;
    transform: translateY(-2px) !important;
}

.wizard-textarea {
    width: 100% !important;
    padding: 18px 24px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 16px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    outline: none !important;
    resize: vertical !important;
    min-height: 120px !important;
}

.wizard-textarea:hover {
    border-color: #cbd5e1 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px) !important;
}

.wizard-textarea:focus {
    border-color: #2563eb !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 8px 32px rgba(37, 99, 235, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced Button Styles */
.nav-btn.primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 16px 32px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25) !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.nav-btn.primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(37,99,235,0.35) !important;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
}

.nav-btn.secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    color: #374151 !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 14px 30px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.nav-btn.secondary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: #cbd5e1 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Enhanced Form Labels */
.wizard-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Enhanced Upload Zone */
.upload-zone {
    border: 3px dashed #cbd5e1 !important;
    border-radius: 20px !important;
    padding: 48px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.upload-zone:hover {
    border-color: #2563eb !important;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15) !important;
}

.upload-text {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin: 16px 0 8px 0 !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.upload-subtext {
    color: #6b7280 !important;
    font-size: 0.95rem !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.upload-icon {
    color: #2563eb !important;
    margin-bottom: 16px !important;
}

/* Enhanced Step Titles */
.step-title {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.step-description {
    color: #6b7280 !important;
    font-size: 1.1rem !important;
    margin-bottom: 32px !important;
    font-family: 'Inter', Arial, sans-serif !important;
    line-height: 1.6 !important;
}

/* Enhanced Hero Section */
.hero-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #1f2937 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    font-family: 'Inter', Arial, sans-serif !important;
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin-bottom: 48px !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 500 !important;
}

/* Enhanced Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.8) 100%) !important;
    border: 1px solid rgba(37,99,235,0.1) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08) !important;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(37,99,235,0.15) !important;
    border-color: rgba(37,99,235,0.2) !important;
}

.feature-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 16px 0 12px 0 !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.feature-description {
    color: #6b7280 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 500 !important;
}

/* Simplified Quick Examples */
.quick-examples {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.quick-btn {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.quick-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

@media (max-width: 600px) {
    .quick-examples {
        gap: 8px;
    }
    
    .quick-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Enhanced Search Bar */
.search-bar {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
}

.search-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(37,99,235,0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.search-container:focus-within {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 12px 40px rgba(37, 99, 235, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced Progress Bar */
.progress-bar {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.progress-fill {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3) !important;
}

.step-circle.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3) !important;
}

/* Enhanced Wizard Title */
.wizard-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #1f2937 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.wizard-subtitle {
    font-size: 1.2rem !important;
    color: #6b7280 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 500 !important;
}

/* Enhanced Form Groups */
.wizard-form-group {
    margin-bottom: 24px !important;
}

.form-grid {
    gap: 24px !important;
}

/* Enhanced Success Modal */
.success-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #1f2937 !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.success-message {
    font-size: 1.1rem !important;
    color: #6b7280 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    line-height: 1.6 !important;
}

/* ===== SIMPLE DATE INPUT STYLES ===== */
.wizard-form-group input[type="date"] {
    padding: 14px 20px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    font-size: 1rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    color: #374151 !important;
    min-height: 52px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    /* Force English locale for date picker */
    -webkit-locale: "en-US" !important;
    locale: "en-US" !important;
}

.wizard-form-group input[type="date"]:hover {
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
}

.wizard-form-group input[type="date"]:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* ===== TOGGLE SWITCH STYLES ===== */
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.toggle-slider {
    width: 56px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-input:checked + .toggle-label .toggle-slider {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    box-shadow: inset 0 2px 4px rgba(37, 99, 235, 0.2), 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.toggle-input:checked + .toggle-label .toggle-slider:before {
    transform: translateX(28px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.toggle-text {
    margin-left: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.toggle-on, .toggle-off {
    transition: all 0.3s ease;
}

.toggle-input:checked + .toggle-label .toggle-off {
    opacity: 0.4;
}

.toggle-input:not(:checked) + .toggle-label .toggle-on {
    opacity: 0.4;
}

.toggle-input:checked + .toggle-label .toggle-on {
    color: #2563eb;
    font-weight: 700;
}

.toggle-input:not(:checked) + .toggle-label .toggle-off {
    color: #6b7280;
    font-weight: 700;
}

/* Hover effects */
.toggle-label:hover .toggle-slider {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.toggle-input:checked + .toggle-label:hover .toggle-slider {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: inset 0 2px 4px rgba(37, 99, 235, 0.3), 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* Focus styles */
.toggle-input:focus + .toggle-label .toggle-slider {
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .toggle-slider {
        width: 48px;
        height: 24px;
    }
    
    .toggle-slider:before {
        width: 16px;
        height: 16px;
    }
    
    .toggle-input:checked + .toggle-label .toggle-slider:before {
        transform: translateX(24px);
    }
    
    .toggle-text {
        font-size: 0.9rem;
        margin-left: 8px;
    }
}

/* ===== CHECKBOX GRID STYLES ===== */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    font-family: 'Inter', sans-serif;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.checkbox-item:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    flex-shrink: 0;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 10px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    transform-origin: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    transform: translate(-50%, -50%) scale(1) rotate(45deg);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #2563eb;
    color: #2563eb;
    font-weight: 600;
}

/* Focus styles for accessibility */
.checkbox-item:focus-within {
    outline: 2px solid rgba(37, 99, 235, 0.3);
    outline-offset: 2px;
}

.checkbox-item:focus-within .checkmark {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .checkbox-item {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .checkmark::after {
        width: 5px;
        height: 8px;
    }
}

/* Category titles with same gradient as Create Your Listing */
.category-section .category-header .category-info .category-title,
.category-title {
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Modern category count badge with white background */
.category-section .category-header .category-info .category-count,
.category-info .category-count,
span.category-count {
    background: #ffffff !important;
    color: #2563eb !important;
    padding: 8px 14px !important;
    border-radius: 16px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.3px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.category-section .category-header .category-info .category-count:hover,
.category-info .category-count:hover,
span.category-count:hover {
    background: #f8fafc !important;
    color: #2563eb !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* Modern View all button without arrow */
.category-section .category-header .view-more-link,
.category-header .view-more-link,
a.view-more-link {
    background: #ffffff !important;
    color: #2563eb !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 8px 16px !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', Arial, sans-serif !important;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    letter-spacing: 0.3px !important;
    min-height: 32px !important;
}

/* Replace text and remove arrow */
.category-section .category-header .view-more-link,
.category-header .view-more-link,
a.view-more-link {
    text-indent: -9999px !important;
}

.category-section .category-header .view-more-link::before,
.category-header .view-more-link::before,
a.view-more-link::before {
    content: "View all" !important;
    text-indent: 0 !important;
    display: block !important;
}


/* Price with GRADIENT like Create Your Listing - ULTRA FORCE */
.featured-listings .listing-card .listing-content .listing-price,
.listing-card .listing-content p.listing-price,
.listing-content .listing-price,
p.listing-price {
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    font-weight: 700 !important;
    display: inline-block !important;
}

/* ===== BOUTONS MESSAGE DESIGN MODERNE ===== */
button.contact-btn,
.contact-btn,
.listing-actions .contact-btn,
.listing-card .listing-actions .contact-btn,
.listing-content .listing-actions .contact-btn,
.listings-grid .listing-card .listing-content .listing-actions .contact-btn,
.category-section .listings-grid .listing-card .listing-content .listing-actions .contact-btn,
.featured-listings .category-section .listings-grid .listing-card .listing-content .listing-actions .contact-btn,
.listing-actions button,
button[class="contact-btn"] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
    letter-spacing: 0.3px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
}

button.contact-btn:hover,
.contact-btn:hover,
.listing-actions .contact-btn:hover,
.listing-card .listing-actions .contact-btn:hover,
.listing-content .listing-actions .contact-btn:hover,
.listings-grid .listing-card .listing-content .listing-actions .contact-btn:hover,
.category-section .listings-grid .listing-card .listing-content .listing-actions .contact-btn:hover,
.featured-listings .category-section .listings-grid .listing-card .listing-content .listing-actions .contact-btn:hover,
.listing-actions button:hover,
button[class="contact-btn"]:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
    color: #ffffff !important;
}

/* FORCE JAVASCRIPT OVERRIDE */

/* Hide the orange "For You" badges */
.personalized-badge {
    display: none !important;
}

/* Force show default categories */
#default-categories {
    display: block !important;
}

#dynamic-categories {
    display: none !important;
}



.category-section .category-header .view-more-link:hover,
.category-header .view-more-link:hover,
a.view-more-link:hover {
    background: #2563eb !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25) !important;
    border-color: #2563eb !important;
}

/* Liens légaux dans le footer (Contact / Terms / Privacy / Cookies) */
.site-footer .footer-links { margin-bottom: 8px; }
.site-footer .footer-links a { color: #64748b; text-decoration: none; font-weight: 600; margin: 0 3px; }
.site-footer .footer-links a:hover { color: #2563eb; }
