    /* Formulario */
    :root {
        --me-primary: #2c3e50;
        --me-secondary: #3498db;
        --me-success: #27ae60;
        --me-warning: #f39c12;
        --me-danger: #e74c3c;
        --me-light: #ecf0f1;
        --me-dark: #34495e;
        --me-border: #dfe6e9;
        --me-radius: 12px;
        --me-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .museo-entradas-container {
        max-width: 600px;
        margin: 2rem auto;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }

    .me-header {
        background: white;
        padding: 1.5rem;
        border-radius: var(--me-radius);
        box-shadow: var(--me-shadow);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .me-header h1 {
        color: var(--me-primary);
        margin: 0 0 1rem;
        font-size: 1.8rem;
    }

    .me-fecha-selector {
        margin-top: 1.5rem;
    }

    .me-fecha-selector label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--me-dark);
    }

    .me-flatpickr {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--me-border);
        border-radius: var(--me-radius);
        font-size: 1rem;
        transition: all 0.3s;
    }

    .me-flatpickr:focus {
        border-color: var(--me-secondary);
        outline: none;
    }

    .me-hint {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: #7f8c8d;
    }

    /* Sección de entradas */
    .me-entradas-section {
        background: white;
        padding: 1.5rem;
        border-radius: var(--me-radius);
        box-shadow: var(--me-shadow);
    }

    .me-entradas-section h2 {
        color: var(--me-primary);
        margin: 0 0 0.5rem;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .me-maximo {
        color: #7f8c8d;
        margin: 0 0 1.5rem;
        font-size: 0.95rem;
    }

    /* Resumen */
    .me-resumen {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--me-light);
        padding: 1rem;
        border-radius: var(--me-radius);
        margin-bottom: 1.5rem;
    }

    .me-contador {
        font-weight: 600;
    }

    .me-progress {
        height: 6px;
        background: #e0e0e0;
        border-radius: 3px;
        margin-top: 8px;
        overflow: hidden;
    }

    .me-progress-bar {
        height: 100%;
        background: var(--me-success);
        transition: width 0.3s, background 0.3s;
    }

    .me-total {
        font-weight: 700;
        font-size: 1.1rem;
    }

    /* Lista de entradas */
    .me-entradas-list {
        display: grid;
        gap: 1rem;
    }

    .me-entrada {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border: 1px solid var(--me-border);
        border-radius: var(--me-radius);
        transition: all 0.3s;
    }

    .me-entrada:hover {
        transform: translateY(-3px);
        box-shadow: var(--me-shadow);
    }

    .me-entrada-gratis {
        background-color: #f8f9fa;
        border-left: 4px solid var(--me-success);
    }

    .me-entrada-info h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--me-dark);
    }

    .me-precio {
        font-weight: 600;
        color: var(--me-success);
    }

    .me-entrada-control {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .me-qty-btn {
        width: 32px;
        height: 32px;
        border: none;
        background: var(--me-secondary);
        color: white;
        border-radius: 50%;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

    .me-qty-btn:hover {
        background: var(--me-primary);
    }

    .me-qty-btn i {
        font-size: 12px;
    }

    .me-entrada-control input {
        width: 50px;
        text-align: center;
        padding: 8px;
        border: 1px solid var(--me-border);
        border-radius: var(--me-radius);
        -moz-appearance: textfield;
    }

    .me-entrada-control input::-webkit-outer-spin-button,
    .me-entrada-control input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Botón de acción */
    .me-actions {
        margin-top: 2rem;
        text-align: center;
    }

    .me-submit-btn {
        width: 100%;
        padding: 14px;
        background: var(--me-success);
        color: white;
        border: none;
        border-radius: var(--me-radius);
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .me-submit-btn:hover {
        background: #219653;
    }

    .me-submit-btn:disabled {
        background: #bdc3c7;
        cursor: not-allowed;
    }

    /* Animaciones y responsive… (igual al anterior) */
    </style>