/* ============================================
   NCPRO SUITE - DISEÑO MINIMALISTA
   Basado en todoriocuarto.com
   Sin borders innecesarios, sin sombras excesivas
   ============================================ */

/* Variables CSS - IMPORTANTE:
   --ncpro-primary, --ncpro-primary-hover, --ncpro-primary-light y --ncpro-btn-text
   se inyectan dinámicamente desde LocalGraph Config (inject_css_vars).
   NO definirlas aquí para evitar sobrescribir los valores configurados. */
:root {
    /* Variables estáticas (no editables desde admin) */
    --ncpro-secondary: #64748b;
    --ncpro-secondary-light: #f1f5f9;
    
    --ncpro-success: #10b981;
    --ncpro-success-light: #d1fae5;
    
    --ncpro-warning: #f59e0b;
    --ncpro-warning-light: #fef3c7;
    
    --ncpro-danger: #ef4444;
    --ncpro-danger-light: #fee2e2;
    
    --ncpro-text: #0f172a;
    --ncpro-text-light: #64748b;
    --ncpro-bg: #ffffff;
    --ncpro-bg-alt: #f8fafc;
    
    --ncpro-radius: 3px;
    --ncpro-spacing: 16px;
    
    /* Colores de destacados - diseño sutil y natural */
    --ncpro-featured-bg: #f8f9fa;
    --ncpro-featured-border: #e9ecef;
    --ncpro-featured-badge-bg: #e8f4fd;
    --ncpro-featured-badge-text: #1976d2;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.ncpro-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--ncpro-text-light);
}
.ncpro-breadcrumb a {
    color: #181818;
    text-decoration: none;
}
.ncpro-breadcrumb a:hover {
    text-decoration: underline;
}
.ncpro-breadcrumb-sep {
    color: #cbd5e1;
    font-weight: 300;
}
.ncpro-breadcrumb-business {
    color: var(--ncpro-text);
    font-weight: 500;
}
.ncpro-breadcrumb-current {
    color: var(--ncpro-text-light);
}

/* ============================================
   CONTENEDOR PRINCIPAL
   ============================================ */
.ncpro-wrap {
    max-width: 100%;
    margin: 32px auto;
    padding: 0 20px;
    background: var(--ncpro-bg);
}

.ncpro-wrap h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ncpro-text);
    margin: 0 0 24px;
}

.ncpro-wrap h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ncpro-text);
    margin: 24px 0 16px;
}

.ncpro-wrap p {
    color: var(--ncpro-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

/* ============================================
   FORMULARIOS
   ============================================ */
.ncpro-form {
    background: var(--ncpro-bg);
}

.ncpro-group {
    margin-bottom: 20px;
}

.ncpro-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--ncpro-text);
    margin-bottom: 8px;
}

.ncpro-input,
.ncpro-group input[type="text"],
.ncpro-group input[type="email"],
.ncpro-group input[type="url"],
.ncpro-group input[type="number"],
.ncpro-group input[type="tel"],
.ncpro-group select,
.ncpro-group textarea {
    width: 100%!important;
    padding: 12px 16px!important;
    border: 1px solid #d8d8d8!important;
    border-radius: 3px !important;
    font-size: 15px !important;
    color: var(--ncpro-text) !important;
    background: var(--ncpro-bg)!important;
    box-sizing: border-box!important;

}


#ncpm-search-panel input {
    font-size: 15px !important;
    padding: 15px !important;
}

.ncpro-input:focus,
.ncpro-group input:focus,
.ncpro-group select:focus,
.ncpro-group textarea:focus {
    outline: none;
    border-color: #aaa;
    box-shadow: 0 0 0 3px var(--ncpro-primary-light);
}

/* Select2 consistente con inputs del wizard */
.ncpro-wizard-form .select2-container .select2-selection--single {
    height: 48px !important;
    padding: 10px 16px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fff !important;
}

.ncpro-wizard-form .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
    padding-left: 0 !important;
    color: #1e293b !important;
    font-size: 16px !important;
}

.ncpro-wizard-form .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #94a3b8 !important;
}

.ncpro-wizard-form .select2-container .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 12px !important;
}

.ncpro-wizard-form .select2-container--default .select2-selection--single:focus,
.ncpro-wizard-form .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--ncpro-primary) !important;
    box-shadow: 0 0 0 3px var(--ncpro-primary-light) !important;
    outline: none !important;
}

.ncpro-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   BOTONES
   ============================================ */
.ncpro-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #aaa;
    color: #fff;
    border: none;
    border-radius: var(--ncpro-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}


#ncpro-map-update {
        background: transparent !important;
    border: 1px solid #d8d8d8 !important;
    color: #0f172a !important;
    margin-bottom: 2rem !important;
}

.ncpro-btn:hover {
    background: var(--ncpro-primary-hover);
}



.ncpro-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ncpro-btn-secondary {
    background: var(--ncpro-secondary);
}

.ncpro-btn-secondary:hover {
    background: #475569;
}

.ncpro-btn-success,
.ncpro-btn.ncpro-btn-success,
button.ncpro-btn.ncpro-btn-success {
    background: var(--ncpro-success) !important;
    color: #fff !important;
    border: none !important;
}

.ncpro-btn-success:hover {
    background: #059669 !important;
}

/* Botón outline (secundario con borde) */
.ncpro-btn-outline,
.ncpro-btn.ncpro-btn-outline,
a.ncpro-btn.ncpro-btn-outline,
button.ncpro-btn.ncpro-btn-outline {
    background: #fff !important;
    color: rgba(45, 46, 47, 1) !important;
    border: 1px solid rgba(200, 201, 202, 1) !important;
}

.ncpro-btn-outline:hover {
    background: #f8fafc !important;
    border-color: rgba(150, 151, 152, 1) !important;
}

.ncpro-btn-warning {
    background: var(--ncpro-warning);
}

.ncpro-btn-warning:hover {
    background: #d97706;
}

.ncpro-btn-danger {
    background: var(--ncpro-danger);
}

.ncpro-btn-danger:hover {
    background: #dc2626;
}

/* Variantes de botón con clase compuesta */
.ncpro-btn.primary {
    background: var(--ncpro-primary) !important;
    color: var(--ncpro-btn-text, #fff) !important;
    border: none !important;
}
.ncpro-btn.primary:hover {
    background: var(--ncpro-primary-hover) !important;
    color: var(--ncpro-btn-text, #fff) !important;
}
.ncpro-btn.secondary {
    background: #fff;
    color: #111827;
    border: 1px solid #d1d5db;
}
.ncpro-btn.secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}
.ncpro-btn.danger {
    background: #991b1b;
    color: #fff;
    border-color: #991b1b;
}
.ncpro-btn.danger:hover {
    background: #7f1d1d;
    border-color: #7f1d1d;
}

/* Textos de ayuda */
.ncpro-help {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6b7280;
}

/* Contenedor de grid 2 columnas */
.ncpro-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ncpro-btn-outline {
    background: transparent;
    color: #aaa;
    border: 1px solid #aaa;
}

.ncpro-btn-outline:hover {
    background: var(--ncpro-primary-light);
}

/* ============================================
   ALERTAS Y MENSAJES
   ============================================ */
.ncpro-alert {
    padding: 20px;
    border-radius: var(--ncpro-radius);
    border: none;
    margin: 20px 0;
}

.ncpro-alert-success {
    background: var(--ncpro-success-light);
    color: #166534;
}

.ncpro-alert-warning {
    background: var(--ncpro-warning-light);
    color: #92400e;
}

.ncpro-alert-danger {
    background: var(--ncpro-danger-light);
    color: #991b1b;
}

.ncpro-alert-info {
    background: var(--ncpro-primary-light);
    color: #075985;
}

/* ============================================
   CARDS
   ============================================ */
.ncpro-card {
    background: var(--ncpro-bg);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 20px 0;
}

.ncpro-card-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.ncpro-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ncpro-text);
    margin: 0;
}

/* ============================================
   TABS (Estilo Yelp)
   ============================================ */
.ncpro-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.ncpro-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--ncpro-text-light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: -1px;
}

.ncpro-tab:hover {
    color: #aaa;
}

.ncpro-tab.active {
    color: #aaa;
    border-bottom-color: #aaa;
}

/* ============================================
   GRID
   ============================================ */
.ncpro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ncpro-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.ncpro-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .ncpro-grid,
    .ncpro-grid-2,
    .ncpro-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESULTADOS DE BÚSQUEDA
   ============================================ */
.ncpro-results {
    margin-top: 8px;
    background: var(--ncpro-bg);
    border: 1px solid #d8d8d8;
    border-radius: var(--ncpro-radius);
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.ncpro-li {
    display: flex;
    gap: 12px;
    padding: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f8fafc;
}

.ncpro-li:hover {
    background: #f8fafc;
}

.ncpro-li:last-child {
    border-bottom: none;
}

.ncpro-li-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.ncpro-li-body {
    flex: 1;
}

.ncpro-li-title {
    font-weight: 600;
    color: var(--ncpro-text);
    margin-bottom: 4px;
}

.ncpro-li-meta {
    font-size: 13px;
    color: var(--ncpro-text-light);
}

.ncpro-empty {
    padding: 24px;
    text-align: center;
    color: var(--ncpro-text-light);
}

/* ============================================
   WIZARD DE ALTA - MINIMALISTA
   ============================================ */
.ncpro-wizard-container {
    background: var(--ncpro-bg);
}

/* Evitar flash al cargar: ocultar screens hasta que JS inicialice */
.ncpro-wizard-container .ncpro-wizard-screen {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}
.ncpro-wizard-container.is-ready .ncpro-wizard-screen {
    opacity: 1;
}
/* Mostrar inmediatamente si JS está deshabilitado */
.no-js .ncpro-wizard-container .ncpro-wizard-screen {
    opacity: 1;
}
.ncpro-wizard-screen .ncpro-vcard {
    cursor: auto !important;
}
.ncpro-wizard-step {
    background: var(--ncpro-bg);
    padding: 32px 0;
}

.ncpro-wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 20px;
}

.ncpro-wizard-step-indicator {
    flex: 1;
    text-align: center;
    position: relative;
}

.ncpro-wizard-step-indicator::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #f1f5f9;
    z-index: 0;
}

.ncpro-wizard-step-indicator:last-child::after {
    display: none;
}

.ncpro-wizard-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--ncpro-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.ncpro-wizard-step-indicator.active .ncpro-wizard-step-number {
    background: #aaa;
    color: #fff;
}

.ncpro-wizard-step-indicator.completed .ncpro-wizard-step-number {
    background: var(--ncpro-success);
    color: #fff;
}

.ncpro-wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

/* Sección antigua de .yb-* eliminada - definiciones unificadas más abajo */

/* ============================================
   DROPZONES DE FOTOS - MINIMALISTA
   ============================================ */
.ncpro-dropzone {
    border: 2px dashed #e5e7eb;
    border-radius: var(--ncpro-radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
}

.ncpro-dropzone:hover {
    border-color: #aaa;
    background: var(--ncpro-primary-light);
}

.ncpro-dropzone-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.ncpro-dropzone-text {
    color: var(--ncpro-text-light);
    font-size: 14px;
}

/* ============================================
   GALERÍA DE FOTOS
   ============================================ */
.ncpro-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.ncpro-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--ncpro-radius);
    overflow: hidden;
}

.ncpro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncpro-gallery-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ncpro-danger);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.ncpro-gallery-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* ============================================
   BADGES
   ============================================ */
.ncpro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.ncpro-badge-success {
    background: var(--ncpro-success-light);
    color: #166534;
}

.ncpro-badge-warning {
    background: var(--ncpro-warning-light);
    color: #92400e;
}

.ncpro-badge-verificado {
    background: var(--ncpro-success-light);
    color: #166534;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   ESTADOS DE ÉXITO/ERROR
   ============================================ */
.ncpro-success-state {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: var(--ncpro-radius);
    margin: 32px 0;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ncpro-error-state {
    text-align: center;
    padding: 40px;
    background: var(--ncpro-danger-light);
    border-radius: var(--ncpro-radius);
    margin: 32px 0;
}

/* ============================================
   LOADING
   ============================================ */
.ncpro-loading {
    position: relative;
    pointer-events: none;
}

.ncpro-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .ncpro-wrap {
        padding: 0 16px;
        margin: 20px auto;
    }
    
    .ncpro-wrap h2 {
        font-size: 24px;
    }
    
    .yb-tabs {
        gap: 4px;
    }
    
    .yb-tab {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .yb-actions {
        flex-direction: column;
    }
    
    .ncpro-btn {
        width: 100%;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.ncpro-text-center {
    text-align: center;
}

.ncpro-text-muted {
    color: var(--ncpro-text-light);
}

.ncpro-mt-0 { margin-top: 0; }
.ncpro-mt-1 { margin-top: 8px; }
.ncpro-mt-2 { margin-top: 16px; }
.ncpro-mt-3 { margin-top: 24px; }
.ncpro-mt-4 { margin-top: 32px; }

.ncpro-mb-0 { margin-bottom: 0; }
.ncpro-mb-1 { margin-bottom: 8px; }
.ncpro-mb-2 { margin-bottom: 16px; }
.ncpro-mb-3 { margin-bottom: 24px; }
.ncpro-mb-4 { margin-bottom: 32px; }

/* ============================================
   SIDEBAR UNIFICADO
   Usado en: Account, Edit, Messages, Notifications
   ============================================ */

/* Wrapper del sidebar (contiene botón volver + nav) */
.yb-sidebar-wrap,
.ncpm-sidebar-wrap {
    position: sticky;
    top: 84px;
    align-self: start;
}

.nc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
}

/* Botón de volver */
.nc-sidebar-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    color: var(--ncpro-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.nc-sidebar-back:hover {
    background: #f4f4f4;
    border-color: #d1d5db;
    text-decoration: none;
    color: var(--ncpro-text);
}

.nc-sidebar-back:active {
    background: #f0f0f0;

}

.nc-sidebar-back .nc-sidebar-icon,
.nc-sidebar-back svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Item del sidebar (link o botón) */
.nc-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: none;
    border-radius: 4px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0 !important;
    text-align: left;
}

.nc-sidebar-item:hover {
    background: #f0f0f0;
    text-decoration: none !important;
}

.nc-sidebar-item:active {
    background: #d8d8d8;
    text-decoration: none !important;
}

.nc-sidebar-item.is-active {
    background: #f0f0f0;
    border-left-color: #9ca3af;
}

/* Icono del item */
.nc-sidebar-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nc-sidebar-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2d2e2f;
}

.nc-sidebar-item.is-active .nc-sidebar-icon svg {
    stroke: #121212;
}

/* Algunos íconos usan stroke en lugar de fill */
.nc-sidebar-icon.stroke svg {
    fill: none;
    stroke: #2d2e2f;
    stroke-width: 2;
}

.nc-sidebar-item.is-active .nc-sidebar-icon.stroke svg {
    stroke: #121212;
}

/* Texto del item - ocupa el espacio disponible */
.nc-sidebar-item > span:not(.nc-sidebar-icon):not(.nc-sidebar-badge):not(.nc-sidebar-alert) {
    flex: 1;
    color: #2d2e2f;
}

.nc-sidebar-item.is-active > span:not(.nc-sidebar-icon):not(.nc-sidebar-badge):not(.nc-sidebar-alert) {
    color: #121212;
}

/* Badge (número) */
.nc-sidebar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: auto;
}

.nc-sidebar-item.is-active .nc-sidebar-badge {
    background: #d1d5db;
    color: #111827;
}

.nc-sidebar-badge.alert {
    background: var(--ncpro-warning);
    color: #fff;
}

/* Separador */
.nc-sidebar-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

/* Alerta (!) al final del item */
.nc-sidebar-alert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--ncpro-warning);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: auto;
}

/* Layout de dos columnas para paneles */
.nc-panel-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    min-height: 600px;
}

.nc-panel-sidebar {
    border-right: 1px solid #e5e7eb;
    padding-right: 24px;
}

.nc-panel-content {
    padding: 0;
}

/* Responsive */
@media (max-width: 880px) {
    .yb-sidebar-wrap,
    .ncpm-sidebar-wrap {
        position: static;
    }
    
    .nc-sidebar-back {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   MESSAGES PANEL (ncpm-*)
   ============================================ */

/* Contenedor principal */
.ncpm-panel-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Estado vacío (sin negocios verificados) */
.ncpm-empty-state {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.ncpm-empty-state .nc-sidebar-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    margin-bottom: 24px;
    transition: color 0.15s;
}
.ncpm-empty-state .nc-sidebar-back:hover {
    color: #111827;
}
.ncpm-no-business-msg {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
}
.ncpm-no-business-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    margin-bottom: 20px;
    color: #b45309;
}
.ncpm-no-business-msg h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #92400e;
}
.ncpm-no-business-msg p {
    margin: 0 0 24px 0;
    font-size: 15px;
    color: #78350f;
    line-height: 1.6;
}
.ncpm-no-business-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ncpm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ncpro-primary, #d32323);
    color: var(--ncpro-btn-text, #fff);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}
.ncpm-btn-primary:hover {
    background: var(--ncpro-primary-hover, #b91c1c);
}
.ncpm-btn-primary svg {
    flex-shrink: 0;
}

/* Botones de acciones rápidas */
.ncpro-quick-action-btn {
    width: 100%;
    margin-top: auto;
    padding: 10px 16px;
    background: var(--ncpro-primary, #d32323) !important;
    color: var(--ncpro-btn-text, #fff) !important;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.15s ease;
}

.ncpro-quick-action-btn:hover {
    background: var(--ncpro-primary-hover, #b91c1c) !important;
}

/* Header */
.ncpm-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px;
}
.ncpm-head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

/* ncpm-head responsive - en móviles el buscador va debajo del título */
@media (max-width: 600px) {
    .ncpm-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .ncpm-head h2 {
        font-size: 22px;
    }
    .ncpm-head > button,
    .ncpm-head > .ncpm-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Grid principal: sidebar + contenido */
.ncpm-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* Área de contenido principal */
.ncpm-main {
    min-width: 0;
}

/* Header del contenido principal */
.ncpm-main-header {
    margin-bottom: 24px;
}

.ncpm-main-header h1 {
    font-family: Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.2;
}

.ncpm-main-header .ncpm-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Paneles de contenido */
.ncpm-panel {
    display: none;
}
.ncpm-panel.is-active {
    display: block;
}

/* Dropdown menu - Abre hacia arriba */
.ncpm-dropdown {
    position: relative;
}
.ncpm-dropdown-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 4px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 220px;
    z-index: 1000;
    padding: 4px;
}
.ncpm-dropdown-menu.is-open {
    display: block;
}
.ncpm-card,
.ncpm-item,
.ncpm-actions-row {
    overflow: visible !important;
}
.ncpm-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    text-align: left;
}
.ncpm-dropdown-item:hover {
    background: #f3f4f6;
}
.ncpm-dropdown-item svg {
    flex-shrink: 0;
}

/* Colores por estado */
.ncpm-pill[data-badge] {
    font-weight: 600;
}
.ncpm-item[data-status="new"] .ncpm-pill[data-badge] {
    background: #f3f4f6;
    color: #6b7280;
}
.ncpm-item[data-status="pending"] .ncpm-pill[data-badge] {
    background: #fef3c7;
    color: #92400e;
}
.ncpm-item[data-status="contacted"] .ncpm-pill[data-badge] {
    background: #dbeafe;
    color: #1e40af;
}
.ncpm-item[data-status="resolved"] .ncpm-pill[data-badge] {
    background: #d1fae5;
    color: #065f46;
}

/* Notas privadas */
.ncpm-notes-section {
    margin-top: 12px;
    padding: 12px;
    background: #fef9e7;
    border-radius: 6px;
}
.ncpm-notes-display {
    margin-top: 8px;
}
.ncpm-notes-display > div {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}
.ncpm-notes-editor {
    margin-top: 8px;
}
.ncpm-notes-editor textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 8px;
    font-family: inherit;
    background: #fff;
}

/* Analytics Cards */
.ncpm-analytics-kpi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.ncpm-kpi-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.ncpm-kpi-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
}
.ncpm-kpi-value {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.ncpm-kpi-detail {
    font-size: 13px;
    color: #9ca3af;
}
.ncpm-kpi-chips {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ncpm-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 12px;
    color: #374151;
    font-weight: 500;
}

/* Loader */
.ncpm-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 24px;
    min-height: 280px;
    background: #fafafa;
    border-radius: 12px;
}
.ncpm-loader .spin {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 3px solid #e5e7eb;
    border-top-color: #111827;
    animation: ncpm-spin 0.8s linear infinite;
}
.ncpm-loader .txt {
    color: #6b7280;
    font-weight: 600;
    font-size: 15px;
}
@keyframes ncpm-spin {
    to { transform: rotate(360deg); }
}

/* Lista de mensajes */
.ncpm-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ncpm-list-inner {
    display: none;
}
.ncpm-list-inner.is-loaded {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ncpm-item {
}
.ncpm-item[hidden] {
    display: none;
}
.ncpm-card {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}
#ncpm-search-panel {
    background: #f5f6f7;
    padding: 20px !important;
}

#ncpm-config-content,
#ncpm-analytics-content,
#ncpm-comments-content {
}
.ncpm-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.ncpm-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}
.ncpm-pill[data-badge] {
    background: #ecfdf5;
    color: #065f46;
}
.ncpm-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.ncpm-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}
.ncpm-ico {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}
.ncpm-msg {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}
.ncpm-link-mini {
    background: none;
    border: none;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}
.ncpm-link-mini:hover {
    text-decoration: underline;
}
.ncpm-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

/* Botones */
.ncpm-primary,
.ncpm-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid;
    text-decoration: none;
}
.ncpm-primary {
    background: #111827;
    color: #fff;
    border-color: #111827;
}
.ncpm-primary:hover {
    background: #374151;
    border-color: #374151;
}
.ncpm-secondary {
    background: #fff;
    color: #374151;
    border-color: #d1d5db;
}
.ncpm-secondary:hover {
    background: #f9fafb;
}
.ncpm-mini {
    padding: 6px 12px;
    font-size: 13px;
}

/* Paginación */
.ncpm-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
.ncpm-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ncpm-pagination button:disabled:hover {
    background: #fff;
}

/* Campos de formulario */
.ncpm-field {
    margin-bottom: 16px;
}
.ncpm-field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    margin-bottom: 6px;
}
.ncpm-field select,
.ncpm-qr-pick {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #111827;
}

/* Modal */
.ncpm-modal {
    border: 0;
    padding: 0;
    max-width: 600px;
    width: 90%;
    border-radius: 6px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
    margin: 0 auto;
    margin-top: 2rem;
}


.ncpm-modal .ncpm-card {
    padding: 1.5rem !important;
}



.ncpm-modal::backdrop {
    background: rgba(0,0,0,.5);
}
.ncpm-modal-wrap {
    padding: 0;
}
.ncpm-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    border: 0;
    background: #f3f4f6;
    border-radius: 999px;
    cursor: pointer;
    font-size: 20px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ncpm-close:hover {
    background: #e5e7eb;
    color: #111827;
}
.ncpm-h {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}
.ncpm-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

/* Responsive messages */
@media (max-width: 1024px) {
    .ncpm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Tooltip */
.ncpm-tip {
    position: fixed;
    max-width: 260px;
    background: #111827;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: .85rem;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transform: translate(-50%,-8px) scale(.98);
    opacity: 0;
    z-index: 99999;
    pointer-events: none;
}
.ncpm-tip.is-show {
    opacity: 1;
    transform: translate(-50%,-10px) scale(1);
}
.ncpm-tip::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    margin-left: -6px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;
}

#ncpm-comments-content .ncpm-btn {
    color: var(--ncpro-text) !important;
    width: auto !important;
    background: transparent !important;
    border: 1px solid #d8d8d8 !important;
}
/* Botón principal del modal */
.ncpm-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: none;
    background: #111827;
    color: #fff;
    padding: .6rem .9rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.ncpm-btn:hover {
    background: #374151;
}
.ncpm-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* Animaciones de modal */
@keyframes ncpmFadeIn {
    from { opacity: 0; transform: translateY(6px) scale(.985); }
    to { opacity: 1; transform: none; }
}
@keyframes ncpmFadeOut {
    from { opacity: 1; transform: none; }
    to { opacity: 0; transform: translateY(6px) scale(.985); }
}
.ncpm-modal.is-opening .ncpm-card {
    animation: ncpmFadeIn .18s ease both;
}
.ncpm-modal.is-closing .ncpm-card {
    animation: ncpmFadeOut .16s ease both;
}

/* Helper icon */
.ncpm-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    cursor: help;
}

/* Mini sparkline charts */
.ncpm-mini-chart {
    width: 140px;
    height: 36px;
}
.ncpm-mini-line {
    stroke: #111827;
    stroke-width: 2;
}
.ncpm-mini-dot {
    fill: #111827;
}

/* Hidden full message */
.ncpm-msg-full {
    display: none !important;
}

/* Row layout */
.ncpm-row {
    display: flex;
    gap: .75rem;
}

.yb-grid input,
.yb-grid textarea,
.yb-grid select {
    font-size: 15px !important;
    padding: 16px !important;
    box-shadow: none !important;
    border-radius: 3px !important;
    outline: none !important;
}

/* ============================================
   [ncpro_account] - ACCOUNT SHORTCODE
   ============================================ */

/* Contenedor principal */
.ncpro-wrap[data-ncpro="account-v2"] {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
}

/* Agregar padding solo a los mensajes de estado */
.ncpro-wrap[data-ncpro="account-v2"] > .acc-msg {
    margin: 0 20px 20px;
}

/* Grid layout con padding lateral */
.ncpro-wrap[data-ncpro="account-v2"] .acc-layout {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header con saludo */
.acc-header {
    margin-bottom: 32px;
}
.acc-greeting {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.acc-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Mensajes de estado */
.acc-msg {
    margin: 0 0 24px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #10b981;
    background: #ecfdf5;
    color: #065f46;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}
.acc-msg svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.acc-msg.warning {
    border-color: #f59e0b;
    background: #fef3c7;
    color: #92400e;
}

/* Bloque sin negocios verificados */
.acc-no-business {
    background: #f4f4f4;
    border-radius: 6px;
    padding: 28px;
    margin-bottom: 0;
}
.acc-no-business-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.acc-no-business-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.acc-no-business-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #121212;
}
.acc-no-business-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}
.acc-no-business-text strong {
    font-weight: 600;
}
.acc-no-business .acc-cta-grid {
    margin-top: 0;
}
.acc-no-business .acc-cta {
    background: #FFFFFF;
}
.acc-no-business .acc-cta:hover {
   box-shadow:0 3px 12px rgba(0,0,0,.12) !important;
}
.acc-no-business .acc-cta .icon {
    background: #f0f0f0;
}
.acc-no-business .acc-cta .icon svg {
    stroke: #121212;
}
.acc-no-business .acc-cta:last-child .icon {
}
.acc-no-business .acc-cta:last-child .icon svg {
}

/* Grid principal */
.acc-grid {
    display: grid;
    gap: 20px;
}
.acc-cta-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Tarjetas CTA (sin verificación) */
.acc-cta {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    transition: none !important;
}

.acc-cta:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    text-decoration: none !important;
}
.acc-cta .icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acc-cta .icon svg {
    width: 24px;
    height: 24px;
    stroke: #374151;
}
.acc-cta .body {
    flex: 1;
}
.acc-cta h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.acc-cta p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
}

/* Card no verificada */
.acc-cta.acc-cta-unverified {
    border: 1px dashed #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
.acc-cta.acc-cta-unverified:hover {
    border-color: #d97706;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.acc-cta.acc-cta-unverified .icon {
    background: #fef3c7;
    border-color: #f59e0b;
}

/* Badge FALTA VERIFICAR */
.acc-badge-unverified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 4px 10px;
    background: #fef3c7;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge EN REVISIÓN (pendiente de aprobación) */
.acc-cta.acc-cta-pending-approval {
    border-color: #fca5a5;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}
.acc-cta.acc-cta-pending-approval .icon {
    background: #fee2e2;
    border-color: #f87171;
}
.acc-badge-pending-approval {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 4px 10px;
    background: #fee2e2;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #991b1b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.acc-pending-msg {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}
.acc-pending-msg a {
    color: var(--ncpro-primary, #d32323);
    text-decoration: underline;
}

/* Badge RECHAZADO */
.acc-cta.acc-cta-rejected {
    border-color: #f87171;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    opacity: 0.8;
}
.acc-cta.acc-cta-rejected .icon {
    background: #fecaca;
    border-color: #ef4444;
}
.acc-badge-rejected {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 4px 10px;
    background: #fecaca;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid principal con sidebar */
.acc-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
.acc-layout > .nc-sidebar {
    position: sticky;
    top: 84px;
}

/* Hero del negocio */
.acc-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    margin-bottom: 24px;
}
.acc-hero .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.acc-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.63), rgba(0,0,0,.8));
}
.acc-hero .content {
    position: relative;
    z-index: 1;
    padding: 32px;
}
.acc-hero-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.acc-hero h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}
.acc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.acc-badge.verified {
    background: rgba(16,185,129,0.3);
    color: #fff;
}
.acc-badge.unverified {
    background: rgba(251,191,36,0.3);
    color: #fef3c7;
}
.acc-badge.featured {
    background: rgba(234,179,8,0.3);
    color: #fef9c3;
}
.acc-badge.featured.super {
    background: linear-gradient(135deg, rgba(124,58,237,0.4) 0%, rgba(168,85,247,0.4) 100%);
    color: #e9d5ff;
}
.acc-badge svg {
    width: 14px;
    height: 14px;
}
.acc-hero .addr {
    font-size: 15px;
    color: #fff;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
}
.acc-hero .addr svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #fff;
        stroke-width: 1.5;
}

/* Botón ver ficha en hero */
.acc-hero-link {
    position: absolute;
    right: 32px;
    bottom: 32px;
    background: rgba(255,255,255,.95);
    color: #111827;
    border-radius: 6px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,.08);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.acc-hero-link:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    text-decoration: none !important;
}
.acc-hero-link svg {
    width: 16px;
    height: 16px;
}

/* Badge de alerta (!) en tarjetas */
.acc-hero-alert {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: #f59e0b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}
.acc-alert-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}
.acc-alert-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 6px;
}
.acc-alert-box-list {
    font-size: 12px;
    color: #78350f;
    margin: 0;
    padding-left: 20px;
}
.acc-alert-box-list li {
    margin: 2px 0;
}

/* ============================================
   [ncpro_notifications] - NOTIFICACIONES
   ============================================ */

.ncpro-wrap[data-ncpro="notifications"] {
    width: 100%;
    margin: 0;
    padding: 0;
}
.ncpro-notif-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}
.ncpro-notif-header {
    margin-bottom: 32px;
}
.ncpro-notif-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.ncpro-notif-subtitle {
    font-size: 16px;
    color: #6b7280;
}
.ncpro-notif-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}
.ncpro-notif-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.ncpro-notif-card.warning {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}
.ncpro-notif-card.comment {
    border-left: 4px solid #3b82f6;
    background: #eff6ff;
}
.ncpro-notif-card-header {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
}
.ncpro-notif-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.ncpro-notif-card-icon.warning {
    background: #fef3c7;
    color: #f59e0b;
}
.ncpro-notif-card-icon.comment {
    background: #dbeafe;
    color: #3b82f6;
}
.ncpro-notif-card-content {
    flex: 1;
}
.ncpro-notif-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.ncpro-notif-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.ncpro-notif-card-meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}
.ncpro-notif-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.ncpro-notif-empty {
    text-align: center;
    padding: 80px 20px;
}
.ncpro-notif-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}
.ncpro-notif-empty-text {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.ncpro-notif-empty-desc {
    font-size: 14px;
    color: #9ca3af;
}

/* ============================================
   [ncpro_claim] - CLAIM SHORTCODE
   ============================================ */

.ncpro-wrap[data-ncpro="claim"] {
    width: 100%;
    margin: 0;
    padding: 0;
}
.claim-container {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 728px;
    margin: 0 auto;
}
.claim-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
}
.claim-back:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    text-decoration: none !important;
}
.claim-back svg {
    width: 18px;
    height: 18px;
}
.claim-header {
    margin-bottom: 40px;
}
.claim-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.2;
}
.claim-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Tarjeta seleccionada */
.ncpro-selected {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    margin: 0 0 32px;
    padding: 16px;
    background: #fff;
    border-radius: 4px;
    background: #f0f0f0;
}
.ncpro-selected img {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    object-fit: cover;
    background: #f3f4f6;
}
.ncpro-selected .ttl {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}
.ncpro-selected .addr {
    font-size: 14px;
    color: #6b7280;
}

/* Opciones de verificación */
.ncpro-choices {
    margin: 24px 0;
}

/* Sección verificación */
.ncpro-section {
    margin-top: 32px;
}
.ncpro-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
}

/* Métodos con radio (estilo Yelp) */
.ncpro-vtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px;
}

/* Títulos de subsección (Ya registrados, En Google Maps) */
.ncpro-results-section .ncpro-vtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 12px;
}
.ncpro-vcards {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.ncpro-vcard {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}
/* Cards con foto: 4 columnas */
.ncpro-vcard:has(.ncpro-vcard-photo) {
    grid-template-columns: auto auto 1fr auto;
}
.ncpro-vcard-photo {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ncpro-vcard-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ncpro-vcard-photo-placeholder {
    color: #9ca3af;
}
.ncpro-vcard:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ncpro-vcard.selected {
    border-color: #9ca3af;
    background: #f9fafb;
}
.ncpro-vcard-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.ncpro-vcard.selected .ncpro-vcard-radio {
    border-color: #0073bb;
}
.ncpro-vcard.selected .ncpro-vcard-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #0073bb;
    border-radius: 50%;
}
.ncpro-vcard-content {
    flex: 1;
}
.ncpro-vcard .title {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    margin: 0;
}
.ncpro-vcard .meta {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0;
    display: none;
}
.ncpro-vcard.selected .meta {
    display: block;
}
/* En wizard de alta, dirección siempre visible */
.ncpro-vcard.ncpro-local-card .meta,
.ncpro-vcard.ncpro-gmaps-card .meta,
#ncpro-found-local-card .meta,
#ncpro-found-maps-card .meta {
    display: block;
}
.ncpro-vcard .actions {
    flex-shrink: 0;
    display: none;
}
.ncpro-vcard.selected .actions {
    display: block;
}
.ncpro-vcard .actions .ncpro-btn {
    min-width: 100px;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Variante recommended */
.ncpro-vcard.recommended {
    border-color: #d1d5db;
}
.ncpro-vcard.recommended.selected {
    border-color: #111827;
    background: #f9fafb;
}

/* Icono de método (oculto en desktop, visible en mobile) */
.ncpro-vcard-icon {
    display: none;
}

/* ============================================
   Items de múltiples matches (franquicias)
   ============================================ */
.ncpro-match-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.ncpro-match-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}
.ncpro-match-item.selected {
    border-color: #111827;
    background: #f8fafc;
}
.ncpro-match-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
.ncpro-match-item.selected .ncpro-match-radio {
    border-color: #111827;
}
.ncpro-match-item.selected .ncpro-match-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #111827;
    border-radius: 50%;
}
.ncpro-match-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f3f4f6;
}
.ncpro-match-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}
.ncpro-match-info {
    flex: 1;
    min-width: 0;
}
.ncpro-match-name {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ncpro-match-address {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ncpro-match-none {
    border-style: dashed;
    background: #fafafa;
}
.ncpro-match-none .ncpro-match-name {
    color: #6b7280;
}
.ncpro-match-none .ncpro-match-address {
    font-size: 12px;
}
.ncpro-match-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}
.ncpro-match-badge-maps {
    background: #e0f2fe;
    color: #0284c7;
}
.ncpro-match-badge-local {
    background: #d1fae5;
    color: #059669;
}

/* Responsive para móviles - Verificación */
@media (max-width: 600px) {
    /* Cards: icono izq, contenido centro, radio derecha */
    .ncpro-vcard {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 16px;
        text-align: left;
        border-radius: 6px;
    }
    
    /* Icono a la izquierda */
    .ncpro-vcard-icon {
        display: flex !important;
        width: 40px;
        height: 40px;
        background: #f3f4f6;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #6b7280;
        order: 1;
    }
    .ncpro-vcard-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Contenido en el centro */
    .ncpro-vcard-content {
        flex: 1;
        order: 2;
    }
    .ncpro-vcard .title {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 0;
    }
    /* Descripción oculta por defecto, visible solo en seleccionada */
    .ncpro-vcard .meta {
        display: none;
    }
    .ncpro-vcard.selected .meta {
        display: block;
        font-size: 13px;
        line-height: 1.4;
        color: #6b7280;
        margin-top: 4px;
    }
    
    /* Radio a la DERECHA */
    .ncpro-vcard-radio {
        display: flex !important;
        order: 3;
        flex-shrink: 0;
    }
    
    /* Ocultar botones individuales en mobile */
    .ncpro-vcard .actions {
        display: none !important;
    }
    
    /* Card seleccionada */
    .ncpro-vcard.selected {
        border-color: #111827;
        background: #f8fafc;
    }
    .ncpro-vcard.selected .ncpro-vcard-icon {
        background: #111827;
        color: #fff;
    }
    
    /* Títulos de sección */
    .ncpro-vtitle {
        font-size: 13px;
        font-weight: 600;
        color: #6b7280;
        margin: 0 0 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .ncpro-vcards {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    /* Cards con foto */
    .ncpro-vcard:has(.ncpro-vcard-photo) .ncpro-vcard-icon {
        display: none !important;
    }
    .ncpro-vcard-photo {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        order: 1;
        flex-shrink: 0;
    }
    
    /* Botón global "Continuar" (se agrega via JS) */
    .ncpro-mobile-continue-wrapper {
        margin-top: 16px;
        padding-top: 16px;
    }
    .ncpro-mobile-continue {
        width: 100%;
        padding: 14px 24px;
        background: #111827;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .ncpro-mobile-continue:hover {
        background: #1f2937;
    }
    .ncpro-mobile-continue:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    .ncpro-mobile-continue .btn-loading {
        display: none;
    }
    .ncpro-mobile-continue.is-loading .btn-text {
        display: none;
    }
    .ncpro-mobile-continue.is-loading .btn-loading {
        display: block;
    }
}

/* Ocultar botón mobile en desktop */
.ncpro-mobile-continue-wrapper {
    display: none;
}
@media (max-width: 600px) {
    .ncpro-mobile-continue-wrapper {
        display: block;
    }
}

/* Clase ncpro-send (botones de envío) */
.ncpro-send {
    cursor: pointer;
}
.ncpro-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   MULTI-STEP VERIFICATION
   ======================================== */
.ncpro-verify-steps {
    position: relative;
    min-height: 200px;
}

.ncpro-step {
    display: none;
    animation: ncproStepIn 0.35s ease-out;
}

.ncpro-step.ncpro-step-active {
    display: block;
}

@keyframes ncproStepIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Botón volver */
.ncpro-step-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    margin-bottom: 24px;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}
.ncpro-step-back:hover {
    color: #111827;
}
.ncpro-step-back svg {
    flex-shrink: 0;
}

/* Header del paso */
.ncpro-step-header {
    margin-bottom: 32px;
}
.ncpro-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    color: #0284c7;
}
.ncpro-step-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}
.ncpro-step-desc {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
    margin: 0 auto;
    line-height: 1.5;
}

/* Formulario OTP */
.ncpro-otp-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.ncpro-otp-input-wrap {
    width: 100%;
    max-width: 200px;
}
.ncpro-otp-input {
    width: 100%;
    padding: 16px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ncpro-otp-input:focus {
    outline: none;
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.ncpro-otp-input::placeholder {
    color: #d1d5db;
    letter-spacing: 8px;
}

/* Botón grande */
.ncpro-btn-large {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Reenvío */
.ncpro-otp-resend {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}
.ncpro-otp-resend svg {
    vertical-align: -3px;
    margin-right: 4px;
}
.ncpro-otp-resend a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 500;
}
.ncpro-otp-resend a:hover {
    text-decoration: underline;
}
#ncpro-resend-limit {
    color: #dc2626;
}

/* Formulario documentos */
.ncpro-docs-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ncpro-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ncpro-field label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.ncpro-file-upload {
    position: relative;
}
.ncpro-file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.ncpro-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 20px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}
.ncpro-file-upload:hover .ncpro-file-label {
    border-color: #9ca3af;
    background: #f3f4f6;
}

/* Mensaje de estado mejorado */
.ncpro-msg {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ncpro-msg:empty {
    display: none;
}
.ncpro-msg.success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border: 1px solid #10b981;
}
.ncpro-msg.error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border: 1px solid #f87171;
}
.ncpro-msg.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    border: 1px solid #60a5fa;
}
.ncpro-msg svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Spinner */
.spin {
    animation: ncproSpin 1s linear infinite;
}
@keyframes ncproSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Botones con loading inline */
.ncpro-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ncpro-btn .btn-loading svg {
    display: block;
}
.ncpro-vcard .ncpro-btn {
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Responsive móvil */
@media (max-width: 480px) {
    .ncpro-step-header {
        margin-bottom: 24px;
    }
    .ncpro-step-icon {
        width: 56px;
        height: 56px;
    }
    .ncpro-step-icon svg {
        width: 28px;
        height: 28px;
    }
    .ncpro-step-title {
        font-size: 18px;
    }
    .ncpro-step-desc {
        font-size: 14px;
    }
    .ncpro-otp-input {
        font-size: 24px;
        padding: 14px;
        letter-spacing: 6px;
    }
    .ncpro-otp-input::placeholder {
        letter-spacing: 6px;
    }
    .ncpro-btn-large {
        max-width: 100%;
    }
}

/* Paneles internos */
#ncpro-email-panel,
#ncpro-phone-panel,
#ncpro-docs-panel {
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 24px;
}
.ncpro-otp {
    margin-top: 16px;
}
.ncpro-otp-input-row {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ncpro-otp-resend-area {
    margin-top: 16px;
    font-size: 14px;
    color: #4b5563;
}
#ncpro-resend-wait {
    display: inline-flex;
    align-items: center;
}
#ncpro-resend-countdown {
    color: #0ea5e9;
    font-variant-numeric: tabular-nums;
}
#ncpro-resend-link {
    color: #0ea5e9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}
#ncpro-resend-link:hover {
    color: #0369a1;
    text-decoration: underline;
}
#ncpro-resend-link strong {
    font-weight: 600;
}
#ncpro-resend-limit {
    display: inline-flex;
    align-items: center;
}

/* Items de resultados */
.ncpro-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    align-items: center;
    margin-top: 8px;
    cursor: pointer;
}
.ncpro-item:hover {
    background: #f0f0f0;
}
.ncpro-thumb {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
    background: #f3f4f6;
}
.ncpro-item h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}
.ncpro-item .ncpro-small {
    font-size: 14px;
    color: #6b7280;
}
.ncpro-small {
    font-size: 14px;
}

/* ============================================
   NO RESULTS - Mensaje cuando no hay resultados
   ============================================ */
.ncpro-no-results {
    text-align: center;
    padding: 48px 24px;
}

.ncpro-no-results-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #9ca3af;
}

.ncpro-no-results-icon svg {
    width: 40px;
    height: 40px;
}

.ncpro-no-results-title {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
}

.ncpro-no-results-text {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 4px;
}

.ncpro-no-results-text strong {
    color: #374151;
}

.ncpro-no-results-subtext {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 20px;
}

.ncpro-no-results-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    background: var(--ncpro-primary, #0ea5e9);
    color: var(--ncpro-btn-text, #fff) !important;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.ncpro-no-results-btn:hover {
    background: var(--ncpro-primary-hover, #0284c7);
    text-decoration: none;
    color: #6b7280;
}
.ncpro-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ncpro-msg:empty {
    display: none;
}
.ncpro-msg svg {
    flex-shrink: 0;
}
.ncpro-msg.success,
.ncpro-msg-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    color: #065f46;
    font-weight: 500;
    animation: ncpro-msg-pop 0.3s ease-out;
}
.ncpro-msg.error,
.ncpro-msg-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #ef4444;
    color: #991b1b;
    font-weight: 500;
    animation: ncpro-msg-pop 0.3s ease-out;
}
.ncpro-msg.info {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    color: #1e40af;
}

@keyframes ncpro-msg-pop {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Spinner para mensajes y loaders */
.ncpro-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #0ea5e9;
    border-radius: 50%;
    animation: ncpro-spin 0.8s linear infinite;
}
.ncpro-spinner.small {
    width: 20px;
    height: 20px;
    border-width: 2px;
}
@keyframes ncpro-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Estado muted/disabled */
.ncpro-muted {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ============================================
   [ncpro_add] WIZARD - ALTA DE NEGOCIO
   ============================================ */

.ncpro-wrap[data-ncpro="add"] {
    width: 100%;
    margin: 0;
    padding: 0;
}
.add-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
}
.add-back:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}
.add-back svg {
    width: 18px;
    height: 18px;
}
.ncpro-wizard-screen h1 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.2;
}
.ncpro-wizard-screen h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}
.ncpro-wizard-screen p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 32px;
}
.ncpro-wizard-screen p.ncpro-vtitle {
    font-size: 18px;
    color: #181818;
}

.ncpro-wizard-screen p.ncpro-match-name,
.ncpro-wizard-screen p.ncpro-match-address{
    margin-bottom: 0 !important;
}

.ncpro-results-section .ncpro-vtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #181818;
    margin: 0 0 12px;
}

.ncpro-wizard-choice-btn {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}
.ncpro-wizard-choice-btn:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ncpro-business-card {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    background: #fff;
}
.ncpro-business-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ncpro-business-card.selected {
    border-color: #9ca3af;
    background: #f9fafb;
}
.ncpro-business-card img {
    border-radius: 4px;
    object-fit: cover;
}

/* ============================================
   [ncpro_edit] - EDICIÓN DE NEGOCIO
   ============================================ */

.ncpro-wrap.nc-pro-edit-form,
.ncpro-wrap[data-ncpro="edit"] {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
}
.yb-edit {
    margin-top: 6px;
}
.yb-head {
    margin: 0 0 20px;
}
.yb-head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}
.yb-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}
.yb-main {
    min-width: 0;
}
.yb-panels {
    background: #fff;
}

/* Paneles */
.yb-panel {
    display: none;
    border: 0;
    border-radius: 0;
    background: #fff;
    overflow: visible;
}
.yb-panel.is-active {
    display: block;
}
.yb-panel-inner {
    padding: 0;
    display: none; /* JS lo muestra con fadeIn */
    background: #fff;
    border-radius: 0;
    border: 0;
}

/* Loader */
.yb-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 24px;
    min-height: 280px;
    background: #fafafa;
    border-radius: 12px;
}
.yb-loader .spin {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 3px solid #e5e7eb;
    border-top-color: #111827;
    animation: ybspin 0.8s linear infinite;
}
.yb-loader .txt {
    color: #6b7280;
    font-weight: 600;
    font-size: 15px;
}
@keyframes ybspin {
    to { transform: rotate(360deg); }
}

/* Campos readonly */
.ncpro-readonly {
    background: #f9fafb !important;
    color: #6b7280 !important;
    cursor: not-allowed !important;
}

/* Badge checkbox */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
}
.badge input[type="checkbox"] {
    margin: 0;
}

/* Tarjetas y chips */
.ncpro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}
.ncpro-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    background: rgb(217, 246, 253);
}
.ncpro-chip:hover {
    background: #c3dde3;
}
.ncpro-chip-label {
    font-size: 13px;
    color: rgb(0, 118, 146);
}
.ncpro-chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: rgb(0, 118, 146);
}
.ncpro-chip-remove:hover {
    color: #005266;
}
.ncpro-chip-remove svg {
    width: 14px;
    height: 14px;
}

/* ====== SERVICIOS - Estilo Yelp ====== */

/* Card de servicios activos */
.ncpro-services-active h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.ncpro-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 48px;
}

.ncpro-services-empty {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    padding: 12px 0;
}

/* Chip de servicio activo (edit y wizard) */
.ncpro-service-active,
.ncpro-wiz-service-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #d9f6fd;
    border: 1px solid #007692;
    border-radius: 50px;
    color: #007692;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s, background 0.15s;
}

.ncpro-service-active:hover,
.ncpro-wiz-service-active:hover {
    background: #c5f0fb;
}

.ncpro-service-active .ncpro-chip-label,
.ncpro-wiz-service-active .ncpro-chip-label {
    color: #007692;
}

.ncpro-service-active .ncpro-chip-remove,
.ncpro-wiz-service-active .ncpro-chip-remove {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.ncpro-service-active:hover .ncpro-chip-remove,
.ncpro-wiz-service-active:hover .ncpro-chip-remove {
    opacity: 1;
}
.ncpro-services-available {
    margin-top: 2rem !important;
}
/* Card de servicios disponibles */
.ncpro-services-available h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.ncpro-services-subtitle {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #6b7280;
}

.ncpro-services-counter {
    color: #9ca3af;
    font-size: 13px;
}

.ncpro-services-limit-msg {
    background: #fef3c7;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #92400e !important;
    font-size: 14px;
}

.ncpro-services-show-disabled {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s;
    display: none !important;
}

.ncpro-services-show-disabled:hover {
    background: #e5e7eb;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

.ncpro-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Chip de servicio sugerido con + (edit y wizard) */
.ncpro-sugg-chip,
.ncpro-wiz-sugg-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s, background 0.15s, border-color 0.15s;
}

.ncpro-sugg-chip:hover,
.ncpro-wiz-sugg-chip:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.ncpro-sugg-chip .ncpro-chip-plus,
.ncpro-wiz-sugg-chip .ncpro-chip-plus {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    line-height: 1;
}

.ncpro-sugg-chip .ncpro-chip-label,
.ncpro-wiz-sugg-chip .ncpro-chip-label {
    color: #374151;
}

/* Chip sugerido deshabilitado (cuando se alcanza el límite) */
.ncpro-sugg-chip.is-disabled,
.ncpro-wiz-sugg-chip.is-disabled {
    background: #f9fafb;
    border-color: #e5e7eb;
    opacity: 0.5;
    cursor: not-allowed;
}

.ncpro-sugg-chip.is-disabled:hover,
.ncpro-wiz-sugg-chip.is-disabled:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.ncpro-sugg-chip.is-disabled .ncpro-chip-plus,
.ncpro-wiz-sugg-chip.is-disabled .ncpro-chip-plus {
    color: #9ca3af;
}

/* Botón "Ver más servicios" */
.ncpro-services-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    color: #0f172a;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.ncpro-services-more:hover {
    background: #f3f4f6;
    color: #374151;
}

.ncpro-services-more svg {
    flex-shrink: 0;
}


/* Dropzone - ahora es parte de la grilla */
.ncpro-drop {
    display: none; /* Oculto por defecto */
}

/* Galería con botón integrado */
.ncpro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

/* Botón "Agregar" integrado en la grilla */
.ncpro-gallery-grid .ncpro-add-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    aspect-ratio: 1;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    padding: 12px;
    text-align: center;
    list-style: none;
}
.ncpro-gallery-grid .ncpro-add-photo:hover {
    border-color: #a8a8a8;
    background: #f0f0f0;
    color: #303030;
}
.ncpro-gallery-grid .ncpro-add-photo svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
    opacity: 0.6;
}
.ncpro-gallery-grid .ncpro-add-photo:hover svg {
    opacity: 1;
}
.ncpro-gallery-grid .ncpro-add-photo span {
    line-height: 1.2;
}
.ncpro-gallery-grid li {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid #e5e7eb;
}
.ncpro-gallery-grid li:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.ncpro-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}
.ncpro-gallery-grid .rm {
    position: absolute;
    right: 8px;
    top: 8px;
    border: 0;
    background: rgba(0,0,0,.7);
    color: #fff;
    border-radius: 999px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}
.ncpro-gallery-grid .rm:hover {
    background: #991b1b;
    transform: scale(1.1);
}
.ncpro-photo-req {
    display: block;
    margin-top: 12px;
    color: #6b7280;
    font-size: 13px;
}

/* Foto subiendo (loader) */
.ncpro-gallery-grid .ncpro-photo-uploading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
}
.ncpro-photo-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ncpro-photo-loader .spin {
    width: 28px;
    height: 28px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: ncpro-spin 0.8s linear infinite;
}
@keyframes ncpro-spin {
    to { transform: rotate(360deg); }
}

/* Badge foto principal */
.ncpro-gallery-grid .ncpro-photo-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Foto principal destacada */
.ncpro-gallery-grid .ncpro-photo-main {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Botón "Hacer principal" */
.ncpro-gallery-grid .ncpro-wiz-make-main {
    position: absolute;
    bottom: 8px;
    left: 8px;
    border: 0;
    background: rgba(0,0,0,.7);
    color: #fbbf24;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s, background 0.15s, transform 0.15s;
}
.ncpro-gallery-grid .ncpro-wiz-make-main svg {
    width: 16px;
    height: 16px;
}
.ncpro-gallery-grid li:hover .ncpro-wiz-make-main {
    opacity: 1;
}
.ncpro-gallery-grid .ncpro-wiz-make-main:hover {
    background: #fbbf24;
    color: #1f2937;
    transform: scale(1.1);
}

/* Acciones del formulario */
.ncpro-actions {
    margin: 32px 0 0 0;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.ncpro-actions .ncpro-msg {
    width: 100%;
}

/* Mapa */
.ncpro-map-sticky {
    position: sticky;
    top: 84px;
}
.ncpro-map-container {
    position: relative;
    overflow: hidden;
}

.ncpro-map-iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Skeleton loader para el mapa */
.ncpro-map-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-size: 200% 200%;
    animation: ncpro-map-skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncpro-map-skeleton-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
}

.ncpro-map-skeleton-inner svg {
    animation: ncpro-map-pin-bounce 1s ease-in-out infinite;
}

@keyframes ncpro-map-skeleton-pulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ncpro-map-pin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.ncpro-map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.ncpro-map-toolbar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
}
.ncpro-badge-ok {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Horarios */
.ncpro-hours-table {
    padding: 0;
}
.ncpro-hours-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding: 12px 0;
    gap: 12px;
}
.ncpro-hours-row:last-child {
    border-bottom: 0;
}
.ncpro-day-label {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
}
.ncpro-day-label strong {
    font-weight: 600;
    color: #1e293b;
}
.ncpro-hour-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.ncpro-time-slot {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}
.ncpro-time-slot select {
    width: auto;
    min-width: 75px;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}
.ncpro-time-slot select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59,130,246,.15);
}
.ncpro-time-slot select:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}
.ncpro-slot-2 {

margin-left: .5rem;
}
.ncpro-remove-slot {
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 22px;
    height: 22px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    margin-right: .75rem;
}
.ncpro-remove-slot:hover {
    background: #dc2626;
}
.ncpro-hour-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ncpro-add-slot {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #7dd3fc;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    margin-right: .75rem;
}
.ncpro-add-slot:hover {
    background: #bae6fd;
}
.ncpro-time-sep {
    color: #94a3b8;
    font-size: 14px;
}
/* Legacy support */
.ncpro-time-24 {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}
.ncpro-time-24 select {
    width: auto;
    min-width: 75px;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}
.ncpro-time-24 select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59,130,246,.15);
}
.ncpro-hours-check {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    margin-left: 8px;
}
.ncpro-hours-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #3b82f6;
}

/* Horarios - Responsive */
@media (max-width: 600px) {
    .ncpro-hours-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
    }
    .ncpro-hour-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    .ncpro-time-slot {
        flex-wrap: wrap;
        gap: 6px;
    }
    .ncpro-time-slot select {
        min-width: 68px;
        padding: 5px 24px 5px 8px;
        font-size: 12px;
    }
    .ncpro-slot-2 {
        width: 100%;
    }
    .ncpro-hour-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
    }
    .ncpro-time-24 {
        flex-wrap: wrap;
        gap: 6px;
    }
    .ncpro-time-24 select {
        min-width: 68px;
        padding: 5px 24px 5px 8px;
        font-size: 12px;
    }
    .ncpro-hours-check {
        font-size: 12px;
        margin-left: 4px;
    }
    .ncpro-day-label {
        font-size: 13px;
    }
}

/* Promociones */
.promo-wrap {
    padding: 0;
}
.promo-status {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 20px 0;
}
.promo-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 13px;
    font-weight: 600;
}
.promo-badge.ok {
    background: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}
.promo-badge.warn {
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
}
/* === Billing Switch === */
.promo-billing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 16px 0;
    padding: 16px;
    border-radius: 12px;
}
.promo-billing-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.promo-billing-label.is-active {
    color: #111827;
    font-weight: 600;
}
.promo-billing-save {
    font-size: 11px;
    background: #dcfce7;
    color: #15803d;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.promo-switch {
    position: relative;
    width: 48px;
    height: 26px;
}
.promo-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.promo-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #e2e8f0;
    border-radius: 26px;
    transition: 0.3s;
}
.promo-switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.promo-switch input:checked + .promo-switch-slider {
    background: #111827;
}
.promo-switch input:checked + .promo-switch-slider:before {
    transform: translateX(22px);
}

/* === Plans Grid === */
.promo-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 24px 0;
}
@media (max-width: 640px) {
    .promo-plans-grid {
        grid-template-columns: 1fr;
    }
}
.promo-plan-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}
.promo-plan-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.promo-plan-card.is-active {
    border-color: #111827;
    background: #f9fafb;
    box-shadow: 0 0 0 3px rgba(17,24,39,.12);
}
.promo-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.promo-plan-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.promo-plan-icon {
    font-size: 28px;
    line-height: 1;
}
.promo-plan-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.promo-plan-price {
    margin-bottom: 16px;
}
.promo-price-amount {
    font-weight: 700;
    font-size: 28px;
    color: #111827;
}
.promo-price-period {
    font-size: 14px;
    color: #6b7280;
    margin-left: 4px;
}
.promo-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.promo-plan-features li {
    font-size: 14px;
    color: #4b5563;
    padding: 6px 0;
}
.promo-plan-features li:last-child {
    border-bottom: none;
}
.promo-plan-features li strong {
    color: #111827;
}

/* Upgrade states */
.promo-upgrade-msg {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #1e40af;
}
.promo-upgrade-msg p {
    margin: 0;
}
.promo-upgrade-msg.promo-max-plan {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #86efac;
    color: #166534;
    text-align: center;
    padding: 32px 24px;
}
.promo-max-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.promo-upgrade-msg.promo-max-plan h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #15803d;
}
.promo-upgrade-msg.promo-max-plan p {
    font-size: 15px;
}

/* Plan actual (no seleccionable para downgrade) */
.promo-plan-card.current-plan {
    border-color: #9ca3af;
    background: #f3f4f6;
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}
.promo-plan-card.current-plan::after {
    content: 'Plan actual';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #6b7280;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan disponible para upgrade */
.promo-plan-card.upgrade-available {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}
.promo-plan-card.upgrade-available:hover {
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(16,185,129,.15);
}
.promo-plan-card.upgrade-available .promo-plan-badge {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

/* Legacy - keep for compatibility */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 0 0 20px 0;
}
.promo-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
}
.promo-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.promo-card.is-active {
    border-color: #111827;
    background: #f9fafb;
    box-shadow: 0 0 0 3px rgba(17,24,39,.1);
}
.promo-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}
.promo-price {
    font-weight: 700;
    font-size: 24px;
    color: #111827;
    margin: 4px 0;
}
.promo-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.promo-help {
    margin: 12px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE - TODOS LOS SHORTCODES
   ============================================ */

@media (max-width: 880px) {
    .acc-layout,
    .yb-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .acc-greeting {
        font-size: 24px;
    }
    .acc-layout > .nc-sidebar,
    .yb-sidebar-wrap,
    .ncpm-sidebar-wrap {
        position: static;
        order: 1;
    }
    .acc-main,
    .yb-main {
        order: 2;
    }
    .acc-hero h2 {
        font-size: 24px;
    }
    .acc-hero .content {
        padding: 24px;
    }
    .acc-hero-link {
        right: 24px;
        bottom: 24px;
        font-size: 13px;
        padding: 8px 14px;
    }
    .ncpro-map-sticky {
        position: static;
    }
    .ncpro-actions {
        position: sticky;
        bottom: 0;
        z-index: 2;
        box-shadow: 0 -2px 10px rgba(0,0,0,.1);
        padding: 16px 20px;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
    }
    .ncpro-actions .ncpro-btn {
        width: 100%;
    }
    
    /* Ocultar sidebars desktop, mostrar navegación móvil */
    .yb-sidebar-wrap,
    .ncpm-sidebar-wrap {
        display: none !important;
    }
    .yb-mobile-header,
    .ncpm-mobile-header {
        display: flex !important;
    }
    .yb-mobile-tabs,
    .ncpm-mobile-tabs {
        display: block !important;
    }
}

/* ============================================
   NAVEGACIÓN MÓVIL - Editor
   ============================================ */

/* Header móvil con hamburguesa */
.yb-mobile-header {
    display: none; /* Solo visible en móvil via media query */
    align-items: center;
    gap: 12px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 16px 0;
    position: sticky;
    top: 0;
    z-index: 20;
    grid-column: 1 / -1;
}
.yb-mobile-hamburger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}
.yb-mobile-hamburger:hover {
    background: #e5e7eb;
}
.yb-mobile-hamburger svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
.yb-mobile-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tabs móviles horizontales */
.yb-mobile-tabs {
    display: none; /* Solo visible en móvil via media query */
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 26px 0;
    grid-column: 1 / -1;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.yb-tabs-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
    max-width: 100%;
    width: 100%;
    min-width: 0;
}
.yb-tabs-scroll::-webkit-scrollbar {
    display: none;
}
.yb-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    min-width: 52px;
    max-width: 72px;
    height: 52px;
    background: #f9fafb;
    border: none;
    border-radius: 3px;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.yb-tab:hover {
    background: #f0f0f0;
}
.yb-tab.is-active {
    background: #f0f0f0;
}
.yb-tab svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}
.yb-tab-alert {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Drawer lateral (menú principal) */
.yb-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.yb-drawer-overlay.is-open {
    display: block;
    opacity: 1;
}
.yb-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.yb-drawer.is-open {
    transform: translateX(0);
}
.yb-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}
.yb-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.yb-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
}
.yb-drawer-close:hover {
    background: #e5e7eb;
    color: #374151;
}
.yb-drawer-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
.yb-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}
.yb-drawer-nav .nc-sidebar {
    background: transparent;
}
.yb-drawer-nav .nc-sidebar-item {
    border-radius: 8px;
    margin-bottom: 2px;
}
.yb-drawer-nav .nc-sidebar-back {
    margin-bottom: 16px;
}

/* Estilos para drawer global (reutilizado en account, notifications, soporte) */
.ncpm-mobile-header {
    display: none; /* Solo visible en móvil via media query */
    align-items: center;
    gap: 12px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 16px 0;
    position: sticky;
    top: 0;
    z-index: 20;
    grid-column: 1 / -1;
}
.ncpm-mobile-hamburger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}
.ncpm-mobile-hamburger:hover {
    background: #e5e7eb;
}
.ncpm-mobile-hamburger svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
.ncpm-mobile-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
}

/* Tabs móviles para secciones con pestañas propias */
.ncpm-mobile-tabs {
    display: none; /* Solo visible en móvil via media query */
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 12px;
    grid-column: 1 / -1;
}
.ncpm-tabs-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0;
}
.ncpm-tabs-scroll::-webkit-scrollbar {
    display: none;
}
.ncpm-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1 1 auto;
    min-width: 52px;
    max-width: 72px;
    height: 52px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ncpm-tab:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}
.ncpm-tab.is-active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}
.ncpm-tab svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}
.ncpm-tab-alert {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Drawer lateral global */
.ncpm-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.ncpm-drawer-overlay.is-open {
    display: block;
    opacity: 1;
}
.ncpm-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.ncpm-drawer.is-open {
    transform: translateX(0);
}
.ncpm-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}
.ncpm-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.ncpm-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
}
.ncpm-drawer-close:hover {
    background: #e5e7eb;
    color: #374151;
}
.ncpm-drawer-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
.ncpm-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}
.ncpm-drawer-nav .nc-sidebar {
    background: transparent;
}
.ncpm-drawer-nav .nc-sidebar-item {
    border-radius: 8px;
    margin-bottom: 2px;
}
.ncpm-drawer-nav .nc-sidebar-back {
    margin-bottom: 16px;
}

@media (max-width: 640px) {
    .claim-container {
        padding: 24px 16px;
    }
    .claim-header h2 {
        font-size: 24px;
    }
    .ncpro-wizard-container {
        padding: 24px 16px;
    }
    .ncpro-wizard-screen h1 {
        font-size: 24px;
    }
}

.nc-notification {
    display: none !important;
}

/* ============================================
   DESTACADOS EN LISTADOS
   ============================================ */

/* Wrapper de destacados */
.nc-pro-featured-wrapper {
    margin-bottom: 32px;
}

/* Contenedor de cada destacado - diseño sutil */
.nc-pro-featured {
    /*position: relative;
    background: var(--ncpro-featured-bg);
    border: 1px solid var(--ncpro-featured-border);
    border-radius: 8px;
    padding: 20px 24px 8px 24px;
    margin-bottom: 24px;*/
}

/* Badge "Destacado" - estilo inline sutil (como verificado) */
.nc-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 15px;
    color: #1976d2;
    margin-bottom: 8px;
}

.nc-pro-badge::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='%231976d2'%3E%3Cpath d='M8 1.25A6.75 6.75 0 1 0 14.75 8 6.757 6.757 0 0 0 8 1.25Zm3.406 5.48-3.6 3.6a.75.75 0 0 1-1.06 0L5.099 8.684a.75.75 0 0 1 1.06-1.06l1.117 1.115 3.07-3.07a.75.75 0 0 1 1.06 1.061Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Badge especial para Superdestacado */
.nc-pro-badge-super {
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    color: #1a73e8;
}

.nc-pro-badge-super::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a73e8'%3E%3Cpath d='M12 17.3L4.2 21l1.5-8.7L.3 8.7l8.8-1.3L12 0l2.9 7.4 8.8 1.3-6.4 6.3L19.8 21Z'/%3E%3C/svg%3E");
}

/* Quitar border-bottom de la ficha cuando es destacada */
.nc-pro-featured .nc-ficha-completa {
}

/* Ajustes para el contenido dentro del destacado */
.nc-pro-featured .wp-block-columns {
    margin-top: 0;
    margin-bottom: 0;
    }

/* Responsive */
@media (max-width: 768px) {
   
    
    .nc-pro-badge {
        font-size: 13px;
    }
    
    .nc-pro-badge::before {
        width: 12px;
        height: 12px;
    }
}
    
.ncpm-card.ncpm-empty-state {
    background: #fef9e7;
    border-bottom: none;
    padding: 16px;
    font-size: 15px !important;
    border-radius: 4px !important;
}

.ncpm-card.ncpm-empty-state p {
    font-size: 15px !important;
    color: #2d2e2f !important;
}

.nc-dash {
    padding: 0 2rem !important;
}

.ncpro-hour-controls select {
    padding: 6px 28px 6px 10px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
}

/* ============================================
   FILTROS DE NOTIFICACIONES
   ============================================ */
.ncpro-filter-bar-notif {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ncpro-filter-bar-notif .ncpro-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: rgba(45, 46, 47, 1);
    white-space: nowrap;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s;
    line-height: 16px;
}

.ncpro-filter-bar-notif .ncpro-filter-btn:hover {
    background: #f8f8f8;
}

.ncpro-filter-bar-notif .ncpro-filter-btn.is-active {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.ncpro-filter-bar-notif .ncpro-filter-btn span {
    opacity: 0.7;
}

/* ============================================
   CLAIM STATUS BADGE & TOOLTIP
   (Migrado desde ShortcodeManager inline)
   ============================================ */
.ncpro-claim-wrapper {
    display: inline-flex;
    align-items: center;
}
.ncpro-claim-status {
    position: relative;
    display: flex;
}

.ncpro-claim-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.ncpro-claim-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ncpro-claim-badge.claimed {
    color: rgb(26, 109, 195);
}

.ncpro-claim-badge.claimed svg {
    fill: rgb(26, 109, 195);
}

.ncpro-claim-badge.unclaimed {
    color: rgb(107, 109, 111);
}

.ncpro-claim-badge.unclaimed svg {
    stroke: rgb(107, 109, 111);
}

.ncpro-claim-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    transform: none;
    width: 320px;
    max-width: 90vw;
    padding: 12px 14px;
    background: #2d2e2f;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    z-index: 9999;
    pointer-events: none;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Puente invisible para mantener hover al mover mouse hacia el tooltip */
.ncpro-claim-tooltip::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.ncpro-claim-status:hover .ncpro-claim-tooltip,
.ncpro-claim-status:focus-within .ncpro-claim-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ncpro-claim-tooltip-content p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.ncpro-claim-tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #2d2e2f;
    transform: rotate(45deg);
}

/* Mobile tooltip */
@media (max-width: 600px) {
    .ncpro-claim-tooltip {
        width: 280px;
        left: -10px;
        padding: 10px 12px;
        font-size: 13px;
    }
    .ncpro-claim-tooltip-arrow {
        left: 16px;
    }
}

.ncpro-claim-tooltip-btn {
    display: inline;
    color: #0183e4;
    font-weight: 600;
    text-decoration: none;
}

.ncpro-claim-tooltip-btn:hover {
    text-decoration: underline;
}

.ncpro-claim-separator {
    display: inline-block;
    color: #fff;
    margin-left: 4px;
    margin-right: 4px;
}
.ncpro-claim-separator::after {
    content: '\00a0\2022\00a0';
    color: inherit;
    font-size: inherit;
}

/* Badge Destacado */
.ncpro-claim-badge.featured {
    color: rgb(26, 109, 195);
}

/* Link de categoría */
.ncpro-claim-category {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
}
.ncpro-claim-category:hover {
    text-decoration: underline;
}

.ncpro-claim-badge.featured svg {
    fill: rgb(26, 109, 195);
}


/* Badge Promocionar (para dueño del negocio) */
.ncpro-promote-wrapper {
    position: relative;
    display: inline-flex;
}
.ncpro-promote-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #f59e0b;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 4px 10px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.ncpro-promote-badge:hover {
    color: #d97706;
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
}
.ncpro-promote-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.ncpro-promote-tooltip {
    left: 50%;
    transform: translateX(-50%);
}
.listing-hero .ncpro-promote-badge {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fcd34d;
}
.listing-hero .ncpro-promote-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fde68a;
}

/* En móviles: ocultar tooltip SIEMPRE y usar bottom sheet */
@media (max-width: 600px) {
    .ncpro-claim-tooltip { display: none !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }
}

/* ============================================
   BOTTOM SHEET MODAL (Móvil - estilo Yelp)
   ============================================ */
.ncpro-bottomsheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.ncpro-bottomsheet-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.ncpro-bottomsheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}
.ncpro-bottomsheet.is-active {
    transform: translateY(0);
}

.ncpro-bottomsheet-handle {
    width: 36px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: 12px auto 0;
}

.ncpro-bottomsheet-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
}
.ncpro-bottomsheet-close:hover {
    color: #111827;
}
.ncpro-bottomsheet-close svg {
    width: 24px;
    height: 24px;
}

.ncpro-bottomsheet-content {
    padding: 20px 24px 32px;
}

.ncpro-bottomsheet-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    padding-right: 40px;
}

.ncpro-bottomsheet-text {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 12px;
}

.ncpro-bottomsheet-cta {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 24px;
}

.ncpro-bottomsheet-btn-primary {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--ncpro-primary, #0ea5e9);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}
.ncpro-bottomsheet-btn-primary:hover {
    background: var(--ncpro-primary-hover, #0284c7);
    color: #fff;
    text-decoration: none;
}

.ncpro-bottomsheet-btn-secondary {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}
.ncpro-bottomsheet-btn-secondary:hover {
    background: #f3f4f6;
    text-decoration: none;
}

/* Ocultar en desktop */
@media (min-width: 601px) {
    .ncpro-bottomsheet,
    .ncpro-bottomsheet-overlay {
        display: none !important;
    }
}

/* ============================================
   CLAIM SIDEBAR CARD
   (Migrado desde ShortcodeManager inline)
   ============================================ */
.ncpro-claim-sidebar-card {
    background: #fff;
    border: 1px solid #e2e3e5;
    border-radius: 6px;
    padding: 16px;
    text-align: left;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    transition: opacity 0.2s ease;
}

.ncpro-claim-sidebar-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.ncpro-claim-sidebar-close:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.ncpro-claim-sidebar-close svg {
    width: 100%;
    height: 100%;
}

.ncpro-claim-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.3;
}

.ncpro-claim-sidebar-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px;
    line-height: 1.4;
}

.ncpro-claim-sidebar-chart {
    margin-bottom: 20px !important;
    padding-right: 1rem;
}

.ncpro-claim-sidebar-chart svg {
    width: 100%;
    height: auto;
}

.ncpro-claim-sidebar-btn {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    color: rgba(45, 46, 47, 1);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(200, 201, 202, 1);
    border-radius: 4px;
    transition: all 0.8s;
    transition-property: background-image, background-color, background-position, background-size, border-color, box-shadow, opacity;
    text-align: center;
}

.ncpro-claim-sidebar-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    text-decoration: none !important;        
}

.ncpro-claim-sidebar-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--ncpro-primary, #0ea5e9);
    text-decoration: none;
}

.ncpro-claim-sidebar-link:hover {
    text-decoration: underline;
}

/* ============================================
   SUPER FEATURED SECTION
   (Migrado desde ShortcodeManager inline)
   ============================================ */
.ncpro-featured-section {
    margin: 0 auto;
    padding: 48px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 4rem;
}

.ncpro-featured-title {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ncpro-featured-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .ncpro-featured-section {
        padding: 32px 12px 24px;
    }
    .ncpro-featured-title {
        font-size: 22px;
    }
    .ncpro-featured-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

/* Grilla: 5 por fila (responsive) */
.enlazado-circ-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0;
    margin: 0;
}
@media (max-width: 1200px) {
    .enlazado-circ-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .enlazado-circ-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

    }
    .enlazado-circ {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}
@media (max-width: 640px) {
    .enlazado-circ-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Tarjeta */
.enlazado-circ-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}
.enlazado-circ-card:hover .enlazado-circ-name {
    text-decoration: underline;
}

/* Foto grande rectangular */
.enlazado-circ-photo {
    aspect-ratio: 4/3;
    background: #f5f6f8;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.enlazado-circ-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}
.enlazado-circ-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #9ca3af;
}
.enlazado-circ-photo-placeholder svg {
    width: 40px;
    height: 40px;
}

/* Info */
.enlazado-circ-info {
    padding: 10px 0;
}
.enlazado-circ-name {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #111827;
}

/* Rating con cuadraditos de colores */
.enlazado-circ-rating .rating-div {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
}
.enlazado-circ-rating .rating-box {
    display: inline-flex;
    align-items: center;
    height: 20px;
}
.enlazado-circ-rating .rating-text {
    margin-left: 0;
}

/* Cuadritos con estrella blanca */
.enlazado-circ-rating .sq {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 4px;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: 12px 12px, 100% 100%;
}
/* FULL = azul + estrella */
.enlazado-circ-rating .sq.full {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"), linear-gradient(#7898eb, #7898eb);
}
/* EMPTY = celeste claro + estrella */
.enlazado-circ-rating .sq.empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"), linear-gradient(#d7e0ff, #d7e0ff);
}
/* HALF = mitad azul mitad claro + estrella */
.enlazado-circ-rating .sq.half {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"), linear-gradient(to right, #7898eb 50%, #d7e0ff 50%);
}

/* Texto del rating */
.enlazado-circ-rating .rating-text .rating-n {
    font-weight: 700;
    margin-right: 6px;
    color: #374151;
}
.enlazado-circ-rating .rating-text .rating-n2 {
    color: #666;
    font-size: 0.92em;
}

/* Carrusel en móviles */
@media (max-width: 480px) {
    .enlazado-circ-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px;
    }
    .enlazado-circ-card {
        flex: 0 0 70%;
        scroll-snap-align: start;
    }
    /* Ocultar scrollbar */
    .enlazado-circ-grid::-webkit-scrollbar {
        display: none;
    }
    .enlazado-circ-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ============================================
   SEARCH INPUT WITH ICON (CLAIM)
   ============================================ */
.ncpro-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.ncpro-search-input-wrapper .ncpro-input-with-icon {
    padding-right: 44px !important;
}

.ncpro-search-input-wrapper .ncpro-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* ============================================
   SEARCH COMBO (ALTA - INPUT + BUTTON)
   ============================================ */
.ncpro-search-combo {
    display: flex;
    border: 1px solid #d8d8d8;
    border-radius: var(--ncpro-radius);
    overflow: hidden;
    background: var(--ncpro-bg);
}

.ncpro-search-combo:focus-within {
    border-color: #aaa;
    box-shadow: 0 0 0 3px var(--ncpro-primary-light);
}

.ncpro-search-combo-input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.ncpro-search-combo-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ncpro-search-combo-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--ncpro-primary);
    color: var(--ncpro-btn-text, #fff);
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.ncpro-search-combo-btn:hover {
    background: var(--ncpro-primary-hover);
}

.ncpro-search-combo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ncpro-search-combo-btn svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .ncpro-search-combo {
        flex-direction: column;
    }
    .ncpro-search-combo-input {
        border-bottom: 1px solid #e5e7eb !important;
    }
    .ncpro-search-combo-btn {
        justify-content: center;
        padding: 14px 20px;
    }
}

/* ============================================
   SKELETON LOADERS (Feedback durante bÃºsqueda)
   ============================================ */
.ncpro-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: ncpro-skeleton-shine 1.5s infinite;
    border-radius: var(--ncpro-radius);
}

@keyframes ncpro-skeleton-shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ncpro-skeleton-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: var(--ncpro-radius);
    margin-bottom: 12px;
}

.ncpro-skeleton-photo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.ncpro-skeleton-content {
    flex: 1;
}

.ncpro-skeleton-title {
    height: 18px;
    width: 60%;
    margin-bottom: 10px;
}

.ncpro-skeleton-text {
    height: 14px;
    width: 80%;
    margin-bottom: 8px;
}

.ncpro-skeleton-text-short {
    height: 14px;
    width: 40%;
}

/* ============================================
   SEARCH BUTTON LOADING STATE
   ============================================ */
.ncpro-search-combo-btn.is-loading {
    pointer-events: none;
    opacity: 0.8;
}

.ncpro-search-combo-btn.is-loading svg {
    animation: ncpro-spin 1s linear infinite;
}

@keyframes ncpro-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   SEARCH PROGRESS INDICATOR
   ============================================ */
.ncpro-search-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--ncpro-radius);
    margin-top: 16px;
}

.ncpro-search-progress-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--ncpro-primary);
    border-radius: 50%;
    animation: ncpro-spin 0.8s linear infinite;
}

.ncpro-search-progress-text {
    font-size: 14px;
    color: #64748b;
}

.ncpro-search-progress-step {
    font-weight: 600;
    color: var(--ncpro-primary);
}

/* ============================================
   BADGE PROMINENTE PARA LOCALES
   ============================================ */
.ncpro-local-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgb(217, 246, 253); /* Un poco más oscuro que #e8f4f0 */
    color: rgb(0, 118, 146);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 8px;
}

.ncpro-local-badge svg {
    width: 14px;
    height: 14px;
    stroke: #1a936f;
}

/* Cards locales: mismo estilo que las demás, solo el badge diferencia */

.ncpro-gmaps-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
        background: #f0f0f0;
    color:  rgba(45, 46, 47, 1);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* ============================================
   MOBILE: RESULTADOS COMPACTOS (SIN SWIPE)
   ============================================ */
@media (max-width: 600px) {
    /* Resultados de búsqueda - diseño vertical compacto */
    #ncpro-search-results .ncpro-vcards,
    .ncpro-results-section .ncpro-vcards {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Cards más compactas en mobile */
    #ncpro-search-results .ncpro-vcard,
    .ncpro-results-section .ncpro-vcard {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        min-width: auto;
        flex: none;
    }
    
    /* Foto más pequeña */
    #ncpro-search-results .ncpro-vcard-photo,
    .ncpro-results-section .ncpro-vcard-photo {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    /* Contenido toma el espacio */
    #ncpro-search-results .ncpro-vcard-content,
    .ncpro-results-section .ncpro-vcard-content {
        flex: 1;
        min-width: 0;
    }
    
    /* Título más pequeño pero legible */
    #ncpro-search-results .ncpro-vcard .title,
    .ncpro-results-section .ncpro-vcard .title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Dirección siempre visible pero compacta */
    #ncpro-search-results .ncpro-vcard .meta,
    .ncpro-results-section .ncpro-vcard .meta {
        display: block;
        font-size: 12px;
        color: #6b7280;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Badge local más pequeño */
    #ncpro-search-results .ncpro-local-badge,
    .ncpro-results-section .ncpro-local-badge {
        font-size: 10px;
        padding: 2px 8px;
        margin-bottom: 0;
        margin-top: 4px;
    }
    
    /* Botón de acción compacto a la derecha */
    #ncpro-search-results .ncpro-vcard .actions,
    .ncpro-results-section .ncpro-vcard .actions {
        display: flex !important;
        flex-shrink: 0;
    }
    
    #ncpro-search-results .ncpro-vcard .actions .ncpro-btn,
    .ncpro-results-section .ncpro-vcard .actions .ncpro-btn {
        min-width: auto;
        padding: 8px 14px;
        font-size: 13px;
    }
    
    /* Ocultar radio button en resultados de búsqueda */
    #ncpro-search-results .ncpro-vcard-radio {
        display: none;
    }
    
    /* Secciones con márgenes correctos */
    .ncpro-results-section {
        margin-bottom: 24px;
    }
    
    /* Títulos de sección más compactos */
    .ncpro-results-section .ncpro-vtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.yb-panel.yb-services .ncpro-card {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;

}

/* ============================================
   ACTIVIDAD RECIENTE - Últimos reviews
   ============================================ */
.ncpro-recent-activity {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 0;
    border-top: 1px solid #f0f0f0;
    padding: 60px 20px 10px 20px;
}

.ncpro-activity-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 24px 0;
}

.ncpro-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .ncpro-activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ncpro-activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ncpro-activity-grid {
        grid-template-columns: 1fr;
    }
    .ncpro-recent-activity {
        padding: 24px 12px;
    }
}

.ncpro-activity-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    width: 100%;
    box-sizing: border-box;
}



/* Avatar */
.ncpro-activity-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
}

.ncpro-activity-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ncpro-activity-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #9ca3af;
}

.ncpro-activity-avatar-placeholder svg {
    width: 24px;
    height: 24px;
}

/* Contenido */
.ncpro-activity-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Usuario (nombre + fecha) */
.ncpro-activity-user {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ncpro-activity-author {
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ncpro-activity-time {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
}

/* Rating */
.ncpro-activity-rating {
    display: flex;
    align-items: center;
}

.ncpro-activity-rating .rating-box {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.ncpro-activity-rating .sq {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.ncpro-activity-rating .sq.full {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"), linear-gradient(#e61736, #e61736);
}

.ncpro-activity-rating .sq.empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"), linear-gradient(#f5d0d5, #f5d0d5);
}

.ncpro-activity-rating .sq.half {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"), linear-gradient(to right, #e61736 50%, #f5d0d5 50%);
}

/* Nombre del negocio */
.ncpro-activity-business {
    font-family: Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(45, 46, 47);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    transition: color 0.15s ease;
}

.ncpro-activity-business:hover {
    text-decoration: underline;
}


/* ============================================
   PERFIL DE USUARIO
   ============================================ */

.ncpro-profile-content {
    max-width: 600px;
    position: relative;
}

/* Tabs (Perfil / Seguridad) */
.ncpro-profile-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin: 0 0 18px;
}

.ncpro-profile-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: #334155;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.ncpro-profile-tab:hover {
    background: rgba(15, 23, 42, 0.06);
}

.ncpro-profile-tab.is-active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.ncpro-profile-panel[hidden] {
    display: none !important;
}

.ncpro-profile-section {
    background: #fff;
    margin-bottom: 3rem !important;
}

.ncpro-profile-section h3 {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

/* Avatar */
.ncpro-profile-avatar-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.ncpro-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.ncpro-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncpro-profile-avatar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ncpro-profile-avatar-actions .ncpro-btn-text {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: var(--ncpro-danger);
    cursor: pointer;
    text-align: left;
}

.ncpro-profile-avatar-actions .ncpro-btn-text:hover {
    text-decoration: underline;
}

/* Formularios de perfil */
.ncpro-profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ncpro-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ncpro-form-row label {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.ncpro-form-row input[type="text"],
.ncpro-form-row input[type="email"],
.ncpro-form-row input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ncpro-form-row input:focus {
    outline: none;
    border-color: var(--ncpro-primary, #d32323);
    box-shadow: 0 0 0 3px rgba(211, 35, 35, 0.1);
}

.ncpro-form-row input:disabled {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.ncpro-hint {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.ncpro-form-actions {
    padding-top: 8px;
}

/* Botones */
.ncpro-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    /*font-family: Poppins, sans-serif;*/
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
}
.ncpro-btn::active{
    opacity: .9;
}
.ncpro-btn.primary {
    background: var(--ncpro-primary, #d32323);
    color: var(--ncpro-btn-text, #fff);
}

.ncpro-btn.primary:hover {
    background: var(--ncpro-primary-hover, #b91c1c);
}

.ncpro-btn.primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ncpro-btn-outline {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #374151;
}

.ncpro-btn-outline:hover {
    background: #f8fafc;
    border-color: #9ca3af;
}

.ncpro-btn-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Botón pequeño para banners */
.ncpro-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    border: 1px solid #d97706;
    background: #fff;
    color: #92400e;
}

.ncpro-btn-small:hover {
    background: #fffbeb;
}

.ncpro-btn-small:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Toast */
.ncpro-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ncpro-toast.success {
    background: #10b981;
    color: #fff;
}

.ncpro-toast.error {
    background: #ef4444;
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .ncpro-profile-avatar-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ncpro-profile-avatar-actions {
        align-items: center;
    }
    
    .ncpro-profile-avatar-actions .ncpro-btn-text {
        text-align: center;
    }
}



body.nc-cluster-parent h1 {

    margin-bottom: 1.25rem !important;
}