/* NEWFITNESS Schedule Frontend Styles - Grid Table View */

/* ===== FUENTES PERSONALIZADAS RAW CROSSFIT ===== */
@font-face {
    font-family: 'PantonBlackCaps';
    src: url('./fonts/panton.black-caps-webfont.woff2') format('woff2'),
         url('./fonts/panton.black-caps-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PantonBlackCaps';
    src: url('./fonts/panton.blackitaliccaps-webfont.woff2') format('woff2'),
         url('./fonts/panton.blackitaliccaps-webfont.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IntroRegular';
    src: url('./fonts/introregular-webfont.woff2') format('woff2'),
         url('./fonts/introregular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IntroRegular';
    src: url('./fonts/intro_bold_regular-webfont.woff2') format('woff2'),
         url('./fonts/intro_bold_regular-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PantonLightCaps';
    src: url('./fonts/panton.light-caps-webfont.woff2') format('woff2'),
         url('./fonts/panton.light-caps-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ===== SISTEMA DE TYPOGRAPHY ===== */
/* TÍTULOS - Panton Black con fallbacks robustos */
h1, h2, h3, 
.newfitness-business-label,
.newfitness-schedule-title,
.newfitness-mobile-day-title {
    font-family: 'PantonBlackCaps', 'Impact', 'Arial Black', 'Helvetica', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-display: swap;
}

/* PÁRRAFOS Y CONTENIDO - Intro Regular con fallbacks robustos */
body, p,
.newfitness-class-name,
.newfitness-class-instructor,
.newfitness-modal-class-name,
.newfitness-modal-instructor-name,
.newfitness-schedule-content {
    font-family: 'IntroRegular', 'Helvetica Neue', 'Arial', 'Segoe UI', sans-serif;
    font-weight: 400;
    font-display: swap;
}

/* TÍTULO DINÁMICO DEL NEGOCIO ACTUAL */
.newfitness-current-business-title {
    font-family: 'PantonBlackCaps', 'Impact', 'Arial Black', 'Helvetica', sans-serif;
    font-size: 2.2em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    letter-spacing: 0.1em;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-display: swap;
}

.newfitness-current-business-title.wod {
    color: #000;
 
}

.newfitness-current-business-title.open {
    color: #000;
   
}

/* FALLBACKS ESPECÍFICOS PARA MÓVILES */
@media (max-width: 768px) {
    .newfitness-current-business-title {
        font-family: 'PantonBlackCaps', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Impact', sans-serif;
        font-size: 1.8em;
    }
    
    .newfitness-business-label {
        font-family: 'PantonBlackCaps', -apple-system, BlinkMacSystemFont, 'Impact', sans-serif;
    }
    
    .newfitness-class-name,
    .newfitness-mobile-class-name {
        font-family: 'IntroRegular', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    }
}

:root {
    --newfitness-primary: #31B4C0;
    --newfitness-text: #2c3e50;
    --newfitness-border: #e1e8ed;
    --newfitness-bg: #f8f9fa;
    --newfitness-white: #ffffff;
    --newfitness-shadow: rgba(0, 0, 0, 0.1);
    --newfitness-radius: 12px;
}

/* Container Principal */
.newfitness-schedule-grid-container {
    max-width: 100%;
    width: 100%; /* Forzar width completo */
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--newfitness-white);
    border-radius: var(--newfitness-radius);
    overflow: visible; /* Cambiar de hidden a visible para sticky headers */
    box-shadow: 0 4px 20px var(--newfitness-shadow);
    border: 1px solid var(--newfitness-border);
    box-sizing: border-box;
    position: relative; /* Asegurar contexto de stacking */
}

/* Grid Principal - Desktop */
.newfitness-schedule-grid {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    background: var(--newfitness-white);
    font-size: 13px;
    line-height: 1.2;
    position: relative; /* Contexto para sticky positioning */
}

.newfitness-grid-header {
    display: contents;
    font-weight: 700;
}

.newfitness-time-header {
    background: var(--newfitness-bg);
    padding: 15px 8px;
    border-right: 2px solid var(--newfitness-border);
    border-bottom: 2px solid var(--newfitness-border);
    text-align: center;
    font-weight: 700;
    color: var(--newfitness-text);
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newfitness-day-header {
    background: var(--newfitness-primary);
    color: var(--newfitness-white);
    padding: 15px 8px;
    text-align: center;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid var(--newfitness-border);
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newfitness-day-header:last-child {
    border-right: none;
}

.newfitness-day-short {
    display: none;
}

/* Filas */
.newfitness-grid-row {
    display: contents;
}

.newfitness-time-cell {
    background: var(--newfitness-bg);
    padding: 8px;
    border-right: 2px solid var(--newfitness-border);
    border-bottom: 1px solid var(--newfitness-border);
    text-align: center;
    font-weight: 600;
    color: var(--newfitness-text);
    font-size: 11px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newfitness-day-cell {
    border-right: 1px solid var(--newfitness-border);
    border-bottom: 1px solid var(--newfitness-border);
    padding: 2px;
    min-height: 40px;
    background: var(--newfitness-white);
    position: relative;
}

.newfitness-day-cell:last-child {
    border-right: none;
}

.newfitness-empty-cell {
    width: 100%;
    height: 100%;
    min-height: 36px;
}

/* Bloques de Clase */
.newfitness-class-block {
    width: 100%;
    height: 100%;
    min-height: 36px;
    padding: 4px 6px;
    border-radius: 4px;
    color: var(--newfitness-white);
    text-align: center;
    font-weight: 600;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	box-sizing:border-box;
}

/* Estilo especial para C.VIRTUAL - fondo blanco con borde turquesa */
.newfitness-class-block[data-class*="C.VIRTUAL"] {
    background-color: white !important;
    border: 2px solid #31B4C0 !important;
    color: #31B4C0 !important;
    text-shadow: none !important;
}

.newfitness-class-block:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.newfitness-class-name {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.newfitness-class-instructor {
    font-size: 8px;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1;
}

/* Mobile Day Selector */
.newfitness-mobile-day-selector {
    display: none;
    background: #31B4C0 !important; /* Forzar color turquesa NEWFITNESS */
    padding: 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.newfitness-mobile-day-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--newfitness-white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 35px;
}

.newfitness-mobile-day-btn.active,
.newfitness-mobile-day-btn:hover {
    background: var(--newfitness-white) !important;
    color: #31B4C0 !important; /* Forzar color turquesa NEWFITNESS */
    transform: translateY(-1px);
}

/* Mobile Schedule */
.newfitness-mobile-schedule {
    display: none;
}

.newfitness-mobile-day {
    display: none;
    padding: 15px 10px; /* Menos padding lateral */
}

.newfitness-mobile-day.active {
    display: block;
}

.newfitness-mobile-day-title {
    color: var(--newfitness-primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

/* Mobile Grid con columna de horas */
.newfitness-mobile-classes-grid {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 8px;
    align-items: start;
    width: 100%; /* Asegurar width completo */
    max-width: 100%; /* Evitar overflow */
}

.newfitness-mobile-time-cell {
    background: var(--newfitness-bg);
    padding: 12px 6px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    color: var(--newfitness-text);
    font-size: 11px;
    border: 1px solid var(--newfitness-border);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 10px;
    width: 100%; /* Forzar width completo */
    box-sizing: border-box;
}

.newfitness-mobile-class {
    margin: 0;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--newfitness-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%; /* Forzar width completo */
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newfitness-mobile-class:hover {
    transform: scale(1.02);
}

/* Estilo especial para C.VIRTUAL móvil */
.newfitness-mobile-class[data-class*="C.VIRTUAL"] {
    background: white !important;
    border: 2px solid #31B4C0 !important;
    color: #31B4C0 !important;
    text-shadow: none !important;
}

.newfitness-mobile-class-time {
    display: none; /* Ya no mostramos la hora dentro de la tarjeta */
}

.newfitness-mobile-class-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newfitness-mobile-class-instructor {
    font-size: 11px;
    opacity: 0.8;
}

.newfitness-no-classes {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* Color de presets para el admin */
.color-picker-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.color-presets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-preset {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-preset:hover {
    transform: scale(1.1);
    border-color: #999;
}
.newfitness-day-full {
	font-family:'IntroRegular', sans-serif;
	text-transform:uppercase;
}
.color-preset[data-color="#31B4C0"] { background-color: #31B4C0; }
.color-preset[data-color="#D4AC0D"] { background-color: #D4AC0D; }
.color-preset[data-color="#8B4513"] { background-color: #8B4513; }
.color-preset[data-color="#654321"] { background-color: #654321; }
.color-preset[data-color="#2E86AB"] { background-color: #2E86AB; }
.color-preset[data-color="#C0392B"] { background-color: #C0392B; }
.color-preset[data-color="#16A085"] { background-color: #16A085; }

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .newfitness-schedule-grid {
        grid-template-columns: 70px repeat(7, 1fr);
        font-size: 12px;
    }
    
    .newfitness-time-header,
    .newfitness-day-header {
        padding: 12px 6px;
        font-size: 11px;
    }
    
    .newfitness-time-cell {
        padding: 6px;
        font-size: 10px;
    }
    
    .newfitness-class-name {
        font-size: 8px;
    }
    
    .newfitness-class-instructor {
        font-size: 7px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .newfitness-schedule-grid {
        display: none;
    }
    
    .newfitness-mobile-day-selector {
        display: flex;
    }
    
    .newfitness-mobile-schedule {
        display: block; /* Cambiar de flex a block para no interferir con grid interno */
    }
    
    .newfitness-mobile-day-selector {
        flex-direction: row;
    }
    
    .newfitness-day-short {
        display: inline;
    }
    
    .newfitness-day-full {
        display: none;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .newfitness-mobile-day-btn {
        padding: 10px 8px;
        min-width: 30px;
        font-size: 11px;
    }
    
    .newfitness-mobile-day {
        padding: 15px 8px; /* Menos padding en pantallas pequeñas */
    }
    
    .newfitness-mobile-classes-grid {
        grid-template-columns: 55px 1fr;
        gap: 6px;
        width: 100%;
    }
    
    .newfitness-mobile-time-cell {
        padding: 10px 4px;
        font-size: 10px;
        min-height: 40px;
    }
    
    .newfitness-mobile-class {
        padding: 10px 12px;
        min-height: 40px;
    }
    
    .newfitness-mobile-class-name {
        font-size: 13px;
    }
    
    .newfitness-mobile-class-instructor {
        font-size: 10px;
    }
}

/* Desktop Large */
@media (min-width: 1200px) {
    .newfitness-schedule-grid {
        grid-template-columns: 90px repeat(7, 1fr);
        font-size: 14px;
    }
    
    .newfitness-time-header,
    .newfitness-day-header {
        padding: 18px 10px;
        font-size: 13px;
    }
    
    .newfitness-time-cell {
        padding: 10px;
        font-size: 12px;
    }
    
    .newfitness-class-block {
        min-height: 44px;
        padding: 6px 8px;
    }
    
    .newfitness-class-name {
        font-size: 10px;
    }
    
    .newfitness-class-instructor {
        font-size: 9px;
    }
}

/* No Schedule Message */
.newfitness-no-schedule {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    font-style: italic;
}

/* Focus y accesibilidad */
.newfitness-class-block:focus,
.newfitness-mobile-day-btn:focus {
    outline: 3px solid var(--newfitness-primary);
    outline-offset: 2px;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.newfitness-mobile-day.active {
    animation: fadeIn 0.3s ease;
}

/* Print styles */
@media print {
    .newfitness-mobile-day-selector {
        display: none !important;
    }
    
    .newfitness-mobile-schedule .newfitness-mobile-day {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .newfitness-schedule-grid-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Modal profesional para clases */
.newfitness-class-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newfitness-class-modal.active {
    opacity: 1;
    visibility: visible;
}

.newfitness-class-modal-content {
    background: var(--newfitness-white);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease;
}

.newfitness-class-modal.active .newfitness-class-modal-content {
    transform: scale(1) translateY(0);
}

.newfitness-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.newfitness-modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

.newfitness-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.newfitness-modal-class-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--newfitness-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newfitness-modal-class-time {
    font-size: 16px;
    color: var(--newfitness-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.newfitness-modal-class-duration {
    font-size: 14px;
    color: #666;
    background: var(--newfitness-bg);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

.newfitness-modal-body {
    text-align: center;
}

.newfitness-modal-instructor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--newfitness-bg);
    border-radius: 12px;
}

.newfitness-modal-instructor-icon {
    font-size: 20px;
    color: var(--newfitness-primary);
}

.newfitness-modal-instructor-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--newfitness-text);
}

.newfitness-modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.newfitness-modal-info-item {
    background: var(--newfitness-white);
    border: 1px solid var(--newfitness-border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.newfitness-modal-info-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.newfitness-modal-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--newfitness-text);
}

.newfitness-modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--newfitness-border);
}

.newfitness-modal-action-btn {
    background: var(--newfitness-primary);
    color: var(--newfitness-white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.newfitness-modal-action-btn:hover {
    background: #4a5230;
    transform: translateY(-1px);
}

.newfitness-modal-action-btn.secondary {
    background: #f8f9fa;
    color: var(--newfitness-text);
    border: 1px solid var(--newfitness-border);
}

.newfitness-modal-action-btn.secondary:hover {
    background: #e9ecef;
}

/* Mobile modal adjustments */
@media (max-width: 480px) {
    .newfitness-class-modal-content {
        padding: 20px;
        max-width: 95%;
        border-radius: 12px;
    }
    
    .newfitness-modal-class-name {
        font-size: 18px;
    }
    
    .newfitness-modal-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .newfitness-modal-action-btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* Hover states para desktop */
@media (hover: hover) {
    .newfitness-class-block:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

/* ===== NUEVO: SELECTOR MULTI-NEGOCIO ===== */
.newfitness-multi-schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.newfitness-business-selector {
    margin-bottom: 30px;
    text-align: center;
}

.newfitness-business-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.newfitness-business-btn {
    background: #ffffff;
    border: none; /* SIN BORDES */
    border-radius: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
	width:300px;
    text-align: center;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* SOMBRA GRIS BASE */
    
    /* CENTRADO PERFECTO EN DESKTOP */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newfitness-business-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* SOMBRA HOVER */
}

.newfitness-business-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* SOMBRA ACTIVO */
}

.newfitness-business-btn.newfitness-business-colectivas {
    /* Sin borde, solo sombra */
}

.newfitness-business-btn.newfitness-business-colectivas.active {
    background: #ffffff;
    color: #e74c3c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* SOMBRA GRIS ESTÁNDAR */
}

.newfitness-business-btn.newfitness-business-ciclo {
    /* Sin borde, solo sombra */
}

.newfitness-business-btn.newfitness-business-ciclo.active {
    background: #ffffff;
    color: #007cba;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* SOMBRA GRIS ESTÁNDAR */
}

/* Iconos personalizados - DESKTOP Y MÓVIL */
.newfitness-business-icon {
    width: 90px; /* ICONOS MÁS GRANDES */
    height: 90px; /* ICONOS MÁS GRANDES */
    margin-bottom: 15px; /* Más espacio */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.newfitness-business-btn.newfitness-business-colectivas .newfitness-business-icon {
    background-image: url('./images/clases-colectivas.jpg');
}

.newfitness-business-btn.newfitness-business-ciclo .newfitness-business-icon {
    background-image: url('./images/ciclo.jpg');
}

.newfitness-business-label {
    font-size: 1.4em; /* Texto un poco más grande */
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
    color: #333; /* Color base */
}

.newfitness-business-desc {
    font-size: 0.9em;
    opacity: 0.8;
    font-weight: 400;
}

.newfitness-business-btn.active .newfitness-business-desc {
    opacity: 0.9;
}

/* Loading indicator */
.newfitness-loading-indicator {
    text-align: center;
    padding: 40px;
    color: #666;
}

.newfitness-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: rawSpin 1s linear infinite;
    display: inline-block;
    margin-bottom: 15px;
}

@keyframes rawSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive para selector multi-negocio */
@media (max-width: 768px) {
    .newfitness-multi-schedule-container {
        padding: 15px;
    }
    
    .newfitness-business-options {
        display: flex;
        flex-direction: row; /* CAMBIADO: Ahora horizontal en móvil */
        gap: 15px;
        justify-content: space-between;
        align-items: stretch;
    }
    
    .newfitness-business-btn {
        flex: 1; /* Ambos botones ocupan el mismo espacio */
        min-width: 0; /* Resetear min-width */
        max-width: none;
        padding: 25px 15px;
        background: #ffffff;
        border: none; /* SIN BORDES EN MÓVIL */
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* SOMBRA BASE MÓVIL */
        transition: all 0.3s ease;
    }
    
    .newfitness-business-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Estados activos MÓVIL - Sombras grises estándar */
    .newfitness-business-btn.newfitness-business-colectivas.active {
        background: #ffffff;
        color: #e74c3c;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* SOMBRA GRIS */
    }
    
    .newfitness-business-btn.newfitness-business-ciclo.active {
        background: #ffffff;
        color: #007cba;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* SOMBRA GRIS */
    }
    
    /* Iconos más grandes en móvil también */
    .newfitness-business-icon {
        width: 50px; /* Grande pero proporcional en móvil */
        height: 50px;
        margin-bottom: 12px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .newfitness-business-btn.newfitness-business-colectivas .newfitness-business-icon {
        background-image: url('./images/clases-colectivas.jpg');
    }
    
    .newfitness-business-btn.newfitness-business-ciclo .newfitness-business-icon {
        background-image: url('./images/ciclo.jpg');
    }
    
    /* Labels minimalistas móvil */
    .newfitness-business-label {
        font-size: 1.2em; /* Proporcional para móvil */
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.2;
        color: #333;
    }
    
    .newfitness-business-btn.newfitness-business-colectivas.active .newfitness-business-label {
        color: #e74c3c;
    }
    
    .newfitness-business-btn.newfitness-business-ciclo.active .newfitness-business-label {
        color: #007cba;
    }
    
    /* Ocultar descripción en móvil */
    .newfitness-business-desc {
        display: none;
    }
}