[x-cloak] { display: none !important; }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
        .dark ::-webkit-scrollbar-thumb { background: #334155; }

        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .dark .glass {
            background: rgba(15, 23, 42, 0.7);
        }

        .card-shadow {
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
        }
        .dark .card-shadow {
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.3);
        }

        @keyframes slide-in {
            from { transform: translateY(10px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .animate-slide-in { animation: slide-in 0.3s ease-out forwards; }

        /* Status Pulse */
        .pulse-emerald { animation: pulse-emerald 2s infinite; }
        @keyframes pulse-emerald {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }
        .custom-scrollbar::-webkit-scrollbar {
            width: 4px;
            height: 4px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: transparent;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #e2e8f0;
            border-radius: 10px;
        }
        .dark .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #334155;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #cbd5e1;
        }

        /* Material Symbols — requerido para que los iconos rendericen */
        .material-symbols-outlined {
            font-family: 'Material Symbols Outlined', sans-serif;
            font-weight: normal;
            font-style: normal;
            font-size: inherit;
            line-height: 1;
            letter-spacing: normal;
            text-transform: none;
            display: inline-block;
            white-space: nowrap;
            word-wrap: normal;
            direction: ltr;
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            -webkit-font-feature-settings: 'liga';
            font-feature-settings: 'liga';
            -webkit-font-smoothing: antialiased;
        }

        /* Oculto accesible (sin depender de Tailwind sr-only) */
        .mm-sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Selector Velero / Lancha — tarjetas clicables */
        .mm-familia-option:has(input:checked),
        .mm-familia-option.is-selected {
            border-color: #0ea5e9 !important;
            background-color: rgb(240 249 255 / 0.95) !important;
            box-shadow: 0 4px 14px -4px rgb(14 165 233 / 0.25);
        }
        .dark .mm-familia-option:has(input:checked),
        .dark .mm-familia-option.is-selected {
            border-color: #38bdf8 !important;
            background-color: rgb(8 47 73 / 0.45) !important;
        }
        .mm-familia-option:has(input:checked) .icon-box,
        .mm-familia-option.is-selected .icon-box {
            background-color: #0284c7 !important;
        }
        .mm-familia-option:has(input:checked) .selection-dot,
        .mm-familia-option.is-selected .selection-dot {
            border-color: #0284c7;
            background-color: #0284c7;
        }
        .mm-familia-option .check-icon {
            opacity: 0;
            transition: opacity 0.15s ease;
        }
        .mm-familia-option:has(input:checked) .check-icon,
        .mm-familia-option.is-selected .check-icon {
            opacity: 1;
        }

        /* Formulario servicios — ficha Stripe */
        .mm-svc-sheet {
            overflow: hidden;
            border-radius: 1rem;
            border: 1px solid rgb(226 232 240);
            background: #fff;
            box-shadow: 0 1px 3px rgb(15 23 42 / 0.06), 0 8px 24px -12px rgb(15 23 42 / 0.12);
        }
        .dark .mm-svc-sheet {
            border-color: rgb(51 65 85);
            background: rgb(15 23 42);
            box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
        }
        .mm-svc-section {
            padding: 1.125rem 1.25rem;
        }
        .mm-svc-section + .mm-svc-section {
            border-top: 1px solid rgb(241 245 249);
        }
        .dark .mm-svc-section + .mm-svc-section {
            border-top-color: rgb(30 41 59);
        }
        .mm-svc-section-title {
            margin-bottom: 0.875rem;
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgb(100 116 139);
        }
        .dark .mm-svc-section-title {
            color: rgb(148 163 184);
        }
        .mm-svc-row {
            display: grid;
            gap: 0.375rem 1rem;
            padding: 0.625rem 0;
        }
        .mm-svc-row + .mm-svc-row {
            border-top: 1px solid rgb(248 250 252);
        }
        .dark .mm-svc-row + .mm-svc-row {
            border-top-color: rgb(30 41 59 / 0.6);
        }
        @media (min-width: 640px) {
            .mm-svc-row {
                grid-template-columns: 10.5rem minmax(0, 1fr);
                align-items: center;
                padding: 0.7rem 0;
            }
            .mm-svc-row--stack {
                grid-template-columns: 1fr;
                align-items: start;
            }
        }
        .mm-svc-label {
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.35;
            color: rgb(51 65 85);
        }
        .dark .mm-svc-label {
            color: rgb(203 213 225);
        }
        .mm-svc-label span {
            color: rgb(244 63 94);
        }
        .mm-svc-control {
            min-width: 0;
        }
        .mm-svc-input {
            width: 100%;
            border-radius: 0.5rem;
            border: 1px solid rgb(226 232 240);
            background: rgb(248 250 252 / 0.5);
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            line-height: 1.4;
            color: rgb(15 23 42);
            outline: none;
            transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
        }
        .mm-svc-input:focus {
            border-color: rgb(56 189 248);
            background: #fff;
            box-shadow: 0 0 0 3px rgb(14 165 233 / 0.15);
        }
        .dark .mm-svc-input {
            border-color: rgb(51 65 85);
            background: rgb(30 41 59 / 0.5);
            color: rgb(241 245 249);
        }
        .dark .mm-svc-input:focus {
            border-color: rgb(56 189 248);
            background: rgb(30 41 59);
            box-shadow: 0 0 0 3px rgb(14 165 233 / 0.2);
        }
        .mm-svc-input--money {
            max-width: 8.5rem;
            padding-left: 1.75rem;
            font-family: ui-monospace, monospace;
            font-variant-numeric: tabular-nums;
        }
        .mm-svc-input--personas {
            max-width: 5rem;
            text-align: center;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }
        .mm-segment {
            display: inline-flex;
            width: 100%;
            max-width: 14rem;
            padding: 2px;
            border-radius: 0.5rem;
            border: 1px solid rgb(226 232 240);
            background: rgb(241 245 249);
        }
        .dark .mm-segment {
            border-color: rgb(51 65 85);
            background: rgb(30 41 59);
        }
        .mm-segment label {
            flex: 1 1 0;
            min-width: 0;
            cursor: pointer;
            border-radius: 0.375rem;
            padding: 0.4375rem 0.75rem;
            text-align: center;
            font-size: 0.8125rem;
            font-weight: 600;
            line-height: 1.2;
            color: rgb(100 116 139);
            transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
        }
        .dark .mm-segment label {
            color: rgb(148 163 184);
        }
        .mm-segment label:has(input:checked) {
            background: #fff;
            color: #0369a1;
            box-shadow: 0 1px 2px rgb(15 23 42 / 0.08);
        }
        .dark .mm-segment label:has(input:checked) {
            background: rgb(51 65 85);
            color: #7dd3fc;
        }
        .mm-segment--wide {
            max-width: 18rem;
        }
        .mm-svc-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.25rem;
            border-top: 1px solid rgb(241 245 249);
            background: rgb(248 250 252 / 0.65);
        }
        .dark .mm-svc-actions {
            border-top-color: rgb(30 41 59);
            background: rgb(15 23 42 / 0.85);
        }
        .mm-svc-toggle {
            position: relative;
            display: inline-flex;
            height: 1.375rem;
            width: 2.375rem;
            shrink: 0;
            cursor: pointer;
            align-items: center;
            border-radius: 9999px;
            background: rgb(203 213 225);
            transition: background 0.2s;
        }
        .mm-svc-toggle:has(input:checked) {
            background: #0ea5e9;
        }
        .mm-svc-toggle input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .mm-svc-toggle-knob {
            pointer-events: none;
            margin-left: 2px;
            height: 1.125rem;
            width: 1.125rem;
            border-radius: 9999px;
            background: #fff;
            box-shadow: 0 1px 2px rgb(0 0 0 / 0.15);
            transition: transform 0.2s;
        }
        .mm-svc-toggle:has(input:checked) .mm-svc-toggle-knob {
            transform: translateX(1rem);
        }