/* SDL Login Selector – modal de selección de perfil al hacer clic en el icono de cuenta */
.sdl-ls-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.52);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.sdl-ls-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(61,26,43,.20);
    animation: sdlLsFadeIn .18s ease;
}

@keyframes sdlLsFadeIn {
    from { opacity: 0; transform: translateY(12px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.sdl-ls-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #b0a09a;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .12s, background .12s;
}
.sdl-ls-close:hover { color: #3d1a2b; background: #fdf0f7; }

.sdl-ls-header {
    text-align: center;
    margin-bottom: 26px;
}
.sdl-ls-header img {
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto 14px;
}
.sdl-ls-header h2 {
    font-size: 19px;
    font-weight: 700;
    color: #3d1a2b;
    margin: 0;
    line-height: 1.3;
}

.sdl-ls-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.sdl-ls-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1.5px solid #e8ddd5;
    border-radius: 14px;
    text-decoration: none !important;
    transition: border-color .15s, background .15s, box-shadow .15s;
    cursor: pointer;
}
.sdl-ls-card:hover {
    border-color: #8B4A6B;
    background: #fdf0f7;
    box-shadow: 0 4px 16px rgba(139,74,107,.10);
}

.sdl-ls-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.sdl-ls-card--asesora   .sdl-ls-card__icon { background: #f3e5f5; }
.sdl-ls-card--vendedora .sdl-ls-card__icon { background: #e8eaf6; }
.sdl-ls-card--cliente   .sdl-ls-card__icon { background: #fce4ec; }

.sdl-ls-card__body { flex: 1; min-width: 0; }
.sdl-ls-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #3d1a2b;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sdl-ls-card__rate {
    display: inline-block;
    background: #8B4A6B;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    letter-spacing: .02em;
}
.sdl-ls-card__desc {
    font-size: 12.5px;
    color: #8a7a72;
    line-height: 1.4;
}

.sdl-ls-card__arrow {
    color: #C9956A;
    font-size: 18px;
    flex-shrink: 0;
    font-weight: 700;
}

.sdl-ls-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #f0e8e3;
}
.sdl-ls-footer a {
    font-size: 13.5px;
    color: #8B4A6B;
    text-decoration: none;
    font-weight: 600;
}
.sdl-ls-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .sdl-ls-modal  { padding: 28px 20px; }
    .sdl-ls-card   { padding: 14px 14px; gap: 12px; }
    .sdl-ls-card__icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
    .sdl-ls-header h2  { font-size: 17px; }
}
