/* Settem Pre-escucha v1.1 */

.settem-player {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #12121e;
    border: 1px solid #1e1e32;
    border-radius: 10px;
    padding: 14px 18px;
    width: 100%;
    box-sizing: border-box;
    user-select: none;
}

/* Botón play/pause */
.settem-player__play-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

/* Icono play (triángulo) */
.settem-player__play-icon {
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #e8006a;
    margin-left: 3px;
}

/* Icono pause (dos barras) */
.settem-player__pause {
    display: none;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.settem-player__pause span {
    display: block;
    width: 3px;
    height: 14px;
    background-color: #e8006a;
    border-radius: 2px;
}

/* Cuando está reproduciendo: mostrar pause, ocultar play */
.settem-player--playing .settem-player__play-icon {
    display: none;
}
.settem-player--playing .settem-player__pause {
    display: flex;
}

/* Texto */
.settem-player__label {
    font-size: 13px;
    color: #c0c0d0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Barra de progreso */
.settem-player__bar {
    flex: 1;
    height: 4px;
    background-color: #2a2a3e;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.settem-player__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #e8006a, #ff4d8f);
    border-radius: 2px;
    position: relative;
    pointer-events: none;
}

.settem-player__bar-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ff4d8f;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(232, 0, 106, 0.7);
}

/* Tiempo */
.settem-player__time {
    font-size: 12px;
    color: #444455;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 30px;
    text-align: right;
}

/* Audio oculto */
.settem-player__audio {
    display: none !important;
}

/* Estado sin audio */
.settem-player--empty .settem-player__play-btn {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.settem-player--empty .settem-player__bar {
    opacity: 0.3;
    pointer-events: none;
}
