/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f7;
    padding-top: 130px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.step-content { flex: 1; max-width: 720px; margin: 0 auto; width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text { font-size: 15px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: #1a1a1a; }
.logo-m { color: rgba(110,70,230,0.9); text-shadow: 0 0 8px rgba(100,60,220,0.55), 0 0 20px rgba(100,60,220,0.25); font-weight: 500; }
.logo-rest { color: #1a1a1a; font-weight: 400; }

.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a { text-decoration: none; color: #888; font-size: 13px; transition: color 0.2s; }
.nav-links a:hover { color: #1a1a1a; }

/* ============================================
   TIMELINE
   ============================================ */
.progress-container {
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    z-index: 999;
    padding: 1.25rem 2rem;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.tl-line-bg {
    position: absolute;
    top: 14px; left: 28px; right: 28px;
    height: 1px; background: #ececec; z-index: 0;
}

.tl-line-fill {
    position: absolute;
    top: 14px; left: 28px;
    height: 1px;
    background: rgba(110,70,230,0.5);
    box-shadow: 0 0 6px 2px rgba(100,60,220,0.45), 0 0 14px 4px rgba(100,60,220,0.20);
    z-index: 1;
    width: calc(100% - 56px);
}

.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 2; }

.step-number {
    width: 28px; height: 28px;
    border-radius: 50%; background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; color: #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.progress-step.completed .step-number { color: #1a1a1a; box-shadow: 0 2px 10px rgba(90,60,220,0.18), 0 0 6px rgba(90,60,220,0.12); }
.progress-step.active .step-number { color: #1a1a1a; box-shadow: 0 4px 16px rgba(90,60,220,0.45), 0 0 12px rgba(90,60,220,0.30); }

.step-label { font-size: 11px; color: #ccc; white-space: nowrap; }
.progress-step.completed .step-label { color: #888; }
.progress-step.active .step-label { color: #1a1a1a; font-weight: 500; }

/* ============================================
   CONTENU
   ============================================ */
.step-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-header { text-align: center; }
.step-header h1 { font-size: 20px; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.step-header p { font-size: 13px; color: #aaa; }

/* ============================================
   RECAP
   ============================================ */
.recap-section {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.section-number {
    width: 28px; height: 28px;
    border-radius: 50%; background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; color: #1a1a1a; flex-shrink: 0;
}

.section-header h3 { font-size: 15px; font-weight: 500; color: #1a1a1a; margin-bottom: 2px; }
.section-subtitle { font-size: 12px; color: #aaa; }

.recap-grid { display: flex; flex-direction: column; gap: 8px; }

.recap-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: #f5f5f7;
    border-radius: 12px;
}

.recap-item-label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.recap-item-value { font-size: 13px; font-weight: 500; color: #1a1a1a; }

.recap-palette-row { display: flex; gap: 5px; margin-top: 4px; }
.recap-color-swatch { width: 48px; height: 22px; border-radius: 8px; border: 1.5px solid rgba(0,0,0,0.10); display: inline-block; box-shadow: 0 1px 4px rgba(0,0,0,0.12); vertical-align: middle; }

/* BOUTON MODIFIER — blanc, ombre noire légère, violette si modification */
.recap-edit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: #555;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s, color 0.2s;
}
.recap-edit-btn:hover {
    box-shadow: 0 4px 14px rgba(90,60,220,0.28);
    color: #1a1a1a;
}

/* ============================================
   BOUTON GÉNÉRER — identique Continuer
   + stretch au hover + ombre violette au clic
   ============================================ */
.generate-section { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.generate-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
    transition: box-shadow 0.2s, opacity 0.15s, transform 0.2s;
}

.generate-btn:hover:not(.loading) {
    opacity: 0.85;
    box-shadow: 0 6px 20px rgba(90,60,220,0.35);
    transform: scaleX(1.025);
}

.generate-btn.loading {
    box-shadow: 0 4px 20px rgba(90,60,220,0.35);
    opacity: 0.9;
    cursor: not-allowed;
    transform: none;
}

/* Masquer le bouton déclinaison pendant la génération */
.generate-btn.loading ~ #declineBtn,
.generate-btn.loading ~ p#declineHint {
    display: none !important;
}

.decline-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    background: #f5f5f7;
    color: #555;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(90,60,220,0.10);
    transition: box-shadow 0.2s, color 0.2s;
}

.decline-btn:hover:not(:disabled) {
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
    color: #1a1a1a;
}

.decline-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.generate-hint { font-size: 12px; color: #bbb; }

/* ============================================
   LOADER
   ============================================ */
.results-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.results-section #resultContent {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.loader-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 1rem 0;
}

.loader-text { font-size: 13px; color: #555; text-align: center; min-height: 20px; }

.loader-bar-wrap {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: rgba(90,60,220,0.8);
    border-radius: 2px;
    transition: width 1s ease;
    width: 0%;
}

.loader-percent { font-size: 12px; color: #bbb; }

/* ============================================
   RÉSULTATS
   ============================================ */
.result-header { text-align: center; margin-bottom: 1.5rem; }

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(90,60,220,0.07);
    color: rgba(90,60,220,0.8);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.result-header h2 { font-size: 18px; font-weight: 500; color: #1a1a1a; margin-bottom: 6px; }
.result-header p { font-size: 12px; color: #aaa; }

.preview-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: white;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.preview-card.palette-full-card { margin-bottom: 12px; }

.preview-card-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 1px solid #f5f5f5;
}

/* Logo statique — pleine largeur */
.static-card-solo { }

.static-window-solo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
}

/* Logo animé — pleine largeur */
.animated-card-solo { }

.animated-window-solo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
}

.preview-window {
    aspect-ratio: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Logo pleine largeur, centré */
.logo-display { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.logo-display-256 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.logo-display-256 svg,
.logo-display-256 img,
.logo-display-256 > div {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tag Aperçu */
.apercu-tag {
    display: inline-block;
    background: rgba(90,60,220,0.08);
    color: rgba(90,60,220,0.7);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Filigrane diagonal */
.watermark-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    pointer-events: none;
    overflow: hidden;
}
.watermark-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(0,0,0,0.09);
    transform: rotate(-30deg);
    white-space: nowrap;
    width: 150%;
    text-align: center;
}




.logo-name-legend { padding: 6px 12px; font-size: 12px; font-weight: 500; color: #1a1a1a; text-align: center; }
.preview-card-footer { padding: 8px 12px; font-size: 10px; color: #bbb; }

/* Footer carte animée avec bouton */
.animated-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 8px;
}

/* Bouton inverser l'animation */
.reverse-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1a;
    color: white;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.reverse-btn:hover { opacity: 0.85; }
.reverse-btn.active {
    background: white;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(90,60,220,0.10);
    border: 1px solid #e8e8e8;
}

.palette-preview-grid { display: grid; }

.palette-color-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.palette-icon-wrapper { width: 50%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.palette-company-name { font-size: 10px; font-weight: 500; opacity: 0.8; }

/* ============================================
   CTA
   ============================================ */
.cta-section { margin-top: 12px; }

.cta-box {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-badge {
    display: inline-block;
    background: rgba(110,70,230,0.25);
    color: rgba(180,150,255,0.9);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.cta-box h3 { font-size: 17px; font-weight: 500; color: white; }
.cta-box p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 320px; }

.cta-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    color: #1a1a1a;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: opacity 0.15s;
}

.cta-buy-btn:hover { opacity: 0.88; }
.cta-reassurance { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ============================================
   BOUTON RETOUR — blanc, ombre légère
   ============================================ */
.action-buttons { padding-bottom: 1rem; }

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: white;
    color: #555;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(90,60,220,0.10);
    transition: box-shadow 0.2s, color 0.2s;
}

.back-button:hover {
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
    color: #1a1a1a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0f0f0f; margin-top: 1rem; }

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 2.5rem 0; }

.footer-top { display: flex; gap: 2rem; padding-bottom: 2.5rem; flex-wrap: wrap; }
.footer-brand { flex: 1.4; min-width: 180px; display: flex; flex-direction: column; gap: 14px; }
.footer-logo { font-size: 15px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-logo-m { color: rgba(110,70,230,0.9); text-shadow: 0 0 8px rgba(100,60,220,0.55), 0 0 20px rgba(100,60,220,0.25); font-weight: 400; }
.footer-logo-rest { color: rgba(255,255,255,0.85); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 220px; }
.footer-col { flex: 1; min-width: 120px; display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 10px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.footer-link { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; line-height: 1; }
.footer-link:hover { color: rgba(255,255,255,0.75); }
.footer-stripe { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-stripe strong { color: rgba(255,255,255,0.6); font-weight: 500; }

.footer-divider-wrap { position: relative; height: 1px; margin: 0 -2.5rem; }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.06); }
.footer-divider-glow { position: absolute; top: 0; left: 10%;
    width: 66%; height: 1px; background: rgba(100,60,220,0.4); box-shadow: 0 0 6px 2px rgba(100,60,220,0.35), 0 0 16px 4px rgba(100,60,220,0.15); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-link { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.15s; }
.footer-bottom-link:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    body { padding-top: 120px; }
    .main-nav { padding: 0 1.25rem; }
    .progress-container { padding: 1rem 1.25rem; }
    .step-content { padding: 1rem; }
    .preview-row-top { grid-template-columns: 1fr; }
    .footer-inner { padding: 2rem 1.25rem 0; }
    .footer-top { gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-divider-wrap { margin: 0 -1.25rem; }
}

@media (max-width: 480px) {
    .step-label { font-size: 9px; }
}

/* ============================================
   LOADER VAGUE
   ============================================ */
.wave-loader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 2rem 0;
    width: 100%;
}

.wave-loader-msg {
    font-size: 15px;
    color: rgba(0,0,0,0.35);
    text-align: center;
    min-height: 22px;
    line-height: 1.5;
}
/* ── BANDE DÉCLINAISONS COULEUR ── */
.color-decli-strip {
    display: flex;
    gap: 8px;
    padding: 12px 12px 8px;
    height: 60px;
    align-items: center;
}

.color-decli-strip button {
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    outline: none !important;
}

.color-decli-strip button:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25) !important;
}

.color-decli-strip button.active-decli {
    transform: scale(1.12) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28) !important;
}

/* ── HINT + BOUTON MODIFIER PALETTE ── */
.color-decli-hint {
    font-size: 12px;
    color: #b0b0b0;
    padding: 0 12px 8px;
    line-height: 1.5;
}

.color-decli-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 4px 12px 8px;
    padding: 9px 16px;
    background: #1a1a1a;
    color: white;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
    transition: box-shadow 0.2s, opacity 0.2s;
}

.color-decli-btn:hover {
    box-shadow: 0 6px 20px rgba(90,60,220,0.35);
    opacity: 0.85;
}

.animate-kling-btn {
    width: calc(100% - 24px);
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.animate-kling-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Encart animation Kling */
.kling-anim-card {
    margin-top: 0;
}

.kling-anim-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.kling-anim-desc {
    font-size: 13px;
    color: #888;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.kling-anim-btn {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
}

.kling-anim-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ── ENCART ANIMATION CONFIG ── */
.anim-config {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}

.anim-config-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.anim-config-label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.anim-config-hint {
    font-size: 11px;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
}

/* Modes — style type-item étape 2 */
.anim-mode-btns {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.anim-mode-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 12px;
    cursor: pointer;
    background: white;
    box-shadow: 0 2px 8px rgba(90,60,220,0.09);
    border: none;
    font-family: inherit;
    transition: box-shadow 0.15s, padding 0.2s;
    width: 100%;
    text-align: left;
}

.anim-mode-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}

.anim-mode-name {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
}

.anim-mode-check {
    font-size: 11px;
    color: rgba(90,60,220,0.7);
    opacity: 0;
    transition: opacity 0.15s;
    margin-left: auto;
    flex-shrink: 0;
}

.anim-mode-btn.active {
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
    padding: 11px 10px;
    background: #1a1a1a;
}

.anim-mode-btn.active .anim-mode-name { color: white; }
.anim-mode-btn.active .anim-mode-icon { background: rgba(255,255,255,0.12); }
.anim-mode-btn.active .anim-mode-icon svg { stroke: white; }
.anim-mode-btn.active .anim-mode-check { opacity: 1; color: rgba(255,255,255,0.7); }

/* Select style étape 2 */
.anim-select-wrap {
    position: relative;
}

.anim-select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(90,60,220,0.09);
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    transition: box-shadow 0.15s;
}

.anim-select:focus {
    outline: none;
    box-shadow: 0 4px 14px rgba(90,60,220,0.22);
}

.anim-select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
}