/*Comentario de prueba*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            min-height: 100vh;
            padding: 30px 20px 120px;
            color: #333;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            color: white;
            margin-top: 15%;
            line-height: 1.2;
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #957afb;
        }

        .header p {
            font-size: 1.8rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        .locals-selector {
            padding: 20px;
            margin-bottom: 30px;
        }

        .locals-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .locals-header .locals-title {
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .locals-header.disabled .locals-title {
            opacity: 0.3;
            transform: scale(0.98);
        }
        
        .locals-header.disabled .section-title-tag-container {
            opacity: 1 !important;
            transform: none !important;
            pointer-events: all !important;
        }

        .locals-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            display: flex;
            align-items: center;
        }
        .locals-description {
            font-size: 1.5rem;
            color: #6b7280;
            margin-bottom: 1%;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .locals-description.disabled {
            opacity: 0.3;
            transform: scale(0.98);
        }

        .slider-container {
            position: relative;
            padding: 20px 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slider-container.disabled {
            opacity: 0.3;
            pointer-events: none;
            transform: scale(0.98);
        }
        
        .slider-value {
            position: absolute;
            top: 50%;
            left: 0;
            width: 40px;
            height: 40px;
            background: white;
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #957afb;
            pointer-events: none;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(149, 122, 251, 0.4);
            transform: translateY(-50%);
        }
        
        .slider-discount {
            position: absolute;
            top: calc(50% + 35px);
            left: 0;
            transform: translateX(-50%);
            font-size: 1.4rem;
            font-weight: 700;
            color: #957afb;
            pointer-events: none;
            z-index: 10;
            white-space: nowrap;
            text-align: center;
            display: none;
        }

        .slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: linear-gradient(to right, #957afb 0%, #957afb var(--value), #e5e7eb var(--value), #e5e7eb 100%);
            outline: none;
            -webkit-appearance: none;
            position: relative;
            z-index: 1;
            margin: 20px 0;
            display: block;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            border: none;
            position: relative;
        }

        .slider::-moz-range-thumb {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            border: none;
            position: relative;
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 1.5rem;
            color: #9ca3af;
        }

        .section-title-checkbox {
            color: white;
            font-size: 1.3rem;
            text-align: right;
            text-decoration: underline;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 15px;
            margin-bottom: 10%;
        }

        .section-title-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .section-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 500;
            margin: 40px 0 20px;
            margin-bottom: 6%;
            margin-top: 2%;
        }

        .section-title span {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #957afb;
        }
        
        .contact-button {
            background: #957afb;
            color: white;
            border: none;
            padding: 15px 32px 14px 32px;
            font-size: 1.6rem;
            font-weight: 700;
            border-radius: 35px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s ease;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            animation: fadeInButton 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
            opacity: 0;
            transform: scale(0.8) translateY(5px);
        }
        
        .contact-button:hover {
            background: #7c3aed;
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 20px rgba(149, 122, 251, 0.4);
        }

        .section-title-tag-container {
            /* El contenedor ya no necesita text-align ya que está en flexbox */
        }

        .section-title-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px 6px 16px;
            background: white;
            color: #957afb;
            border-radius: 25px;
            font-size: 1.3rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0;
            user-select: none;
            line-height: 1.2;
        }

        .section-title-tag span {
            font-weight: 600;
            color: #957afb;
        }


        /* Switch iOS Style */
        .switch-label {
            margin-left: 12px;
            cursor: pointer;
        }

        /* Oculta el checkbox nativo */
        input[type="checkbox"].ios-switch {
            position: absolute;
            opacity: 0;
        }

        /* Base del Track (contenedor) */
        input[type="checkbox"].ios-switch + div {
            vertical-align: middle;
            width: 40px;
            height: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 999px;
            background-color: rgba(0, 0, 0, 0.1);
            transition-duration: .4s;
            transition-property: background-color, box-shadow;
            box-shadow: inset 0 0 0 0px rgba(0,0,0,0.4);
        }

        /* Track Grande */
        input[type="checkbox"].bigswitch.ios-switch + div {
            width: 52px;
            height: 27px;
        }

        /* Track Activo (Color de fondo) */
        input[type="checkbox"].green.ios-switch:checked + div {
            background-color: #957afb;
            border: 1px solid #795def;
            box-shadow: inset 0 0 0 10px #957afb;
        }

        /* Base del Knob (círculo interior) */
        input[type="checkbox"].ios-switch + div > div {
            float: left;
            width: 18px;
            height: 18px;
            border-radius: inherit;
            background: #ffffff;
            transition-timing-function: cubic-bezier(.54,1.85,.5,1);
            transition-duration: 0.4s;
            transition-property: transform, background-color, box-shadow;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(0, 0, 0, 0.4);
            pointer-events: none;
            margin-top: 1px;
            margin-left: 1px;
        }

        /* Knob Grande */
        input[type="checkbox"].bigswitch.ios-switch + div > div {
            width: 23px;
            height: 23px;
            margin-top: 1px;
        }

        /* Knob Grande checked */
        input[type="checkbox"].bigswitch.ios-switch:checked + div > div {
            transform: translate3d(25px, 0, 0);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(8, 80, 172, 1);
        }

        /* Knob Activo (Color de borde) */
        input[type="checkbox"].green.ios-switch:checked + div > div {
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px #fff;
        }

        .pricing-card {
            background: white;
            border-radius: 35px;
            padding: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 5px solid transparent;
            box-sizing: border-box;
            height: 100%;
        }

        /*.pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }*/

        .pricing-card.selected {
            border: 5px solid #957afb;
        }
        
        .pricing-card.locked {
            opacity: 0.4 !important;
            pointer-events: none !important;
            cursor: not-allowed !important;
            filter: grayscale(0.5);
            position: relative;
        }
        
        .pricing-card.locked::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.05);
            z-index: 999;
            pointer-events: none;
        }
        
        .pricing-card.locked * {
            pointer-events: none !important;
            cursor: not-allowed !important;
        }
        
        .pricing-card.card-selecting {
            animation: cardSelect 0.4s ease;
        }
        
        @keyframes cardSelect {
            0% {
                transform: scale(1);
                border-color: transparent;
            }
            50% {
                transform: scale(1.02);
                border-color: #957afb;
            }
            100% {
                transform: scale(1);
                border-color: #957afb;
            }
        }

        .card-header {
            padding: 10px 12px 24px 20px
        }

        .plan-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
        }

        .plan-header h3 {
            margin-top: 15px;
        }

        .plan-name {
            font-size: 2rem;
            font-weight: 700;
            color: #957afb;
            margin-bottom: 0;
            text-transform: uppercase;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .price-container {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }
        
        .contact-sales-button {
            background: #957afb;
            color: white;
            border: none;
            padding: 12px 12px 10px 12px;
            font-size: 1.2rem;
            /* font-weight: 700; */
            border-radius: 25px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s ease;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            animation: fadeInButton 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
            opacity: 0;
            transform: scale(0.8) translateY(5px);
        }
        
        .contact-sales-button:hover {
            background: #7c3aed;
            transform: translateY(-1px) !important;
            box-shadow: 0 2px 10px rgba(149, 122, 251, 0.4);
        }
        
        @keyframes fadeInButton {
            0% {
                opacity: 0;
                transform: scale(0.8) translateY(5px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937;
        }

        .period {
            font-size: 1.2rem;
            font-weight: 500;
            color: #9ca3af;
        }

        .tabs-container {
            display: flex;
            flex-wrap: nowrap;
            gap: 11px;
            padding: 5px;
            background: #e3e4e596;
            border-radius: 50px;
        }

        .tab-button {
            padding: 10px 14px 8px 14px;
            background: transparent;
            border: none;
            border-radius: 25px;
            font-size: 1.2rem;
            font-weight: 500;
            color: #957afb;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            flex: 1;
            text-align: center;
            position: relative;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .tab-button:active {
            transform: scale(0.95);
        }

        .tab-button:hover {
            background: #f3f4f6;
        }

        .tab-button.active {
            background: #957afb;
            color: white;
        }
        
        .tab-button.tab-activating {
            animation: tabActivate 0.3s ease;
        }
        
        @keyframes tabActivate {
            0% {
                transform: scale(0.95);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .slider-tabs-container {
            padding: 8px 24px;
            background: transparent
        }

        .slider-tabs {
            position: relative;
            margin-bottom: 20px;
            padding: 10px 0;
            display: flex;
            align-items: center;
        }
        
        /* Padding dinámico para diferentes sliders */
        .slider-tabs.hoteles-slider {
            padding: 10px 8%;
        }
        
        .slider-tabs.agenda-slider {
            padding: 10px 10%;
        }
        
        .slider-tabs.studio-slider {
            padding: 10px 10%;
        }
        
        .slider-tabs.restaurantes-slider {
            padding: 10px 23%;
        }
        
        .slider-tabs.tiendas-slider {
            padding: 10px 14%;
        }
        
        .slider-tabs.whatsapp-slider {
            padding: 10px 14%;
        }
        
        .slider-tabs.grandes-est-slider {
            padding: 10px 10%;
        }

        .tab-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(to right, #957afb 0%, #957afb var(--tab-value), #e5e7eb var(--tab-value), #e5e7eb 100%);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
            position: relative;
        }

        .tab-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #957afb;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(139, 92, 246, 0.4);
            border: 3px solid white;
            position: relative;
        }

        .tab-slider::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #957afb;
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(139, 92, 246, 0.4);
        }

        .tab-labels {
            display: flex;
            justify-content: space-between;
            font-size: 1rem;
            color: #957afb;
            position: relative;
            margin-top: 8px;
            font-weight: 600;
        }

        .tab-label {
            text-align: center;
            line-height: 1.3;
            white-space: nowrap;
            flex: 1;
        }

        .tab-label:first-child {
            text-align: center;
        }

        .tab-label:last-child {
            text-align: center;
        }

        .tab-labels.four-options .tab-label {
            flex: 1;
        }

        .tab-labels.three-options .tab-label {
            flex: 1;
        }

        .tab-labels.two-options .tab-label {
            flex: 1;
        }

        .features-container {
            padding: 20px;
            flex-grow: 1;
        }

        .features-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            gap: 5px;
        }

        /* Margen superior específico para Eventos (Portal WiFi tab 3) y Catálogo Servicios (Catálogo tab 2) */
        .features-container[data-product="main-0"][data-tab="3"] .features-list,
        .features-container[data-product="main-2"][data-tab="2"] .features-list {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 1rem;
            color: #4b5563;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background: #957afb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 0;
            position: relative;
        }
        
        .check-icon::before {
            content: '';
            width: 6px;
            height: 10px;
            border: 2px solid white;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
            position: absolute;
            margin-top: -2px;
        }

        .cta-button {
            width: 100%;
            margin: 0;
            padding: 16px 24px 8px 24px;
            border: none;
            border-radius: 0 0 16px 16px;
            font-size: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #e3e4e596;
            color: #957afb;
            position: relative;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .cta-button:hover {
            background: #af99ff;
            color: white;
        }

        .cta-button.selected {
            background: #957afb;
            color: white;
        }

        .footer-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #957afb 0%, #7c3aed 100%);
            padding: 20px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), 
                        opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                        box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
        }
        
        .footer-bar.hidden {
            transform: translateY(calc(100% + 20px)) !important;
            opacity: 0 !important;
            box-shadow: 0 0 0 rgba(0,0,0,0) !important;
            pointer-events: none !important;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            gap: 20px;
        }

        .footer-pricing {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-price-item {
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .footer-price-item strong {
            font-size: 2rem;
            margin-left: 8px;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 500;
        }

        .footer-cta {
            background: white;
            color: #957afb;
            padding: 10px 20px 8px 20px;
            border: none;
            border-radius: 35px;
            font-size: 2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease, opacity 0.4s 
            cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
        }

        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255,255,255,0.3);
        }

        .footer-cta:disabled,
        .footer-cta.disabled {
            background: #d1d5db;
            color: #9ca3af;
            cursor: not-allowed;
            opacity: 0.6;
            pointer-events: none;
        }

        .footer-cta:disabled:hover,
        .footer-cta.disabled:hover {
            transform: none;
            box-shadow: none;
        }

        .footer-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }

        .footer-note {
            font-size: 1.2rem;
            opacity: 0;
            font-style: italic;
            font-weight: 700;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
            margin-top: 0;
        }
        
        .footer-note.visible {
            opacity: 0.9;
            max-height: 50px;
            margin-top: 8px;
        }

        .card-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 100%;
        }

        .card-slider-container {
            position: relative;
            padding: 20px 0;
            opacity: 1;
            transform: translateY(0);
        }
        
        .card-slider-container.locked {
            opacity: 0.4 !important;
            pointer-events: none !important;
            cursor: not-allowed !important;
            filter: grayscale(0.5);
        }
        
        .card-slider-container.locked * {
            pointer-events: none !important;
            cursor: not-allowed !important;
        }
        
        /* Animación solo cuando se activa el switch */
        .card-slider-container.animating {
            opacity: 0;
            transform: translateY(-10px);
            animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        
        /* Efecto escalonado para cada barra cuando se animan */
        .card-wrapper:nth-child(1) .card-slider-container.animating {
            animation-delay: 0s;
        }
        .card-wrapper:nth-child(2) .card-slider-container.animating {
            animation-delay: 0.08s;
        }
        .card-wrapper:nth-child(3) .card-slider-container.animating {
            animation-delay: 0.16s;
        }
        .card-wrapper:nth-child(4) .card-slider-container.animating {
            animation-delay: 0.24s;
        }
        .card-wrapper:nth-child(5) .card-slider-container.animating {
            animation-delay: 0.32s;
        }
        .card-wrapper:nth-child(6) .card-slider-container.animating {
            animation-delay: 0.4s;
        }
        
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-slider-label {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 12px;
            color: #6b7280;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .card-slider-container .slider-value {
            position: absolute;
            top: 60%;
            left: 0;
            width: 25px;
            height: 25px;
            background: white;
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            color: #957afb;
            pointer-events: none;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(149, 122, 251, 0.4);
            transform: translateY(-50%);
        }
        
        .card-slider-discount {
            position: absolute;
            top: calc(60% + 25px);
            left: 0;
            transform: translateX(-50%);
            font-size: 1.1rem;
            font-weight: 700;
            color: #957afb;
            pointer-events: none;
            z-index: 10;
            white-space: nowrap;
            text-align: center;
            display: none;
        }



















        /*Estilos modal Resumen*/
/* --- Contenedor del Modal --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 26, 26, 0.7); 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            z-index: 1000;
        }

        .modal-overlay .modal-container {
            background-color: #ffffff;
            border-radius: 24px; /* Un poco más redondo como en la imagen */
            padding: 24px; /* Reducido */
            max-width: 900px; /* Aumentado para dar más espacio */
            width: 100%;
            max-height: 90vh; /* Limitar altura máxima */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            box-sizing: border-box;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden; /* Importante para el scroll interno */
        }

        .modal-overlay .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s;
            z-index: 10;
        }

        .modal-overlay .modal-close-btn:hover {
            background-color: #F2F4F7;
        }

        .modal-overlay .modal-close-btn svg {
            width: 24px;
            height: 24px;
            stroke: #667085;
        }

        /* --- Secciones del Modal --- */
        .modal-overlay .modal-header-section {
            flex-shrink: 0; /* No reducir el header */
            padding-bottom: 12px; /* Reducido */
        }

        .modal-overlay .modal-content-section {
            flex: 1; /* Ocupa el espacio disponible */
            overflow-y: auto; /* Scroll vertical */
            overflow-x: hidden;
            padding: 0 4px; /* Pequeño padding para el scrollbar */
            margin: 0 -4px; /* Compensar el padding */
            min-height: 0; /* Importante para flex scroll */
        }

        .modal-overlay .modal-content-section::-webkit-scrollbar {
            width: 8px;
        }

        .modal-overlay .modal-content-section::-webkit-scrollbar-track {
            background: #f3f4f6;
            border-radius: 4px;
        }

        .modal-overlay .modal-content-section::-webkit-scrollbar-thumb {
            background: #c4b5fd;
            border-radius: 4px;
        }

        .modal-overlay .modal-content-section::-webkit-scrollbar-thumb:hover {
            background: #a78bfa;
        }

        .modal-overlay .modal-footer-section {
            flex-shrink: 0; /* No reducir el footer */
            padding-top: 16px; /* Reducido */
            border-top: 1px solid #f3f4f6;
            margin-top: 0; /* Eliminado para aprovechar espacio */
        }

        /* --- Contenido del Modal --- */
        .modal-overlay .modal-container h1 {
            color: #957afb; 
            font-size: 2.5rem; /* Reducido ligeramente para mejor ajuste */
            font-weight: 700;
            margin: 0 0 8px 0;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .modal-container .subheading {
            color: #667085; 
            font-size: 1.4rem; /* Reducido ligeramente */
            margin: 0 0 20px 0;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .timer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #F2F4F7; 
            border-radius: 25px; /* Redondeado como en la imagen */
            padding: 8px 16px;
            font-size: 1.2rem; /* Reducido para mejor ajuste */
            font-weight: 600;
            color: #475467;
            margin: 0 auto 16px auto; /* Centrado horizontalmente */
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .timer-badge.hidden {
            display: none !important;
        }

        .modal-overlay .timer-badge svg {
            width: 16px;
            height: 16px;
            stroke: #475467;
        }

        .modal-overlay .timer-badge #countdownTimer {
            font-weight: 700;
            color: #475467;
        }

        .modal-overlay .timer-badge.urgent {
            background-color: #fee2e2a6;
            border: 2px solid #f75d5d;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .modal-overlay .timer-badge.urgent svg {
            stroke: #f75d5d;
        }

        .modal-overlay .timer-badge.urgent #timerMessage,
        .modal-overlay .timer-badge.urgent #countdownTimer {
            color: #DC2626;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }

        .modal-overlay .extended-message {
            background: #fee2e2a6;
            border: 2px solid #EF4444;
            border-radius: 12px;
            padding: 10px 16px; /* Reducido */
            margin: 0 auto 12px auto; /* Centrado horizontalmente */
            text-align: center;
            animation: slideDown 0.5s ease-out;
            width: 80%; /* Ancho del 80% */
        }

        .modal-overlay .extended-message.hidden {
            display: none !important;
        }

        .modal-overlay .extended-message strong {
            color: #DC2626;
            font-size: 1.2rem; /* Reducido */
            line-height: 1.4;
            display: block;
        }

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

        /* --- Caja de Precios --- */
        .modal-overlay .pricing-box {
            background-color: #957afb; 
            border-radius: 20px; /* Reducido para mejor ajuste */
            padding: 20px; /* Reducido */
            margin-bottom: 12px;
        }

        .modal-overlay .pricing-grid {
            display: grid;
            /* Nuevas proporciones de columna para más espacio en productos */
            grid-template-columns: 2.5fr 1fr 1fr 0.7fr 1.2fr; 
            gap: 10px; /* Reducido */
            align-items: start; /* Cambiar a start para mejor control */
            margin-bottom: 10px; /* Reducido */
        }

        .modal-overlay .pricing-grid.header-row {
            margin-bottom: 6px;
            padding: 0 8px; /* Pequeño padding para los headers */
        }

        /* Grid sin columna de descuento (cuando hay solo 1 producto) */
        .modal-overlay .pricing-grid.no-discount {
            grid-template-columns: 2.5fr 1fr 0.7fr 1.2fr !important; /* Sin la columna de 20% OFF */
        }

        /* Todas las filas de productos sin columna de descuento */
        .pricing-box.no-discount-total #modalProductsContainer .pricing-grid {
            grid-template-columns: 2.5fr 1fr 0.7fr 1.2fr !important;
        }

        .modal-overlay .grid-header {
            font-size: 1.3rem; /* Reducido */
            color: #fff; 
            font-weight: 600;
            text-align: center !important; /* Centrar todos los headers */
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .grid-header.product {
            text-align: left !important; /* Solo el header de producto a la izquierda */
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .cell-box {
            background-color: #ffffff;
            border-radius: 20px; /* Reducido */
            padding: 10px 8px; /* Reducido para más compacidad */
            font-size: 1.4rem; /* Reducido */
            font-weight: 600;
            color: #957afb;
            text-align: center;
            white-space: nowrap; /* Evita que los números se rompan en varias líneas */
            min-height: 42px; /* Reducido */
            display: flex;
            align-items: center; /* Centrar verticalmente el contenido */
            justify-content: center; /* Centrar horizontalmente el contenido */
        }

        .modal-overlay .cell-box-strikethrough {
            color: #d3d3d3 !important; /* Color gris claro */
            text-decoration: line-through; /* Tachado */
        }

        .modal-overlay .product-column {
            display: flex;
            flex-direction: column;
            gap: 4px; /* Reducido */
            align-self: stretch; /* Estirar para ocupar toda la celda */
        }

        .modal-overlay .cell-box-product {
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #ffffff;
            border-radius: 20px; /* Reducido */
            padding: 8px 14px; /* Reducido */
            font-size: 1.2rem; /* Reducido */
            font-weight: 600;
            color: #101828;
            text-align: left; /* Alineación a la izquierda para los títulos */
            white-space: normal; /* Permitir que el texto se ajuste */
            min-height: 42px; /* Reducido para coincidir con cell-box */
            display: flex;
            align-items: center; /* Centrar verticalmente el contenido */
        }

        .modal-overlay .cell-box-product strong {
            display: block;
            color: #957afb;
            font-weight: 600;
            line-height: 1.2; /* Reducido */
            width: 100%;
        }

        .modal-overlay .product-detail {
            display: block;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1rem; /* Reducido */
            color: #fff !important;
            font-weight: 400;
            padding-left: 14px; /* Ajustado */
            line-height: 1.2;
            min-height: 0; /* Permitir que desaparezca si está vacío */
            text-align: left !important;
        }

        .modal-overlay .product-detail:empty {
            display: none; /* Ocultar si está vacío */
        }

        .modal-overlay .modal-separator {
            border: none;
            border-top: 1px solid #d3d3d3;
            margin: 12px 0 10px auto !important; /* Reducido */
            width: 62%;
            margin-top: 0 !important;
        }

        /* Separador sin columna de descuento (solo 1 producto) */
        .pricing-box.no-discount-total .modal-separator {
            width: 54% !important;
        }

        .modal-overlay .total-row {
            margin-top: 0;
            margin-bottom: 0; 
            /* Para la fila del total, solo la última columna tiene un elemento */
            display: grid; 
            grid-template-columns: 2.5fr 1fr 1fr 0.7fr 1.2fr; /* Las mismas columnas */
            gap: 10px; /* Reducido */
            align-items: center;
        }

        /* Fila total sin columna de descuento */
        .pricing-box.no-discount-total .total-row {
            grid-template-columns: 2.5fr 1fr 0.7fr 1.2fr !important; /* Sin la columna de 20% OFF */
        }
        
        .modal-overlay .total-row .cell-box {
            grid-column: 5 / 6; /* Asegura que la caja de total esté en la última columna */
            justify-self: stretch; /* Estirar la caja para que ocupe todo el ancho de la columna */
        }

        /* Posición del total cuando no hay columna de descuento */
        .pricing-box.no-discount-total .total-row .cell-box {
            grid-column: 4 / 5 !important; /* Sin descuento, el total está en la columna 4 */
        }

        /* --- Disclaimer y Botones --- */
        .modal-overlay .disclaimer {
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1rem; /* Reducido */
            color: #888;
            margin: 16px auto; /* Reducido */
            max-width: 550px;
            line-height: 1.3;
        }

        .modal-overlay .button-group {
            display: flex;
            justify-content: center;
            gap: 12px; /* Reducido */
            flex-wrap: wrap; 
        }

        .modal-overlay .btn {
            padding: 12px 20px 10px 20px; /* Reducido */
            border: none;
            border-radius: 20px; /* Reducido */
            font-size: 1.2rem; /* Reducido */
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .btn:hover {
            opacity: 0.9;
        }

        .modal-overlay .btn-cancel {
            background-color: #F2F4F7; 
            color: #475467;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .modal-overlay .btn-primary {
            background-color: #957afb; 
            color: #ffffff;
            font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }



























        

        @media (max-width: 768px) {

            .LandbotLivechat{
                display: none !important;
            }

            * {
                max-width: 100vw;
                box-sizing: border-box;
            }

            html, body {
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
            }

            body {
                font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                background: #000;
                min-height: 100dvh;
                padding: 30px 0 120px; /* Sin padding lateral en body */
                color: #333;
            }
            
            .container {
                max-width: 100%;
                width: 100%;
                padding: 0 15px; /* Padding del contenedor */
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1.4rem;
                opacity: 0.95;
                max-width: 600px;
                margin: 0 auto;
            }

            .locals-selector {
                margin-bottom: 30px;
                padding: 15px;
                display: flex;
                flex-direction: column;
                gap: 15px;
                align-items: center; /* Centrar todos los elementos */
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .locals-header {
                /* Hacer que el contenedor "desaparezca" y sus hijos se comporten como hijos de .locals-selector */
                display: contents;
            }

            .locals-title {
                font-size: 1.4rem;
                line-height: 1.3;
                order: 1;
                text-align: center;
            }

            .section-title-tag-container {
                width: 100%;
                order: 3; /* Mover después de .locals-description */
            }

            .section-title-tag {
                width: 100%;
                justify-content: space-between;
            }

            .locals-description {
                font-size: 1.2rem;
                margin-top: 0;
                order: 2;
                text-align: center;
            }

            .slider-value {
                position: absolute;
                top: 50%;
                left: 0;
                width: 30px;
                height: 30px;
                background: white;
                border: 3px solid white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.4rem;
                font-weight: 700;
                color: #957afb;
                pointer-events: none;
                z-index: 10;
                box-shadow: 0 2px 8px rgba(149, 122, 251, 0.4);
                transform: translateY(-50%);
            }
            
            .slider-container {
                order: 4;
                width: 100%; /* Mantener ancho completo */
                align-self: stretch; /* Forzar a mantener el ancho completo */
            }

            .section-title {
                font-size: 0.9rem;
                text-align: left;
                line-height: 2;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                word-wrap: break-word;
            }

            .section-title span {
                font-size: 1.4rem;
                font-weight: 700;
                font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                color: #957afb;
            }

            .pricing-grid,
            #pricingGrid,
            #otherProductsGrid {
                grid-template-columns: 1fr;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
                padding: 0;
                margin: 0;
                min-width: 0;
                overflow: hidden;
                gap: 30px;
            }

            .footer-content {
                gap: 10px;
            }

            .footer-pricing {
                width: 100%;
                text-align: left;
            }

            .footer-price-item {
                justify-content: center;
            }

            .footer-actions {
                width: 40%;
                align-items: flex-end;
            }


            .footer-note {
                width: 100%;
                text-align: center;
            }

            .section-title-wrapper {
                gap: 15px;
                align-items: center;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .contact-button {
                width: 50%;
            }

            .card-wrapper {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
                min-width: 0;
                overflow: hidden;
            }

            .pricing-card {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
                overflow: hidden; /* Evitar que el contenido se desborde */
                min-width: 0; /* Permitir que se encoja si es necesario */
            }
            
            .pricing-card * {
                max-width: 100% !important;
                box-sizing: border-box !important;
                min-width: 0 !important;
            }

            .card-header {
                width: 100% !important;
                max-width: 100% !important;
                padding: 0px 15px 0;
                box-sizing: border-box;
                min-width: 0;
                overflow: hidden;
                margin-bottom: 20px;
            }

            .plan-header {
                width: 100%;
                max-width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: baseline; /* Alinear por línea base */
                gap: 10px;
                margin-top: 10px;
            }

            .plan-name {
                font-size: 1.2rem;
                text-align: left;
                flex: 0 1 auto;
                word-wrap: break-word;
                overflow-wrap: break-word;
                font-weight: 700;
                line-height: 1;
                min-width: 0;
                margin: 0;
                padding: 0;
                display: inline-block;
                vertical-align: baseline;
            }
            
            .price-container {
                justify-content: flex-end;
                flex: 0 0 auto;
                flex-wrap: nowrap;
                display: flex;
                align-items: baseline;
                gap: 4px;
                white-space: nowrap;
                line-height: 1;
            }
            
            .card-slider-label {
                text-align: center;
            }

            .price {
                font-size: 1.4rem;
                font-weight: 700;
                white-space: nowrap;
                color: #1f2937;
                line-height: 1;
                margin: 0;
                padding: 0;
            }
            
            .period {
                font-size: 0.95rem;
                font-weight: 400;
                white-space: nowrap;
                color: #6b7280;
                line-height: 1;
                margin: 0;
                padding: 0;
            }

            .tabs-container {
                display: flex;
                flex-wrap: nowrap; /* No permitir wrap - todos en una línea */
                gap: 10px;
                justify-content: flex-start;
                overflow-x: auto; /* Scroll horizontal activo */
                overflow-y: hidden;
                width: 100%; /* Ancho completo */
                margin: 15px 0;
                padding: 12px;
                border-radius: 8px; /* Bordes suaves */
                /* Scroll suave en móviles */
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
                scrollbar-color: rgba(149, 122, 251, 0.3) transparent;
                background: #e3e4e596;
                box-sizing: border-box;
                border-radius: 0;
            }
            
            .tabs-container::-webkit-scrollbar {
                height: 6px;
            }
            
            .tabs-container::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.05);
                border-radius: 3px;
            }
            
            .tabs-container::-webkit-scrollbar-thumb {
                background: rgba(149, 122, 251, 0.5);
                border-radius: 3px;
            }

            .tab-button {
                font-size: 1rem;
                padding: 12px 16px 10px 16px;
                flex-shrink: 0; /* NO comprimir - mantener ancho natural */
                white-space: nowrap; /* Texto en una sola línea */
                min-width: auto;
                border-radius: 18px;
                line-height: 1.2;
                text-align: center;
                display: inline-block;
                min-width: 36% !important;
                border: 1px solid #957afb;
            }

            .tab-button.active {
                background: #957afb;
                color: white;
                min-width: 36% !important;
            }
            
            .tab-labels {
                text-align: center;
                font-size: 0.65rem;
            }

            .features-list {
                font-size: 0.75rem;
                width: 100%;
                padding: 0;
                grid-template-columns: 1fr 1fr; /* DOS columnas en mobile */
                gap: 0px 10px; /* gap vertical y horizontal */
                margin-bottom: 0px !important;
            }
            
            .feature-item {
                width: 100%;
                word-wrap: break-word;
                overflow-wrap: break-word;
                display: flex;
                gap: 6px;
                align-items: flex-start;
            }
            
            .feature-item span:not(.check-icon) {
                flex: 1;
                min-width: 0;
                overflow-wrap: break-word;
                font-size: 0.75rem;
                line-height: 1.3;
            }
            
            .check-icon {
                flex-shrink: 0;
                width: 14px;
                height: 14px;
                font-size: 0.75rem;
            }

            .cta-button {
                font-size: 1.1rem;
                padding: 14px 32px;
                max-width: 100%;
                box-sizing: border-box;
            }

            .footer-price-item {
                font-size: 1rem;
                font-weight: 700;
                font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            }

            .footer-price-item strong {
                font-size: 1.4rem;
                margin-left: 8px;
                font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                font-weight: 500;
            }

            .footer-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #957afb 0%, #7c3aed 100%);
                padding: 20px 0px;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
                z-index: 1000;
                transition: transform 0.8s 
                cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s 
                cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s 
                cubic-bezier(0.25, 0.1, 0.25, 1) !important;
            }

            .features-container {
                padding: 20px 15px;
                flex-grow: 1;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
                min-width: 0;
                overflow: hidden;
            }

            .footer-cta {
                background: white;
                color: #957afb;
                padding: 10px 20px 8px 20px;
                border: none;
                border-radius: 35px;
                font-size: 1.2rem;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s ease, opacity 0.4s 
                cubic-bezier(0.4, 0, 0.2, 1);
                white-space: nowrap;
                position: relative;
            }
    
            .footer-cta:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 20px rgba(255,255,255,0.3);
            }

            .footer-cta:disabled,
            .footer-cta.disabled {
                background: #d1d5db;
                color: #9ca3af;
                cursor: not-allowed;
                opacity: 0.6;
                pointer-events: none;
            }

            .footer-cta:disabled:hover,
            .footer-cta.disabled:hover {
                transform: none;
                box-shadow: none;
            }

            .footer-note {
                font-size: 0.7rem;
                opacity: 0;
                font-style: italic;
                font-weight: 700;
                max-height: 0;
                overflow: hidden;
                transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
                margin-top: 0;
            }

            .contact-button {
                background: #957afb;
                color: white;
                border: none;
                padding: 14px 10px 12px 10px;
                font-size: 1.2rem;
                font-weight: 700;
                border-radius: 35px;
                cursor: pointer;
                white-space: nowrap;
                transition: all 0.3s ease;
                font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                animation: fadeInButton 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
                opacity: 0;
                transform: scale(0.8) translateY(5px);
                margin-bottom: 30px;
            }

            .contact-sales-button {
                background: #957afb;
                color: white;
                border: none;
                padding: 12px 12px 10px 12px;
                font-size: 1rem;
                border-radius: 25px;
                cursor: pointer;
                white-space: nowrap;
                transition: all 0.3s ease;
                font-family: 'Touche', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                line-height: 1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                animation: fadeInButton 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
                opacity: 0;
                transform: scale(0.8) translateY(5px);
            }

            .section-title-tag {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 10px 16px 5px 16px;
                background: white;
                color: #957afb;
                border-radius: 25px;
                font-size: 1.3rem;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s ease;
                margin: 0;
                user-select: none;
                line-height: 1.2;
            }

            /* --- Estilos Responsive del Modal --- */
            .modal-overlay {
                padding: 10px;
            }

            .modal-overlay .modal-container {
                padding: 16px;
                max-height: 95vh;
                border-radius: 16px;
            }

            .modal-overlay .modal-container h1 {
                font-size: 1.4rem;
                margin: 0 0 6px 0;
            }

            .modal-overlay .modal-container .subheading {
                font-size: 1rem;
                margin: 0 0 12px 0;
            }

            .modal-overlay .modal-close-btn {
                top: 12px;
                right: 12px;
                padding: 6px;
            }

            .modal-overlay .modal-close-btn svg {
                width: 20px;
                height: 20px;
            }

            .modal-overlay .timer-badge {
                font-size: 0.9rem;
                padding: 6px 12px;
                margin-bottom: 12px;
                gap: 6px;
            }

            .modal-overlay .timer-badge svg {
                width: 14px;
                height: 14px;
            }

            .modal-overlay .extended-message {
                padding: 8px 12px;
                margin: 0 auto 10px auto; /* Centrado en responsive */
                border-radius: 8px;
                width: 90%; /* Un poco más ancho en móvil */
            }

            .modal-overlay .extended-message strong {
                font-size: 0.9rem;
            }

            .modal-overlay .pricing-box {
                padding: 12px;
                border-radius: 12px;
            }

            .modal-overlay .pricing-grid {
                grid-template-columns: 2fr 0.9fr 0.9fr 0.6fr 1fr;
                gap: 6px;
                margin-bottom: 8px;
            }

            .modal-overlay .pricing-grid.header-row {
                margin-bottom: 4px;
                padding: 0 4px;
            }

            .modal-overlay .pricing-grid.no-discount {
                grid-template-columns: 2fr 0.9fr 0.6fr 1fr !important;
            }

            .pricing-box.no-discount-total #modalProductsContainer .pricing-grid {
                grid-template-columns: 2fr 0.9fr 0.6fr 1fr !important;
            }

            .modal-overlay .grid-header {
                font-size: 0.85rem;
                font-weight: 600;
            }

            .modal-overlay .cell-box {
                padding: 6px 4px;
                font-size: 0.85rem;
                min-height: 32px;
                border-radius: 12px;
            }

            .modal-overlay .cell-box-product {
                padding: 8px 6px;
                font-size: 0.9rem;
                min-height: 36px;
                border-radius: 12px;
            }

            .modal-overlay .cell-box-product strong {
                font-size: 0.6rem;
            }

            .modal-overlay .cell-box-product .product-detail {
                font-size: 0.75rem;
            }

            .modal-overlay .product-column .cell-box-product {
                text-align: left;
            }

            .modal-overlay .modal-separator {
                margin: 8px 0;
            }

            .modal-overlay .pricing-grid.total-row {
                margin-top: 8px;
                gap: 6px;
            }

            .modal-overlay .pricing-grid.total-row .cell-box {
                font-size: 1rem;
                font-weight: 700;
                padding: 8px 4px;
                min-height: 36px;
            }

            .modal-overlay .modal-footer-section {
                padding-top: 12px;
            }

            .modal-overlay .modal-footer-note {
                font-size: 0.75rem;
                margin-bottom: 12px;
            }

            .modal-overlay .modal-buttons {
                gap: 8px;
            }

            .modal-overlay .modal-btn {
                padding: 10px 16px;
                font-size: 0.95rem;
            }
    
        }
