/* Estilos del reproductor de audio - Frontend */

.sap-my-audios,
.sap-shortcode-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.sap-expiration-notice {
    background: #fff9e6;
    border-left: 4px solid #ffb900;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 3px;
    font-size: 14px;
}

.sap-product-section {
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sap-product-title {
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 20px;
    color: #333;
}

.sap-audio-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sap-audio-item {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
}

.sap-audio-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sap-audio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sap-audio-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    flex: 1;
}

.sap-audio-duration {
    background: #e8e8e8;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-left: 10px;
}

.sap-audio-player {
    width: 100%;
    max-width: 100%;
    outline: none;
    border-radius: 4px;
}

/* Personalización del reproductor de audio */
.sap-audio-player::-webkit-media-controls-panel {
    background-color: #fff;
}

.sap-audio-unavailable {
    opacity: 0.6;
}

.sap-audio-error {
    color: #d63638;
    font-size: 14px;
    margin: 10px 0 0 0;
}

/* Mensajes de estado */
.sap-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 15px;
}

.sap-message p {
    margin: 0;
}

.sap-error {
    background: #ffebee;
    border-left: 4px solid #d63638;
    color: #333;
}

.sap-warning {
    background: #fff9e6;
    border-left: 4px solid #ffb900;
    color: #333;
}

.sap-info {
    background: #e8f4f8;
    border-left: 4px solid #00a0d2;
    color: #333;
}

.sap-message a {
    color: #0073aa;
    text-decoration: underline;
    font-weight: 600;
}

.sap-message a:hover {
    color: #005177;
}

/* WooCommerce My Account integration */
.woocommerce-MyAccount-content .sap-my-audios {
    max-width: 100%;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sap-audio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sap-audio-duration {
        margin-left: 0;
    }
    
    .sap-product-section {
        padding: 15px;
    }
    
    .sap-product-title {
        font-size: 18px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sap-audio-item {
    animation: fadeIn 0.3s ease;
}

/* Estados de carga */
.sap-audio-player[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mejorar controles en móvil */
@media screen and (max-width: 480px) {
    .sap-audio-player {
        height: 40px;
    }
}
