/* ============================================
   TURTO CATALOG PREMIUM - Estilos Específicos
   ============================================ */

/* Badge Premium - Verde/Success */
.badge-premium {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: none;
}

.badge-premium .status-dot.premium {
    background-color: #d1fae5;
    border: 2px solid #ffffff;
    animation: pulse-premium 2s ease-in-out infinite;
}

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

/* Card Footer Premium - Sin Precio */
.card-footer-premium {
    padding: 16px 20px;
    margin-top: auto;
}

.card-footer-premium .price-row {
    display: none; /* Ocultar precio completamente */
}

/* Actions Row Premium - Layout invertido */
.actions-row-premium {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

/* Botón Grande: Acceder al Curso */
.btn-acceder-premium {
    flex: 1;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-acceder-premium:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

/* Botón Pequeño: Info */
.btn-info-premium {
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.btn-info-premium svg {
    color: #6b7280;
    transition: all 0.3s ease;
}

.btn-info-premium:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-info-premium:hover svg {
    color: #ffffff;
}

/* Wrapper Premium - Identificador adicional */
.turto-premium-wrapper .turto-catalog-header h2 {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Card Hover Effect */
.turto-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .actions-row-premium {
        flex-direction: row;
    }

    .btn-acceder-premium {
        font-size: 13px;
        padding: 10px 16px;
    }

    .btn-info-premium {
        width: 40px;
        height: 40px;
    }

    .btn-info-premium svg {
        width: 18px;
        height: 18px;
    }
}

/* Personalización adicional para vista premium */
.turto-premium-wrapper .turto-course-count-premium {
    color: #3b82f6;
}

/* Badge container positioning */
.turto-premium-card .badge-status-container {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

/* Ensure premium styles override defaults */
.turto-premium-card .badge-status.badge-premium {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}
